Home
last modified time | relevance | path

Searched refs:pathp (Results 1 – 10 of 10) sorted by relevance

/external/jemalloc/include/jemalloc/internal/
Drb.h467 } 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/jemalloc_new/include/jemalloc/internal/
Drb.h471 } 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/u-boot/cmd/
Dfdt.c31 static int fdt_print(const char *pathp, char *prop, int depth);
221 char *pathp; /* path */ in do_fdt() local
232 pathp = argv[2]; in do_fdt()
235 nodeoffset = fdt_path_offset (working_fdt, pathp); in do_fdt()
255 char *pathp; /* path */ in do_fdt() local
269 pathp = argv[2]; in do_fdt()
272 nodeoffset = fdt_path_offset (working_fdt, pathp); in do_fdt()
310 char *pathp; /* path */ in do_fdt() local
329 pathp = argv[4]; in do_fdt()
332 nodeoffset = fdt_path_offset(working_fdt, pathp); in do_fdt()
[all …]
/external/u-boot/lib/
Dof_live.c49 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/
Dfdtget.c155 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/syzkaller/vendor/golang.org/x/sys/unix/
Dsyscall_solaris.go333 pathp, err := BytePtrFromString(path)
338 return futimesat(dirfd, pathp, nil)
343 return futimesat(dirfd, pathp, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
504 pathp, err := BytePtrFromString(path)
508 return acct(pathp)
Dsyscall_linux_arm.go154 pathp, err := BytePtrFromString(path)
158 …_, _, e := Syscall(SYS_STATFS64, uintptr(unsafe.Pointer(pathp)), unsafe.Sizeof(*buf), uintptr(unsa…
Dsyscall_linux_386.go351 pathp, err := BytePtrFromString(path)
355 …_, _, e := Syscall(SYS_STATFS64, uintptr(unsafe.Pointer(pathp)), unsafe.Sizeof(*buf), uintptr(unsa…
/external/u-boot/scripts/dtc/libfdt/
Dfdt_overlay.c104 int fragment, char const **pathp) in overlay_get_target() argument
141 if (pathp) in overlay_get_target()
142 *pathp = path ? path : NULL; in overlay_get_target()
/external/libpcap/
Dpcap.c1474 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 …]