Searched refs:array (Results 126 - 150 of 526) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dlistbox.tex97 \docparam{choices}{An array of strings with which to initialise the control.}
113 \perlnote{In wxPerl there is just an array reference in place of {\tt n}
155 Fill an array of ints with the positions of the currently selected items.
191 \docparam{nItems}{Number of items in the array {\it items}}
201 \perlnote{In wxPerl there is just an array reference in place of {\tt nItems}
249 \docparam{choices}{An array of strings to set.}
251 \docparam{clientData}{Options array of client data pointers}
255 You may free the array from the calling program after this function has been
H A Dautoobj.tex56 arguments, and an array of variants. The second form takes a method name and zero to six
124 arguments, and an array of variants. The second form takes a property name and zero to six
159 \docparam{args}{If non-null, contains an array of variants.}
161 \docparam{ptrArgs}{If non-null, contains an array of constant pointers to variants.}
169 Two types of argument array are provided, so that when possible pointers are used for efficiency.
179 arguments, and an array of variants. The second form takes a property name and zero to six
H A Dencconv.tex176 \item Note that argument {\it enc} itself may be present in the returned array,
182 \item If {\it enc} is present in the returned array, then it is {\bf always} the first
184 \item Please note that the returned array may contain no items at all.
197 This platform's encodings are before others in the array. And again, if {\it enc} is in the array,
H A Dhash.tex33 A hash table is implemented as an array of pointers to lists. When no
35 this array (default size is 1000). When a data item is added, an
37 bounds of the array. If the array element is NULL, a new (keyed) list is
42 Retrieval involves recalculating the array index from the key, and searching
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
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
99 struct sem *sem_base; /* ptr to first semaphore in array */
101 struct list_head list_id; /* undo requests on this array */
102 int sem_nsems; /* no. of semaphores in array */
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/kernel/
H A Dunwind_i.h55 const struct unw_table_entry *array; member in struct:unw_table
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/smbd/
H A Dconn.c45 argument.array = values;
297 if (conn->vuid_cache.array[i].vuid == vuid) {
298 struct vuid_cache_entry *ent = &conn->vuid_cache.array[i];
H A Duid.c93 if (conn->vuid_cache.array[i].vuid == vuser->vuid) {
94 ent = &conn->vuid_cache.array[i];
131 ent = &conn->vuid_cache.array[i];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/src/plugins/down-root/
H A Ddown-root.c81 * the envp array for its value, returning it
105 * Return the length of a string array
108 string_array_len (const char *array[]) argument
111 if (array)
113 while (array[i])
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/lzo-2.06/src/
H A Dlzo_conf.h230 #define LZO_HIGH(array) ((lzo_uint) (sizeof(array)/sizeof(*(array))))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dlist.cpp479 // - put wxObject pointers into an array
480 // - sort the array with qsort
504 // allocate an array for the wxObject pointers of the list
509 // go through the list and put the pointers into the array
516 // sort the array
530 // free the array
724 wxChar **array = new wxChar *[N]; local
730 array[i++] = node->GetData();
733 qsort (array, N, sizeof (wxChar *), wx_comparestrings);
737 node->SetData( array[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/webserver/src/
H A Dphp_core_lib.cpp80 printf("array(%d) {\n", arr_size);
157 php_report_error(PHP_ERROR, "Invalid or missing argument (array)");
160 PHP_VAR_NODE *array = si->var; local
177 PHP_ARRAY_TYPE *arr_obj = (PHP_ARRAY_TYPE *)array->value.ptr_val;
181 if ( arr_obj->array.size() == 0 ) {
182 php_report_error(PHP_WARNING, "Sorting array of size 0");
187 for(PHP_ARRAY_ITER_TYPE i = arr_obj->array.begin(); i != arr_obj->array.end(); i++) {
193 arr_obj->array.clear();
197 array_add_to_int_key(&array
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/spectra/
H A Dflash.c447 Cache.array[i].address = NAND_CACHE_INIT_ADDR;
448 Cache.array[i].use_cnt = 0;
449 Cache.array[i].changed = CLEAR;
450 Cache.array[i].buf = kmalloc(Cache.cache_item_size,
452 if (!Cache.array[i].buf)
454 memset(Cache.array[i].buf, 0, Cache.cache_item_size);
723 kfree(Cache.array[i].buf);
765 kfree(Cache.array[i].buf);
795 * Description: allocates the memory for cache array,
797 * clears the cache array
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dcookie.c1035 struct Cookie **array; local
1038 /* alloc an array and store all cookie pointers */
1039 array = malloc(sizeof(struct Cookie *) * matches);
1040 if(!array)
1046 array[i++] = co;
1049 qsort(array, matches, sizeof(struct Cookie *), cookie_sort);
1053 mainco = array[0]; /* start here */
1055 array[i]->next = array[i+1];
1056 array[matche
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Drelay.c69 * allocate an array of pointers of struct page
73 struct page **array; local
77 array = vmalloc(pa_size);
78 if (array)
79 memset(array, 0, pa_size);
81 array = kzalloc(pa_size, GFP_KERNEL);
83 return array;
87 * free an array of pointers of struct page
89 static void relay_free_page_array(struct page **array) argument
91 if (is_vmalloc_addr(array))
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/power/
H A Dds2760_battery.c97 /* array is level at temps 0��C, 10��C, 20��C, 30��C, 40��C
99 static int battery_interpolate(int array[], int temp) argument
104 return array[0];
106 return array[4];
111 return array[index] + (((array[index + 1] - array[index]) * dt) / 10);
/netgear-R7000-V1.0.7.12_1.2.5/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...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/8021q/
H A Dvlan.c124 struct net_device **array; local
129 array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
130 if (array != NULL)
134 array = kzalloc(size, GFP_KERNEL);
135 if (array == NULL)
138 vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN] = array;
/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-autoipd/
H A Diface-bsd.c58 #define elementsof(array) (sizeof(array)/sizeof(array[0]))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-autoipd/
H A Diface-bsd.c58 #define elementsof(array) (sizeof(array)/sizeof(array[0]))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/pptpd/pptpd-1.3.4/
H A Dpptpmanager.c458 #define NUM2ARRAY(array, num) snprintf(array, sizeof(array), "%d", num)
536 /* terminate argv array with a NULL */
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/xen/
H A Dspinlock.c64 static void __spin_time_accum(u64 delta, u32 *array) argument
71 array[index]++;
73 array[HISTO_BUCKETS]++;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/trace/
H A Dring_buffer_benchmark.c132 inc = event->array[0] + 4;
144 if (!event->array[0]) {
148 inc = event->array[0] + 4;

Completed in 513 milliseconds

1234567891011>>