Searched refs:nodep (Results 1 - 14 of 14) sorted by relevance

/external/curl/tests/unit/
H A Dunit1603.c57 char *nodep; variable
70 nodep = Curl_hash_add(&hash_static, &key1, strlen(key1), &key1);
71 fail_unless(nodep, "insertion into hash failed");
72 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
73 fail_unless(nodep == key1, "hash retrieval failed");
75 nodep = Curl_hash_add(&hash_static, &key2, strlen(key2), &key2);
76 fail_unless(nodep, "insertion into hash failed");
77 nodep = Curl_hash_pick(&hash_static, &key2, strlen(key2));
78 fail_unless(nodep == key2, "hash retrieval failed");
80 nodep
[all...]
H A Dunit1602.c53 int *nodep; variable
63 nodep = Curl_hash_add(&hash_static, &key, klen, value);
64 if(!nodep)
66 abort_unless(nodep, "insertion into hash failed");
73 nodep = Curl_hash_add(&hash_static, &key2, klen, value2);
74 if(!nodep)
76 abort_unless(nodep, "insertion into hash failed");
H A Dunit1305.c123 struct Curl_dns_entry *nodep; variable in typeref:struct:Curl_dns_entry
133 nodep = Curl_hash_add(&hp, data_key, key_len+1, data_node);
134 abort_unless(nodep, "insertion into hash failed");
/external/vboot_reference/firmware/stub/
H A Dvboot_api_stub_sf.c68 struct alloc_node **nodep; local
70 for (nodep = &alloc_head; *nodep; nodep = &(*nodep)->next)
71 if ((*nodep)->ptr == ptr)
72 return nodep;
79 struct alloc_node **nodep, *next; local
81 nodep = find_node(ptr);
82 if (nodep) {
[all...]
/external/elfutils/libebl/
H A Deblstrtab.c292 copystrings (struct Ebl_Strent *nodep, char **freep, size_t *offsetp) argument
294 if (nodep->left != NULL)
295 copystrings (nodep->left, freep, offsetp);
298 nodep->offset = *offsetp;
299 *freep = (char *) mempcpy (*freep, nodep->string, nodep->len);
300 *offsetp += nodep->len;
302 for (struct Ebl_Strent *subs = nodep->next; subs != NULL; subs = subs->next)
304 assert (subs->len < nodep->len);
305 subs->offset = nodep
[all...]
H A Deblgstrtab.c305 copystrings (struct Ebl_GStrent *nodep, char **freep, size_t *offsetp) argument
309 if (nodep->left != NULL)
310 copystrings (nodep->left, freep, offsetp);
313 nodep->offset = *offsetp;
314 *freep = (char *) mempcpy (*freep, nodep->string, nodep->len * nodep->width);
315 *offsetp += nodep->len * nodep->width;
317 for (subs = nodep
[all...]
H A Deblwstrtab.c299 copystrings (struct Ebl_WStrent *nodep, wchar_t **freep, size_t *offsetp) argument
303 if (nodep->left != NULL)
304 copystrings (nodep->left, freep, offsetp);
307 nodep->offset = *offsetp;
308 *freep = wmempcpy (*freep, nodep->string, nodep->len);
309 *offsetp += nodep->len * sizeof (wchar_t);
311 for (subs = nodep->next; subs != NULL; subs = subs->next)
313 assert (subs->len < nodep->len);
314 subs->offset = nodep
[all...]
/external/ltp/testcases/kernel/lib/
H A Dnuma_helper.c229 int i, *nodep; local
240 nodep = va_arg(ap, int *);
242 *nodep = nodes[i];
/external/regex-re2/re2/
H A Donepass.cc405 uint8* nodep = nodes; local
410 nodep += statesize;
458 nodep += statesize;
593 nodep = new uint8[nalloc*statesize];
594 memmove(nodep, nodes, nalloc*statesize);
596 nodes = nodep;
/external/bison/src/
H A Dielr.c973 state_list **nodep = &first_state; local
976 *nodep = states[i]->state_list = last_state = xmalloc (sizeof **nodep);
977 (*nodep)->state = states[i];
978 (*nodep)->recomputedAsSuccessor = false;
979 (*nodep)->lookaheads = NULL;
980 (*nodep)->lr0Isocore = *nodep;
981 (*nodep)->nextIsocore = *nodep;
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Drb.h537 } *pathp, *nodep, path[sizeof(void *) << 4]; \
539 nodep = NULL; /* Silence compiler warning. */ \
552 nodep = pathp; \
563 assert(nodep->node == node); \
581 nodep->node = pathp->node; \
583 if (nodep == path) { \
584 rbtree->rbt_root = nodep->node; \
586 if (nodep[-1].cmp < 0) { \
587 rbtn_left_set(a_type, a_field, nodep[-1].node, \
588 nodep
[all...]
/external/elfutils/libcpu/
H A Di386_parse.y868 nameout (const void *nodep, VISIT value, int level)
871 printf (" %s\n", *(const char **) nodep);
1076 print_op_str (const void *nodep, VISIT value,
1081 const char *str = (*(struct argstring **) nodep)->str;
1084 (*(struct argstring **) nodep)->idx = ++count_op_str;
1085 (*(struct argstring **) nodep)->off = off_op_str;
1092 print_op_str_idx (const void *nodep, VISIT value,
1096 printf (" %d,\n", (*(struct argstring **) nodep)->off);
1101 print_op_fct (const void *nodep, VISIT value,
1106 fprintf (outfile, " FCT_%s,\n", (*(struct argstring **) nodep)
[all...]
/external/libmicrohttpd/src/microhttpd/
H A Ddaemon.c312 void **nodep; local
334 if (NULL == (nodep = tsearch (key,
346 node = *nodep;
377 void **nodep; local
390 if (NULL == (nodep = tfind (&search_key,
398 found_key = (struct MHD_IPCount *) *nodep;
/external/selinux/libsepol/src/
H A Dpolicydb.c2084 static int read_cons_helper(policydb_t * p, constraint_node_t ** nodep, argument
2104 *nodep = c;

Completed in 380 milliseconds