/external/compiler-rt/lib/interception/ |
interception_win.cc | 66 // the wrapper, so we need to keep the leading 5+ bytes ('head') of the 67 // original instructions somewhere with a "jmp old_func+head". 68 // We call these 'head'+5 bytes of instructions a "trampoline". 88 // island and store it in 'head'. 89 size_t head = 0; local 90 while (head < 5) { 91 switch (old_bytes[head]) { 95 head++; 98 switch (*(unsigned short*)(old_bytes + head)) { // NOLINT 102 head += 2 [all...] |
/external/javassist/src/main/javassist/bytecode/analysis/ |
IntQueue.java | 27 private IntQueue.Entry head; field in class:IntQueue 37 if (head == null) 38 head = entry; 42 return head == null; 46 if (head == null) 49 int value = head.value; 50 head = head.next; 51 if (head == null)
|
/external/libcap-ng/libcap-ng-0.7/utils/ |
proc-llist.h | 43 /* This is the linked list head. Only data elements that are 1 per 46 lnode *head; // List head member in struct:__anon10082
|
/external/skia/legacy/src/core/ |
SkRegionPriv.h | 32 RunHead* head = (RunHead*)sk_malloc_throw(sizeof(RunHead) + count * sizeof(RunType)); local 33 head->fRefCnt = 1; 34 head->fRunCount = count; 35 return head;
|
/external/srec/seti/sltsEngine/include/ |
linklist.h | 30 struct LNode *head; member in struct:LList
|
/external/webkit/Source/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/Source/ThirdParty/ANGLE/src/compiler/preprocessor/ |
tokens.h | 60 TokenBlock *head; member in struct:TokenStream_Rec
|
/external/webkit/Source/WebCore/bindings/js/ |
ScriptProfile.cpp | 64 ScriptProfileNode* ScriptProfile::head() const function in class:WebCore::ScriptProfile 66 return m_profile->head(); 96 return buildInspectorObjectFor(m_profile->head());
|
/external/webkit/Source/WebCore/bindings/v8/ |
ScriptProfile.cpp | 58 PassRefPtr<ScriptProfileNode> ScriptProfile::head() const function in class:WebCore::ScriptProfile
|
/external/webkit/Source/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;
|
/frameworks/base/libs/hwui/ |
Extensions.cpp | 45 const char* head = current; local 48 head = strchr(current, ' '); 49 String8 s(current, head ? head - current : strlen(current)); 54 current = head + 1; 55 } while (head);
|
/frameworks/native/services/surfaceflinger/ |
GLExtensions.cpp | 54 char const* head = curr; local 56 head = strchr(curr, ' '); 57 String8 s(curr, head ? head-curr : strlen(curr)); 61 curr = head+1; 62 } while (head); 65 head = curr; 67 head = strchr(curr, ' '); 68 String8 s(curr, head ? head-curr : strlen(curr)) [all...] |
/hardware/qcom/media/mm-video/vidc/vdec/src/ |
queue.c | 45 Node *head; member in struct:Queue 55 q->head = q->tail = NULL; 91 q->head = new_node; 112 temp = q->head; 117 q->head = q->tail = NULL; 121 q->head = q->head->next;
|
/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 );
|
/bionic/libc/kernel/common/linux/ |
notifier.h | 34 struct notifier_block *head; member in struct:atomic_notifier_head 39 struct notifier_block *head; member in struct:blocking_notifier_head 42 struct notifier_block *head; member in struct:raw_notifier_head 45 #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { spin_lock_init(&(name)->lock); (name)->head = NULL; } while (0) 46 #define BLOCKING_INIT_NOTIFIER_HEAD(name) do { init_rwsem(&(name)->rwsem); (name)->head = NULL; } while (0) 47 #define RAW_INIT_NOTIFIER_HEAD(name) do { (name)->head = NULL; } while (0) 49 #define ATOMIC_NOTIFIER_INIT(name) { .lock = __SPIN_LOCK_UNLOCKED(name.lock), .head = NULL } 50 #define BLOCKING_NOTIFIER_INIT(name) { .rwsem = __RWSEM_INITIALIZER((name).rwsem), .head = NULL } 51 #define RAW_NOTIFIER_INIT(name) { .head = NULL }
|
/development/ndk/platforms/android-3/include/linux/ |
notifier.h | 26 struct notifier_block *head; member in struct:atomic_notifier_head 31 struct notifier_block *head; member in struct:blocking_notifier_head 35 struct notifier_block *head; member in struct:raw_notifier_head 38 #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { spin_lock_init(&(name)->lock); (name)->head = NULL; } while (0) 39 #define BLOCKING_INIT_NOTIFIER_HEAD(name) do { init_rwsem(&(name)->rwsem); (name)->head = NULL; } while (0) 40 #define RAW_INIT_NOTIFIER_HEAD(name) do { (name)->head = NULL; } while (0) 42 #define ATOMIC_NOTIFIER_INIT(name) { .lock = __SPIN_LOCK_UNLOCKED(name.lock), .head = NULL } 43 #define BLOCKING_NOTIFIER_INIT(name) { .rwsem = __RWSEM_INITIALIZER((name).rwsem), .head = NULL } 44 #define RAW_NOTIFIER_INIT(name) { .head = NULL }
|
/device/lge/mako/camera/QCamera/stack/mm-camera-interface/src/ |
mm_camera_data.c | 52 cam_list_init(&queue->head.list); 70 cam_list_add_tail_node(&node->list, &queue->head.list); 82 struct cam_list *head = NULL; local 86 head = &queue->head.list; 87 pos = head->next; 88 if (pos != head) { 114 struct cam_list *head = NULL; local 118 head = &queue->head.list [all...] |
/external/chromium/base/ |
linked_list.h | 19 // Next, to keep track of the list's head/tail, use a LinkedList instance: 36 // for (LinkNode<MyNodeType>* node = list.head(); 154 LinkNode<T>* head() const { function in class:base::LinkedList
|
/external/clang/test/SemaTemplate/ |
example-typelist.cpp | 7 template<typename Head, typename Tail = nil> 9 typedef Head head; typedef in struct:cons 27 template<typename Head, typename Tail> 28 struct length<cons<Head, Tail> > { 55 typedef cons<typename reversed_tail::head, 56 typename reverse<cons<typename T::head, most_of_tail> >::type> type; 59 template<typename Head> 60 class reverse<cons<Head> > { 62 typedef cons<Head> type [all...] |
/external/libsepol/src/ |
interfaces.c | 115 ocontext_t *c, *head; local 120 head = policydb->ocontexts[OCON_NETIF]; 121 for (c = head; c; c = c->next) { 140 ocontext_t *c, *head; local 145 head = policydb->ocontexts[OCON_NETIF]; 146 for (c = head; c; c = c->next) { 172 ocontext_t *head, *prev, *c, *iface = NULL; local 181 head = policydb->ocontexts[OCON_NETIF]; 182 for (c = head; c; c = c->next) { 224 ocontext_t *c, *head; local 244 ocontext_t *c, *head; local [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pat_trie_/ |
traits.hpp | 45 #include <ext/pb_ds/detail/pat_trie_/head.hpp> 118 head; typedef in struct:__gnu_pbds::detail::trie_traits 133 head, 144 head, 155 head, 166 head, 176 head, 188 head, 279 head; typedef in struct:__gnu_pbds::detail::trie_traits 294 head, [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pat_trie_/ |
traits.hpp | 45 #include <ext/pb_ds/detail/pat_trie_/head.hpp> 118 head; typedef in struct:__gnu_pbds::detail::trie_traits 133 head, 144 head, 155 head, 166 head, 176 head, 188 head, 279 head; typedef in struct:__gnu_pbds::detail::trie_traits 294 head, [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pat_trie_/ |
traits.hpp | 45 #include <ext/pb_ds/detail/pat_trie_/head.hpp> 118 head; typedef in struct:__gnu_pbds::detail::trie_traits 133 head, 144 head, 155 head, 166 head, 176 head, 188 head, 279 head; typedef in struct:__gnu_pbds::detail::trie_traits 294 head, [all...] |
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/ |
notifier.h | 26 struct notifier_block *head; member in struct:atomic_notifier_head 31 struct notifier_block *head; member in struct:blocking_notifier_head 35 struct notifier_block *head; member in struct:raw_notifier_head 38 #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { spin_lock_init(&(name)->lock); (name)->head = NULL; } while (0) 39 #define BLOCKING_INIT_NOTIFIER_HEAD(name) do { init_rwsem(&(name)->rwsem); (name)->head = NULL; } while (0) 40 #define RAW_INIT_NOTIFIER_HEAD(name) do { (name)->head = NULL; } while (0) 42 #define ATOMIC_NOTIFIER_INIT(name) { .lock = __SPIN_LOCK_UNLOCKED(name.lock), .head = NULL } 43 #define BLOCKING_NOTIFIER_INIT(name) { .rwsem = __RWSEM_INITIALIZER((name).rwsem), .head = NULL } 44 #define RAW_NOTIFIER_INIT(name) { .head = NULL }
|