Searched refs:pathp (Results 1 – 7 of 7) sorted by relevance
/external/jemalloc_new/include/jemalloc/internal/ |
D | rb.h | 471 } path[sizeof(void *) << 4], *pathp; \ 475 for (pathp = path; pathp->node != NULL; pathp++) { \ 476 int cmp = pathp->cmp = a_cmp(node, pathp->node); \ 479 pathp[1].node = rbtn_left_get(a_type, a_field, \ 480 pathp->node); \ 482 pathp[1].node = rbtn_right_get(a_type, a_field, \ 483 pathp->node); \ 486 pathp->node = node; \ 488 for (pathp--; (uintptr_t)pathp >= (uintptr_t)path; pathp--) { \ 489 a_type *cnode = pathp->node; \ [all …]
|
/external/jemalloc/include/jemalloc/internal/ |
D | rb.h | 467 } path[sizeof(void *) << 4], *pathp; \ 471 for (pathp = path; pathp->node != NULL; pathp++) { \ 472 int cmp = pathp->cmp = a_cmp(node, pathp->node); \ 475 pathp[1].node = rbtn_left_get(a_type, a_field, \ 476 pathp->node); \ 478 pathp[1].node = rbtn_right_get(a_type, a_field, \ 479 pathp->node); \ 482 pathp->node = node; \ 484 for (pathp--; (uintptr_t)pathp >= (uintptr_t)path; pathp--) { \ 485 a_type *cnode = pathp->node; \ [all …]
|
/external/u-boot/cmd/ |
D | fdt.c | 32 static int fdt_print(const char *pathp, char *prop, int depth); 256 char *pathp; /* path */ in do_fdt() local 267 pathp = argv[2]; in do_fdt() 270 nodeoffset = fdt_path_offset (working_fdt, pathp); in do_fdt() 290 char *pathp; /* path */ in do_fdt() local 304 pathp = argv[2]; in do_fdt() 307 nodeoffset = fdt_path_offset (working_fdt, pathp); in do_fdt() 345 char *pathp; /* path */ in do_fdt() local 364 pathp = argv[4]; in do_fdt() 367 nodeoffset = fdt_path_offset(working_fdt, pathp); in do_fdt() [all …]
|
/external/u-boot/lib/ |
D | of_live.c | 49 const char *pathp; in unflatten_dt_node() local 58 pathp = fdt_get_name(blob, *poffset, &l); in unflatten_dt_node() 59 if (!pathp) in unflatten_dt_node() 70 if ((*pathp) != '/') { in unflatten_dt_node() 82 pathp = ""; in unflatten_dt_node() 107 pathp, (int)strlen(fn), l, in unflatten_dt_node() 115 memcpy(fn, pathp, l); in unflatten_dt_node() 175 const char *p1 = pathp, *ps = pathp, *pa = NULL; in unflatten_dt_node() 198 debug("fixed up name for %s -> %s\n", pathp, in unflatten_dt_node()
|
/external/dtc/ |
D | fdtget.c | 155 const char *pathp; in list_subnodes() local 162 pathp = fdt_get_name(blob, node, NULL); in list_subnodes() 164 if (pathp == NULL) in list_subnodes() 165 pathp = "/* NULL pointer error */"; in list_subnodes() 166 if (*pathp == '\0') in list_subnodes() 167 pathp = "/"; /* root is nameless */ in list_subnodes() 169 puts(pathp); in list_subnodes()
|
/external/u-boot/scripts/dtc/libfdt/ |
D | fdt_overlay.c | 59 int fragment, char const **pathp) in overlay_get_target() argument 96 if (pathp) in overlay_get_target() 97 *pathp = path ? path : NULL; in overlay_get_target()
|
/external/libpcap/ |
D | pcap.c | 1474 char **hostp, char **portp, char **pathp, char *ebuf) 1492 *pathp = NULL; 1521 *pathp = strdup(source); 1522 if (*pathp == NULL) { 1546 *pathp = strdup(source); 1547 if (*pathp == NULL) { 1579 *pathp = strdup(colonp + 3); 1580 if (*pathp == NULL) { 1605 *pathp = strdup(colonp + 3); 1606 if (*pathp == NULL) { [all …]
|