Home
last modified time | relevance | path

Searched refs:rotating_node_t (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Drotatingtree.h13 #define EMPTY_ROTATING_TREE ((rotating_node_t *)NULL)
15 typedef struct rotating_node_s rotating_node_t; typedef
16 typedef int (*rotating_tree_enum_fn) (rotating_node_t *node, void *arg);
20 rotating_node_t *left;
21 rotating_node_t *right;
24 void RotatingTree_Add(rotating_node_t **root, rotating_node_t *node);
25 rotating_node_t* RotatingTree_Get(rotating_node_t **root, void *key);
26 int RotatingTree_Enum(rotating_node_t *root, rotating_tree_enum_fn enumfn,
Drotatingtree.c31 RotatingTree_Add(rotating_node_t **root, rotating_node_t *node) in RotatingTree_Add()
47 rotating_node_t *
48 RotatingTree_Get(rotating_node_t **root, void *key) in RotatingTree_Get()
52 rotating_node_t *node = *root; in RotatingTree_Get()
64 rotating_node_t **pnode = root; in RotatingTree_Get()
65 rotating_node_t *node = *pnode; in RotatingTree_Get()
66 rotating_node_t *next; in RotatingTree_Get()
107 RotatingTree_Enum(rotating_node_t *root, rotating_tree_enum_fn enumfn, in RotatingTree_Enum()
111 rotating_node_t *node; in RotatingTree_Enum()
D_lsprof.c78 rotating_node_t header;
88 rotating_node_t header;
95 rotating_node_t *calls;
107 rotating_node_t *profilerEntries;
286 static int freeSubEntry(rotating_node_t *header, void *arg) in freeSubEntry()
293 static int freeEntry(rotating_node_t *header, void *arg) in freeEntry()
546 static int statsForSubEntry(rotating_node_t *node, void *arg) in statsForSubEntry()
567 static int statsForEntry(rotating_node_t *node, void *arg) in statsForEntry()