Searched refs:array (Results 26 - 50 of 167) sorted by relevance

1234567

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libads/
H A Dauthdata.c120 KRB_SID_AND_ATTR_ARRAY *array,
126 if (NULL == array)
133 if (!prs_uint32("count", ps, depth, &array->count))
137 array->krb_sid_and_attrs = PRS_ALLOC_MEM(ps, KRB_SID_AND_ATTRS, num);
138 if (!array->krb_sid_and_attrs) {
146 &array->krb_sid_and_attrs[i],
153 &array->krb_sid_and_attrs[i],
183 GROUP_MEMBERSHIP_ARRAY *array,
189 if (NULL == array)
196 if (!prs_uint32("count", ps, depth, &array
119 pac_io_krb_sid_and_attr_array(const char *desc, KRB_SID_AND_ATTR_ARRAY *array, uint32 num, prs_struct *ps, int depth) argument
182 pac_io_group_membership_array(const char *desc, GROUP_MEMBERSHIP_ARRAY *array, uint32 num, prs_struct *ps, int depth) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/dlm/
H A Dmember.c121 int i, w, x = 0, total = 0, all_zero = 0, *array; local
140 array = kmalloc(sizeof(int) * total, GFP_KERNEL);
141 if (!array)
156 array[x++] = memb->nodeid;
159 ls->ls_node_array = array;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-s390/
H A Dccwdev.h36 /* scan through an array of device ids and return the first
39 * the array must end with an entry containing zero match_flags
42 ccw_device_id_match(const struct ccw_device_id *array, argument
45 const struct ccw_device_id *id = array;
47 for (id = array; id->match_flags; id++) {
71 * ioinfo array. ioinfo will mutate into a subchannel device later.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/radio/
H A Dmiropcm20-rds-core.c40 static void print_matrix(char array[], unsigned int length) argument
47 printk("%d", (array[i] >> j) & 0x1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/jpeg-7/
H A Drdbmp.c113 * The image has been read into the whole_image array, but is otherwise
129 /* Fetch next row from virtual array */
158 /* Fetch next row from virtual array */
197 /* Read the data into a virtual array in input-file row order. */
218 /* Set up to read from the virtual array in top-to-bottom order */
246 #define GET_2B(array,offset) ((unsigned int) UCH(array[offset]) + \
247 (((unsigned int) UCH(array[offset+1])) << 8))
248 #define GET_4B(array,offset) ((INT32) UCH(array[offse
[all...]
H A Dwrbmp.c37 * in a virtual array during put_pixel_row calls, then actually emit the
38 * BMP file during finish_output. The virtual array contains one JSAMPLE per
53 JDIMENSION cur_output_row; /* next row# to write to virtual array */
81 /* Access next row in virtual array */
116 /* Access next row in virtual array */
162 #define PUT_2B(array,offset,value) \
163 (array[offset] = (char) ((value) & 0xFF), \
164 array[offset+1] = (char) (((value) >> 8) & 0xFF))
165 #define PUT_4B(array,offset,value) \
166 (array[offse
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dmoduleparam.h147 /* Comma-separated array: *nump is set to number they actually specified. */
148 #define module_param_array_named(name, array, type, nump, perm) \
150 = { ARRAY_SIZE(array), nump, param_set_##type, param_get_##type,\
151 sizeof(array[0]), array }; \
154 __MODULE_PARM_TYPE(name, "array of " #type)
H A Dsem.h27 struct sem *sem_base; /* ptr to first semaphore in array */
30 struct sem_undo *undo; /* undo requests on this array */
31 unsigned short sem_nsems; /* no. of semaphores in array */
37 /* semop system calls takes an array of these. */
39 unsigned short sem_num; /* semaphore index in array */
48 unsigned short __user *array; /* array for GETALL & SETALL */ member in union:semun
96 struct sem *sem_base; /* ptr to first semaphore in array */
99 struct sem_undo *undo; /* undo requests on this array */
100 unsigned long sem_nsems; /* no. of semaphores in array */
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/udev/extras/volume_id/lib/
H A Dvia_raid.c41 } PACKED array; member in struct:via_meta
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Dlock.c568 wq->array = NULL;
586 (HANDLE *) realloc (wq->array, new_alloc * sizeof (HANDLE));
590 /* Now is a good opportunity to rotate the array so that its contents
608 wq->array = new_array;
618 wq->array[index] = event;
627 SetEvent (wq->array[wq->offset + 0]);
645 SetEvent (wq->array[index]);
814 if (lock->waiting_readers.array != NULL)
815 free (lock->waiting_readers.array);
816 if (lock->waiting_writers.array !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/db/
H A DTpcbExample.java257 ddbt.setSize(drec.data.length); // uses whole array
332 static long get_int_in_array(byte[] array, int offset) { argument
334 ((0xff & array[offset + 0]) << 0) |
335 ((0xff & array[offset + 1]) << 8) |
336 ((0xff & array[offset + 2]) << 16) |
337 ((0xff & array[offset + 3]) << 24);
341 static void set_int_in_array(byte[] array, int offset, long value) { argument
342 array[offset + 0] = (byte)((value >> 0) & 0xff);
343 array[offset + 1] = (byte)((value >> 8) & 0xff);
344 array[offse
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dcookie.c872 struct Cookie **array; local
875 /* alloc an array and store all cookie pointers */
876 array = malloc(sizeof(struct Cookie *) * matches);
877 if(!array)
883 array[i++] = co;
886 qsort(array, matches, sizeof(struct Cookie *), cookie_sort);
890 mainco = array[0]; /* start here */
892 array[i]->next = array[i+1];
893 array[matche
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dlock.c567 wq->array = NULL;
585 (HANDLE *) realloc (wq->array, new_alloc * sizeof (HANDLE));
589 /* Now is a good opportunity to rotate the array so that its contents
607 wq->array = new_array;
617 wq->array[index] = event;
626 SetEvent (wq->array[wq->offset + 0]);
644 SetEvent (wq->array[index]);
813 if (lock->waiting_readers.array != NULL)
814 free (lock->waiting_readers.array);
815 if (lock->waiting_writers.array !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dlock.c567 wq->array = NULL;
585 (HANDLE *) realloc (wq->array, new_alloc * sizeof (HANDLE));
589 /* Now is a good opportunity to rotate the array so that its contents
607 wq->array = new_array;
617 wq->array[index] = event;
626 SetEvent (wq->array[wq->offset + 0]);
644 SetEvent (wq->array[index]);
813 if (lock->waiting_readers.array != NULL)
814 free (lock->waiting_readers.array);
815 if (lock->waiting_writers.array !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/
H A Djoin.t51 ok 4, $@ =~ /db_join: first parameter is not an array reference/;
54 ok 5, $@ =~ /db_join: first parameter is not an array reference/;
60 ok 6, $@ =~ /db_join: first parameter is not an array reference/;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/perl/DB_File/t/
H A Ddb-recno.t27 # full tied array support started in Perl 5.004_57
263 my @new_data = qw(add this to the start of the array) ;
274 ok(40, $h[7] eq "array") ;
293 ok(50, $h[8] eq "array") ;
309 # get the last element of the array
318 # now try to read before the start of the array
320 ok(57, $@ =~ '^Modification of non-creatable array value attempted' );
403 # check that attempting to tie an associative array to a DB_RECNO will fail
408 ok(71, $@ =~ /^DB_File can only tie an array to a DB_RECNO database/) ;
524 # $# sets array t
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/cipher/
H A Dprimegen.c40 static void m_out_of_n( char *array, int m, int n );
286 RET_FACTORS: if not NULL, an array with all factors are stored at
379 /* Allocate an array to hold all factors + 2 for later usage. */
387 /* Allocate an array to track pool usage. */
991 modified array with the next permutation of M elements. Note, that
993 permutation it is useful to initialize the array with the first M
995 m_out_of_n (array, m, n);
997 if (array[i])
1006 m_out_of_n ( char *array, int m, int n )
1018 if ( array[
1004 m_out_of_n( char *array, int m, int n ) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/repmgr/
H A Drepmgr_windows.c33 * section of the array.
36 struct __ack_waiter *array; member in struct:__ack_waiters_table
105 slot = &db_rep->waiters->array[i];
170 * Grow the array.
173 w = table->array;
177 table->array = w;
183 w = &table->array[table->next_avail++];
333 &table->array)) != 0)
374 if (!CloseHandle(db_rep->waiters->array[i].event) && ret == 0)
377 __os_free(env, db_rep->waiters->array);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/irda/
H A Dqos.c161 * Function value_index (value, array, size)
163 * Returns the index to the value in the specified array
165 static inline int value_index(__u32 value, __u32 *array, int size) argument
170 if (array[i] == value)
176 * Function index_value (index, array)
178 * Returns value to index in array, easy!
181 static inline __u32 index_value(int index, __u32 *array) argument
183 return array[index];
205 /* The only safe choice (we don't know the array size) */
219 * Function value_lower_bits (value, array)
223 value_lower_bits(__u32 value, __u32 *array, int size, __u16 *field) argument
249 value_highest_bit(__u32 value, __u32 *array, int size, __u16 *field) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/kernel/
H A Dunwind_i.h55 const struct unw_table_entry *array; member in struct:unw_table
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-common/
H A Dstrlst.h60 /** Create a new string list from a string array. The strings are
62 * array, or -1 if the array is NULL terminated*/
63 AvahiStringList *avahi_string_list_new_from_array(const char **array, int length);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dconn.c45 argument.array = values;
289 if (conn->vuid_cache.array[i].vuid == vuid) {
290 struct vuid_cache_entry *ent = &conn->vuid_cache.array[i];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/s390/kernel/
H A Dhead64.S67 l %r11,.Lpref_arr_ptr-.LPG1(%r13) # address of prefix array
70 ahi %r12,(CONFIG_NR_CPUS*4) # end of prefix array
83 mvc 0(4,%r11),264(%r7) # copy prefix register to prefix array
84 ahi %r11,4 # next element in prefix array
86 je 5f # no more space in prefix array
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Ddict.c56 xmlChar array[1]; member in struct:_xmlDictStrings
123 * Add the string to the array[s]
153 pool->free = &pool->array[0];
154 pool->end = &pool->array[size];
173 * Add the QName to the array[s]
209 pool->free = &pool->array[0];
210 pool->end = &pool->array[size];
435 the main dict. So instead, we run through the array twice, first
436 copying all the elements in the main array (where we can't get
872 if ((str >= &pool->array[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Ddict.c56 xmlChar array[1]; member in struct:_xmlDictStrings
123 * Add the string to the array[s]
153 pool->free = &pool->array[0];
154 pool->end = &pool->array[size];
173 * Add the QName to the array[s]
209 pool->free = &pool->array[0];
210 pool->end = &pool->array[size];
435 the main dict. So instead, we run through the array twice, first
436 copying all the elements in the main array (where we can't get
872 if ((str >= &pool->array[
[all...]

Completed in 410 milliseconds

1234567