HomeSort by relevance Sort by last modified time
    Searched refs:alloc_head (Results 1 - 2 of 2) sorted by null

  /external/expat/tests/
memcheck.c 50 static AllocationEntry *alloc_head = NULL; variable
75 if (alloc_head == NULL) {
77 alloc_head = alloc_tail = entry;
92 for (entry = alloc_head; entry != NULL; entry = entry->next) {
117 alloc_head = entry->next;
162 if (alloc_head == NULL) {
164 alloc_head = alloc_tail = entry;
188 if (alloc_head == NULL)
192 for (entry = alloc_head; entry != NULL; entry = entry->next)
  /external/vboot_reference/firmware/stub/
vboot_api_stub_sf.c 33 static struct alloc_node *alloc_head; variable in typeref:struct:alloc_node
57 node->next = alloc_head;
61 alloc_head = node;
70 for (nodep = &alloc_head; *nodep; nodep = &(*nodep)->next)
109 if (!alloc_head)
117 for (node = alloc_head; node; node = next) {

Completed in 3667 milliseconds