HomeSort by relevance Sort by last modified time
    Searched defs:head (Results 1 - 25 of 1003) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/intel/common/wrs_omxil_core/utils/inc/
queue.h 29 struct list *head; member in struct:queue
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
memory_pool.h 38 unsigned char * head; member in struct:memory_pool
  /external/icu/icu4c/source/layout/
LEInsertionList.h 143 * The head of the insertion list.
147 InsertionRecord *head; member in class:LEInsertionList
  /external/ipsec-tools/src/racoon/
logger.h 38 int head; member in struct:log
  /external/mesa3d/src/gallium/drivers/r300/compiler/
memory_pool.h 38 unsigned char * head; member in struct:memory_pool
  /development/ndk/platforms/android-3/include/linux/
circ_buf.h 17 int head; member in struct:circ_buf
21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
  /external/chromium_org/media/formats/common/
offset_byte_queue.h 17 // of many different meanings of "offset", "head", etc.
32 // It is an error if the offset is before the current head. It's not an error
42 // including the case where |max_offset| is less than the current head.
47 // The head and tail positions, in terms of the file's absolute offsets.
49 int64 head() { return head_; } function in class:media::OffsetByteQueue
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNodeAlgorithms.h 33 void addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer&);
44 GenericNode* head = 0; local
47 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, container);
51 while ((n = head) != 0) {
57 head = next;
62 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, static_cast<GenericNodeContainer&>(*n));
73 void addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer& container)
96 head = n;
  /external/chromium_org/third_party/mesa/src/src/mapi/mapi/
u_execmem.c 44 static unsigned int head = 0; variable
132 if (head + size > EXEC_MAP_SIZE)
136 addr = exec_mem + head;
137 head += size;
  /external/chromium_org/third_party/ots/src/
loca.cc 7 #include "head.h"
24 if (!file->maxp || !file->head) {
33 if (file->head->index_to_loc_format == 0) {
71 const OpenTypeHEAD *head = file->head; local
73 if (!head) {
77 if (head->index_to_loc_format == 0) {
  /external/llvm/include/llvm/Support/
CrashRecoveryContext.h 49 CrashRecoveryContextCleanup *head; member in class:llvm::CrashRecoveryContext
52 CrashRecoveryContext() : Impl(nullptr), head(nullptr) {}
  /external/mesa3d/src/mapi/mapi/
u_execmem.c 44 static unsigned int head = 0; variable
132 if (head + size > EXEC_MAP_SIZE)
136 addr = exec_mem + head;
137 head += size;
  /frameworks/native/services/surfaceflinger/RenderEngine/
GLExtensions.cpp 45 char const* head = curr; local
47 head = strchr(curr, ' ');
48 String8 s(curr, head ? head-curr : strlen(curr));
52 curr = head+1;
53 } while (head);
  /hardware/ti/omap3/dspbridge/inc/
list.h 60 #define LST_IsEmpty(l) (((l)->head.next == &(l)->head))
71 struct LST_ELEM head; member in struct:LST_LIST
85 * at the head of the list pointing to the head of the list, itself.
155 * Pops the head off the list and returns a pointer to it.
158 * Else, removes the element at the head of the list, making the next
159 * element the head of the list.
160 * The head is removed by making the tail element of the list point its
161 * "next" pointer at the next element after the head, and by making th
    [all...]
  /hardware/ti/omap3/dspbridge/libbridge/inc/
list.h 60 #define LST_IsEmpty(l) (((l)->head.next == &(l)->head))
71 struct LST_ELEM head; member in struct:LST_LIST
85 * at the head of the list pointing to the head of the list, itself.
155 * Pops the head off the list and returns a pointer to it.
158 * Else, removes the element at the head of the list, making the next
159 * element the head of the list.
160 * The head is removed by making the tail element of the list point its
161 * "next" pointer at the next element after the head, and by making th
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
circ_buf.h 17 int head; member in struct:circ_buf
21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
circ_buf.h 17 int head; member in struct:circ_buf
21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
circ_buf.h 17 int head; member in struct:circ_buf
21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
circ_buf.h 17 int head; member in struct:circ_buf
21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
circ_buf.h 17 int head; member in struct:circ_buf
21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
circ_buf.h 17 int head; member in struct:circ_buf
21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
circ_buf.h 17 int head; member in struct:circ_buf
21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
circ_buf.h 17 int head; member in struct:circ_buf
21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/
circ_buf.h 17 int head; member in struct:circ_buf
21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/
circ_buf.h 17 int head; member in struct:circ_buf
21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})

Completed in 811 milliseconds

1 2 3 4 5 6 7 8 91011>>