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

1 2 3 4 5 6 7 8 9

  /external/bluetooth/glib/glib/
gqueue.h 42 GList *head; member in struct:_GQueue
  /external/icu4c/layout/
LEInsertionList.h 142 * The head of the insertion list.
146 InsertionRecord *head; member in class:LEInsertionList
  /external/ipsec-tools/src/racoon/
logger.h 38 int head; member in struct:log
  /external/webkit/JavaScriptCore/runtime/
StructureChain.h 42 static PassRefPtr<StructureChain> create(Structure* head) { return adoptRef(new StructureChain(head)); }
43 RefPtr<Structure>* head() { return m_vector.get(); } function in class:JSC::StructureChain
46 StructureChain(Structure* head);
  /bionic/libc/kernel/common/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/dropbear/
queue.h 37 struct Link* head; member in struct:Queue
  /external/kernel-headers/original/linux/
circ_buf.h 6 int head; member in struct:circ_buf
11 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
14 as a completely full buffer has head == tail, which is the same as
16 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
19 accessing head and tail more than once, so they can change
21 #define CIRC_CNT_TO_END(head,tail,size) \
23 int n = ((head) + end) & ((size)-1); \
27 #define CIRC_SPACE_TO_END(head,tail,size)
    [all...]
  /external/skia/src/core/
SkGlobals.cpp 48 Rec*& head = bootstrap.fHead; local
49 rec = head;
60 rec->fNext = head;
78 Rec*& head = bootstrap.fHead; local
79 Rec* rec = head;
SkRegionPriv.h 40 RunHead* head = (RunHead*)sk_malloc_throw(sizeof(RunHead) + count * sizeof(RunType)); local
41 head->fRefCnt = 1;
42 head->fRunCount = count;
43 return 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...]
  /ndk/build/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;})
  /ndk/build/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;})
  /ndk/build/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;})
  /ndk/build/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;})
  /ndk/build/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;})
  /ndk/build/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;})
  /dalvik/libcore/luni/src/main/java/java/lang/ref/
ReferenceQueue.java 33 private Reference<? extends T> head; field in class:ReferenceQueue
51 if (head == null) {
57 ret = head;
59 if (head == head.queueNext) {
60 head = null;
62 head = head.queueNext;
106 while (head == null) {
112 while (head == null && now < wakeupTime)
    [all...]
  /external/blktrace/btt/
devmap.c 25 struct list_head head; member in struct:devmap
44 list_add_tail(&dmp->head, &all_devmaps);
55 struct devmap *dmp = list_entry(p, struct devmap, head);
87 struct devmap *dmp = list_entry(p, struct devmap, head);
89 list_del(&dmp->head);
  /external/srec/seti/sltsEngine/include/
linklist.h 30 struct LNode *head; member in struct:LList
  /external/webkit/JavaScriptCore/profiler/
Profile.h 42 ProfileNode* head() const { return m_head.get(); } function in class:JSC::Profile
43 void setHead(PassRefPtr<ProfileNode> head) { m_head = head; }
  /external/webkit/WebCore/dom/
ContainerNodeAlgorithms.h 34 void addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer* container);
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));
114 void addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer* container)
135 head = n;
  /external/webkit/WebCore/platform/
DeprecatedPtrListImpl.h 83 DeprecatedListNode *head; member in class:WebCore::DeprecatedPtrListImpl
  /system/core/adb/
test_track_devices.c 83 char head[5] = "0000"; local
85 if (unix_read(s, head, 4) < 0)
88 if ( sscanf( head, "%04x", &len ) != 1 )
94 printf( "received header %.*s (%d bytes):\n%.*s", 4, head, len, len, buffer );
test_track_jdwp.c 83 char head[5] = "0000"; local
85 if (unix_read(s, head, 4) < 0)
88 if ( sscanf( head, "%04x", &len ) != 1 )
94 printf( "received header %.*s (%d bytes):\n%.*s", 4, head, len, len, buffer );

Completed in 628 milliseconds

1 2 3 4 5 6 7 8 9