Home
last modified time | relevance | path

Searched refs:array (Results 1 – 25 of 91) sorted by relevance

1234

/linux-2.4.37.9/net/ipv4/netfilter/
Dip_conntrack_ftp.c72 static int try_number(const char *data, size_t dlen, u_int32_t array[], in try_number() argument
77 memset(array, 0, sizeof(array[0])*array_size); in try_number()
82 array[i] = array[i]*10 + *data - '0'; in try_number()
103 static int try_rfc959(const char *data, size_t dlen, u_int32_t array[6], in try_rfc959()
106 return try_number(data, dlen, array, 6, ',', term); in try_rfc959()
111 u_int32_t array[2]) in get_port()
121 array[0] = port >> 8; in get_port()
122 array[1] = port; in get_port()
134 static int try_eprt(const char *data, size_t dlen, u_int32_t array[6], in try_eprt()
150 length = try_number(data + 3, dlen - 3, array, 4, '.', delim); in try_eprt()
[all …]
/linux-2.4.37.9/fs/
Dfile.c34 void free_fd_array(struct file **array, int num) in free_fd_array() argument
38 if (!array) { in free_fd_array()
47 kfree(array); in free_fd_array()
49 vfree(array); in free_fd_array()
144 void free_fdset(fd_set *array, int num) in free_fdset() argument
148 if (!array) { in free_fdset()
157 kfree(array); in free_fdset()
159 vfree(array); in free_fdset()
/linux-2.4.37.9/arch/sparc/boot/
Dbtfixupprep.c57 btfixup array[MAXSYMS]; variable
75 if (array[i].type == type && !strcmp(array[i].name, name)) in find()
76 return array + i; in find()
78 array[last].type = type; in find()
79 array[last].name = strdup(name); in find()
80 array[last].setinitval = 0; in find()
81 if (!array[last].name) fatal(); in find()
82 array[last].rel = NULL; in find()
88 return array + last - 1; in find()
317 f = array + i; in main()
[all …]
/linux-2.4.37.9/fs/befs/
Ddatastream.c251 befs_block_run *array = data->direct; in befs_find_brun_direct() local
265 sum += array[i].len, i++) { in befs_find_brun_direct()
266 if (blockno >= sum && blockno < sum + (array[i].len)) { in befs_find_brun_direct()
268 run->allocation_group = array[i].allocation_group; in befs_find_brun_direct()
269 run->start = array[i].start + offset; in befs_find_brun_direct()
270 run->len = array[i].len - offset; in befs_find_brun_direct()
315 befs_block_run *array; in befs_find_brun_indirect() local
337 array = (befs_block_run *) indirblock->b_data; in befs_find_brun_indirect()
340 int len = fs16_to_cpu(sb, array[j].len); in befs_find_brun_indirect()
345 fs32_to_cpu(sb, array[j].allocation_group); in befs_find_brun_indirect()
[all …]
/linux-2.4.37.9/Documentation/usb/
Dw9968cf.txt228 Type: int array (min = 0, max = 32)
241 Type: int array (min = 0, max = 32)
248 Type: int array (min = 0, max = 32)
256 Type: bool array (min = 0, max = 32)
265 Type: bool array (min = 0, max = 32)
271 Type: int array (min = 0, max = 32)
280 Type: bool array (min = 0, max = 32)
286 Type: bool array (min = 0, max = 32)
296 Type: int array (min = 0, max = 32)
312 Type: int array (min = 0, max = 32)
[all …]
/linux-2.4.37.9/drivers/isdn/eicon/
Dsys.h46 #define DIM(array) (sizeof (array)/sizeof ((array)[0])) argument
/linux-2.4.37.9/net/irda/
Dqos.c161 static inline int value_index(__u32 value, __u32 *array, int size) in value_index() argument
166 if (array[i] == value) in value_index()
177 static inline __u32 index_value(int index, __u32 *array) in index_value() argument
179 return array[index]; in index_value()
214 static inline __u32 byte_value(__u8 byte, __u32 *array) in byte_value() argument
218 ASSERT(array != NULL, return -1;); in byte_value()
222 return index_value(index, array); in byte_value()
230 static inline int value_lower_bits(__u32 value, __u32 *array, int size, __u16 *field) in value_lower_bits() argument
241 if (array[i] >= value) in value_lower_bits()
256 static inline int value_highest_bit(__u32 value, __u32 *array, int size, __u16 *field) in value_highest_bit() argument
[all …]
/linux-2.4.37.9/Documentation/video4linux/bttv/
DSound-FAQ10 To handle the grabber boards correctly, there is a array tvcards[] in
57 As mentioned above, there is a array which holds the required
73 The audiomux[] array holds the data values for the different inputs
80 the audiomux array. If you have Windows and the drivers four your
98 audiomux=i,j,... set the values of the audiomux array
99 audioall=a set the values of the audiomux array (one
100 value for all array elements, useful to check
115 Other elements of the tvcards array
119 know what the other elements in the tvcards array are good for:
135 If some config item is specified both from the tvcards array and as
/linux-2.4.37.9/include/asm-s390/
Dsystem.h153 #define __ctl_load(array, low, high) ({ \ argument
159 : : "m" (array), "a" (((low)<<4)+(high)) : "1", "2" ); \
162 #define __ctl_store(array, low, high) ({ \ argument
168 : "=m" (array) : "a" (((low)<<4)+(high)): "1", "2" ); \
/linux-2.4.37.9/include/asm-s390x/
Dsystem.h165 #define __ctl_load(array, low, high) ({ \ argument
171 : : "m" (array), "a" (((low)<<4)+(high)) : "1", "2" ); \
174 #define __ctl_store(array, low, high) ({ \ argument
180 : "=m" (array) : "a" (((low)<<4)+(high)): "1", "2" ); \
/linux-2.4.37.9/net/ipv6/
Daddrconf.c1985 __s32 *array, int bytes) in ipv6_store_devconf() argument
1987 memset(array, 0, bytes); in ipv6_store_devconf()
1988 array[DEVCONF_FORWARDING] = cnf->forwarding; in ipv6_store_devconf()
1989 array[DEVCONF_HOPLIMIT] = cnf->hop_limit; in ipv6_store_devconf()
1990 array[DEVCONF_MTU6] = cnf->mtu6; in ipv6_store_devconf()
1991 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra; in ipv6_store_devconf()
1992 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects; in ipv6_store_devconf()
1993 array[DEVCONF_AUTOCONF] = cnf->autoconf; in ipv6_store_devconf()
1994 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits; in ipv6_store_devconf()
1995 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits; in ipv6_store_devconf()
[all …]
/linux-2.4.37.9/drivers/net/e1000/
Dkcompat.h323 #define module_param_array_named(name, array, type, nump, perm) \ argument
325 = { ARRAY_SIZE(array), nump, param_set_##type, param_get_##type, \
326 sizeof(array[0]), array }; \
/linux-2.4.37.9/drivers/usb/storage/
Dscsiglue.c460 __u8* array[USB_STOR_SCSI_SENSE_HDRSZ]; member
482 __u8* array[USB_STOR_SCSI_SENSE_10_HDRSZ]; member
884 the6->array[element] = &(sg[i].address[j]); in usb_stor_scsiSenseParseBuffer()
885 the10->array[element] = &(sg[i].address[j]); in usb_stor_scsiSenseParseBuffer()
890 the10->array[element] = &(sg[i].address[j]); in usb_stor_scsiSenseParseBuffer()
909 the6->array[i] = &(buffer[i]); in usb_stor_scsiSenseParseBuffer()
910 the10->array[i] = &(buffer[i]); in usb_stor_scsiSenseParseBuffer()
914 the10->array[i] = &(buffer[i]); in usb_stor_scsiSenseParseBuffer()
/linux-2.4.37.9/drivers/media/radio/
Dmiropcm20-rds-core.c40 static void print_matrix(char array[], unsigned int length) in print_matrix() argument
47 printk("%d", (array[i] >> j) & 0x1); in print_matrix()
/linux-2.4.37.9/fs/proc/
DMakefile14 obj-y := inode.o root.o base.o generic.o array.o \
/linux-2.4.37.9/Documentation/
Dcpqarray.txt22 It should also work with some really old Disk array adapters, but I am
69 You'll need to use a modified lilo if you want to boot from a disk array.
Dwolfson-touchscreen.txt143 This delay can be set by setting delay = n, where n is the array
144 position of the delay in the array delay_table below.
/linux-2.4.37.9/Documentation/input/
Dinput-programming.txt202 NBITS(x) - returns the length of a bitfield array in longs for x bits
203 LONG(x) - returns the index in the array in longs for bit x
232 need to be set by userland utilities. The keycode array then is an array
234 contain the size of the array and keycodesize the size of each entry in it
/linux-2.4.37.9/drivers/net/
Daironet4500_proc.c79 int array_len = rid->array; in awc_proc_format_array()
87 if (bytes > 4 && rid->array == 1){ in awc_proc_format_array()
311 if (rid->array > 1 || rid->bits > 32){ in awc_proc_fun()
473 if (awc_rids[group].rids[rid].array > 1 || in awc_proc_set_device()
/linux-2.4.37.9/include/linux/
Dsem.h48 unsigned short *array; /* array for GETALL & SETALL */ member
/linux-2.4.37.9/fs/hpfs/
Dmap.c59 cpds = cp->array[0].code_page_data; in hpfs_load_code_page()
60 cpi = cp->array[0].index; in hpfs_load_code_page()
/linux-2.4.37.9/arch/sparc64/prom/
Dmap.S60 add %sp, (2047 + 128), %o0 ! argument array
/linux-2.4.37.9/arch/ia64/kernel/
Dunwind_i.h55 const struct unw_table_entry *array; member
/linux-2.4.37.9/drivers/scsi/aic7xxx/
Daic7xxx_osm.h644 ahc_outsb(struct ahc_softc * ahc, long port, uint8_t *array, int count) in ahc_outsb() argument
654 ahc_outb(ahc, port, *array++); in ahc_outsb()
658 ahc_insb(struct ahc_softc * ahc, long port, uint8_t *array, int count) in ahc_insb() argument
668 *array++ = ahc_inb(ahc, port); in ahc_insb()
/linux-2.4.37.9/drivers/scsi/
Dchangelog.megaraid243 i. Make sure the value of number of statuses, completed command id array,
46 command id array's first element are invalidated. The ISR busy waits
49 values is sane when write to numstatus and completed id array is

1234