Searched refs:node (Results 1 - 14 of 14) sorted by relevance
/bionic/libc/kernel/common/asm-generic/ |
H A D | topology.h | 19 #define parent_node(node) (0) 22 #define node_to_cpumask(node) (cpu_online_map) 25 #define node_to_first_cpu(node) (0) 28 #define pcibus_to_node(node) (-1)
|
/bionic/libc/kernel/common/linux/ |
H A D | node.h | 18 struct node { struct 22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
|
H A D | nodemask.h | 22 #define node_set(node, dst) __node_set((node), &(dst)) 23 #define node_clear(node, dst) __node_clear((node), &(dst)) 26 #define node_isset(node, nodemask) test_bit((node), (nodemask).bits) 27 #define node_test_and_set(node, nodemask) __node_test_and_set((node), &(nodemask)) 43 #define nodemask_of_node(node) ({ typeof(_unused_nodemask_arg_) m; if (sizeof(m) == sizeof(unsigned long)) { m.bits[0] = 1UL<<(node); } els [all...] |
H A D | rbtree.h | 42 #define RB_EMPTY_NODE(node) (rb_parent(node) != node) 43 #define RB_CLEAR_NODE(node) (rb_set_parent(node, node))
|
H A D | cpu.h | 16 #include <linux/node.h>
|
H A D | attribute_container.h | 21 struct list_head node; member in struct:attribute_container
|
H A D | plist.h | 33 #define PLIST_NODE_INIT(node, __prio) { .prio = (__prio), .plist = PLIST_HEAD_INIT((node).plist, NULL), }
|
H A D | device.h | 136 struct list_head node; member in struct:class_device 155 struct list_head node; member in struct:class_interface 200 struct list_head node; member in struct:device
|
H A D | blkdev.h | 348 int node; member in struct:request_queue
|
/bionic/libc/stdio/ |
H A D | flockfile.c | 53 /* a node in the hash table */ 107 FileLock* node = *pnode; local 108 if (node == NULL || node->file == f) 110 pnode = &node->next; 127 /* create a new node in the hash table */
|
/bionic/libc/kernel/arch-sh/asm/ |
H A D | clock.h | 33 struct list_head node; member in struct:clk
|
/bionic/libc/kernel/common/linux/mmc/ |
H A D | card.h | 54 struct list_head node; member in struct:mmc_card 87 #define mmc_list_to_card(l) container_of(l, struct mmc_card, node)
|
/bionic/libc/kernel/arch-arm/asm/ |
H A D | memory.h | 67 #define arch_adjust_zones(node,size,holes) do { } while (0)
|
/bionic/libc/netbsd/resolv/ |
H A D | res_cache.c | 1052 /* allocate a new entry as a cache node */ 1131 Entry* node = *pnode; local 1132 *pnode = node->hlink; 1133 entry_free(node); 1216 Entry* node = *pnode; local 1218 if (node == NULL) 1221 if (node->hash == key->hash && entry_equals(node, key)) 1224 pnode = &node->hlink;
|
Completed in 841 milliseconds