Home
last modified time | relevance | path

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

/external/elfutils/0.153/libebl/
Deblgstrtab.c326 copystrings (struct Ebl_GStrent *nodep, char **freep, size_t *offsetp) in copystrings() argument
330 if (nodep->left != NULL) in copystrings()
331 copystrings (nodep->left, freep, offsetp); in copystrings()
334 nodep->offset = *offsetp; in copystrings()
335 *freep = (char *) mempcpy (*freep, nodep->string, nodep->len * nodep->width); in copystrings()
336 *offsetp += nodep->len * nodep->width; in copystrings()
338 for (subs = nodep->next; subs != NULL; subs = subs->next) in copystrings()
340 assert (subs->len < nodep->len); in copystrings()
341 subs->offset = nodep->offset + (nodep->len - subs->len) * nodep->width; in copystrings()
345 if (nodep->right != NULL) in copystrings()
[all …]
Deblwstrtab.c320 copystrings (struct Ebl_WStrent *nodep, wchar_t **freep, size_t *offsetp) in copystrings() argument
324 if (nodep->left != NULL) in copystrings()
325 copystrings (nodep->left, freep, offsetp); in copystrings()
328 nodep->offset = *offsetp; in copystrings()
329 *freep = wmempcpy (*freep, nodep->string, nodep->len); in copystrings()
330 *offsetp += nodep->len * sizeof (wchar_t); in copystrings()
332 for (subs = nodep->next; subs != NULL; subs = subs->next) in copystrings()
334 assert (subs->len < nodep->len); in copystrings()
335 subs->offset = nodep->offset + nodep->len - subs->len; in copystrings()
339 if (nodep->right != NULL) in copystrings()
[all …]
Deblstrtab.c313 copystrings (struct Ebl_Strent *nodep, char **freep, size_t *offsetp) in copystrings() argument
315 if (nodep->left != NULL) in copystrings()
316 copystrings (nodep->left, freep, offsetp); in copystrings()
319 nodep->offset = *offsetp; in copystrings()
320 *freep = (char *) mempcpy (*freep, nodep->string, nodep->len); in copystrings()
321 *offsetp += nodep->len; in copystrings()
323 for (struct Ebl_Strent *subs = nodep->next; subs != NULL; subs = subs->next) in copystrings()
325 assert (subs->len < nodep->len); in copystrings()
326 subs->offset = nodep->offset + nodep->len - subs->len; in copystrings()
330 if (nodep->right != NULL) in copystrings()
[all …]
/external/ltrace/
Dzero.c95 static struct expr_node *nodep = NULL; in expr_node_zero() local
96 if (nodep == NULL) { in expr_node_zero()
100 nodep = &node; in expr_node_zero()
102 return nodep; in expr_node_zero()
Dexpr.c408 static struct expr_node *nodep = NULL; in expr_self() local
409 if (nodep == NULL) { in expr_self()
412 nodep = &node; in expr_self()
414 return nodep; in expr_self()
Dread_config_file.c288 wrap_in_zero(struct expr_node **nodep) in wrap_in_zero() argument
290 struct expr_node *n = build_zero_w_arg(*nodep, 1); in wrap_in_zero()
293 *nodep = n; in wrap_in_zero()
/external/bison/src/
Dielr.c973 state_list **nodep = &first_state; in ielr_split_states() local
976 *nodep = states[i]->state_list = last_state = xmalloc (sizeof **nodep); in ielr_split_states()
977 (*nodep)->state = states[i]; in ielr_split_states()
978 (*nodep)->recomputedAsSuccessor = false; in ielr_split_states()
979 (*nodep)->lookaheads = NULL; in ielr_split_states()
980 (*nodep)->lr0Isocore = *nodep; in ielr_split_states()
981 (*nodep)->nextIsocore = *nodep; in ielr_split_states()
982 nodep = &(*nodep)->next; in ielr_split_states()
986 *nodep = NULL; in ielr_split_states()
/external/chromium_org/third_party/re2/re2/
Donepass.cc405 uint8* nodep = nodes; in IsOnePass() local
410 nodep += statesize; in IsOnePass()
458 nodep += statesize; in IsOnePass()
593 nodep = new uint8[nalloc*statesize]; in IsOnePass()
594 memmove(nodep, nodes, nalloc*statesize); in IsOnePass()
596 nodes = nodep; in IsOnePass()
/external/regex-re2/re2/
Donepass.cc405 uint8* nodep = nodes; in IsOnePass() local
410 nodep += statesize; in IsOnePass()
458 nodep += statesize; in IsOnePass()
593 nodep = new uint8[nalloc*statesize]; in IsOnePass()
594 memmove(nodep, nodes, nalloc*statesize); in IsOnePass()
596 nodes = nodep; in IsOnePass()
/external/jemalloc/include/jemalloc/internal/
Drb.h521 } *pathp, *nodep, path[sizeof(void *) << 4]; \
523 nodep = NULL; /* Silence compiler warning. */ \
536 nodep = pathp; \
547 assert(nodep->node == node); \
565 nodep->node = pathp->node; \
567 if (nodep == path) { \
568 rbtree->rbt_root = nodep->node; \
570 if (nodep[-1].cmp < 0) { \
571 rbtn_left_set(a_type, a_field, nodep[-1].node, \
572 nodep->node); \
[all …]
/external/elfutils/0.153/libcpu/
Di386_parse.y865 nameout (const void *nodep, VISIT value, int level)
868 printf (" %s\n", *(const char **) nodep);
1073 print_op_str (const void *nodep, VISIT value, in print_op_str() argument
1078 const char *str = (*(struct argstring **) nodep)->str; in print_op_str()
1081 (*(struct argstring **) nodep)->idx = ++count_op_str; in print_op_str()
1082 (*(struct argstring **) nodep)->off = off_op_str; in print_op_str()
1089 print_op_str_idx (const void *nodep, VISIT value, in print_op_str_idx() argument
1093 printf (" %d,\n", (*(struct argstring **) nodep)->off); in print_op_str_idx()
1098 print_op_fct (const void *nodep, VISIT value, in print_op_fct() argument
1103 fprintf (outfile, " FCT_%s,\n", (*(struct argstring **) nodep)->str); in print_op_fct()
[all …]
Di386_parse.c2577 nameout (const void *nodep, VISIT value, int level)
2580 printf (" %s\n", *(const char **) nodep);
2785 print_op_str (const void *nodep, VISIT value, in print_op_str() argument
2790 const char *str = (*(struct argstring **) nodep)->str; in print_op_str()
2793 (*(struct argstring **) nodep)->idx = ++count_op_str; in print_op_str()
2794 (*(struct argstring **) nodep)->off = off_op_str; in print_op_str()
2801 print_op_str_idx (const void *nodep, VISIT value, in print_op_str_idx() argument
2805 printf (" %d,\n", (*(struct argstring **) nodep)->off); in print_op_str_idx()
2810 print_op_fct (const void *nodep, VISIT value, in print_op_fct() argument
2815 fprintf (outfile, " FCT_%s,\n", (*(struct argstring **) nodep)->str); in print_op_fct()
[all …]
/external/elfutils/0.153/host-darwin-fixup/
DAndroidFixup.h93 static void tdestroy(void *root, void (*free_node)(void *nodep)) in tdestroy() argument
/external/libsepol/src/
Dpolicydb.c1968 static int read_cons_helper(policydb_t * p, constraint_node_t ** nodep, in read_cons_helper() argument
1988 *nodep = c; in read_cons_helper()