HomeSort by relevance Sort by last modified time
    Searched defs:head (Results 151 - 175 of 818) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/9/platforms/android-8/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 }
  /prebuilts/ndk/9/platforms/android-9/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 }
  /prebuilts/ndk/9/platforms/android-9/arch-mips/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 }
  /prebuilts/ndk/9/platforms/android-9/arch-x86/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 }
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/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...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
FastQueue.java 72 public T head() { return elementAt(0); } method in class:FastQueue
  /external/arduino/hardware/arduino/cores/arduino/
HardwareSerial.cpp 49 int head; member in struct:ring_buffer
68 int i = (unsigned int)(rx_buffer->head + 1) % RX_BUFFER_SIZE;
71 // just before the tail (meaning that the head would advance to the
73 // and so we don't write the character or advance the head.
75 rx_buffer->buffer[rx_buffer->head] = c;
76 rx_buffer->head = i;
234 return (unsigned int)(RX_BUFFER_SIZE + _rx_buffer->head - _rx_buffer->tail) % RX_BUFFER_SIZE;
239 if (_rx_buffer->head == _rx_buffer->tail) {
248 // if the head isn't ahead of the tail, we don't have any characters
249 if (_rx_buffer->head == _rx_buffer->tail)
    [all...]
  /external/blktrace/btt/
misc.c 35 struct list_head head; member in struct:file_info
41 struct list_head head; member in struct:buf_info
54 struct file_info *fip = list_entry(p, struct file_info, head);
60 list_del(&fip->head);
71 struct buf_info *bip = list_entry(p, struct buf_info, head);
73 list_del(&bip->head);
124 list_add_tail(&fip->head, &files_to_clean);
132 list_add_tail(&bip->head, &all_bufs);
  /external/chromium/chrome/common/extensions/docs/server/
chromeextensionsdocs.py 91 def head(self): member in class:MainPage
  /external/chromium/webkit/glue/
dom_operations.cc 317 WebElement head = document->head(); local
318 if (head.isNull() || !head.hasChildNodes())
321 WebNodeList children = head.childNodes();
  /external/chromium_org/crypto/
rsa_private_key_nss.cc 154 SECMODModuleList* head = SECMOD_GetDefaultModuleList(); local
155 for (SECMODModuleList* item = head; item != NULL; item = item->next) {
  /external/chromium_org/net/websockets/
websocket_extension_parser.cc 79 const char* head = current_; local
83 if (current_ == head) {
87 *token = base::StringPiece(head, current_ - head);
125 const char* head = current_; local
129 current_ = head;
136 const char* head = current_; local
140 current_ = head;
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-head-table.hh 39 * head -- Font Header
44 struct head struct in namespace:OT
50 /* If no valid head table found, assume 1000, which matches typical Type1 usage. */
60 FixedVersion version; /* Version of the head table--currently
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_screen.h 31 struct nouveau_fence *head; member in struct:nouveau_screen::__anon12654
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_resource_buffer.h 176 * Linked list head, used to gather all buffers with pending dma uploads on
179 struct list_head head; member in struct:svga_buffer
svga_screen_cache.h 74 * Head for the LRU list, svga_host_surface_cache::unused, and
77 struct list_head head; member in struct:svga_host_surface_cache_entry
79 /** Head for the bucket lists. */
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/common/
dri_drawable.h 64 unsigned int head; member in struct:dri_drawable
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_wbmp.cpp 105 wbmp_head head; local
107 if (!head.init(stream)) {
111 int width = head.fWidth;
112 int height = head.fHeight;
156 wbmp_head head; local
158 if (head.init(stream)) {
165 wbmp_head head; local
166 if (head.init(stream)) {
  /external/chromium_org/third_party/tcmalloc/chromium/src/
central_freelist.h 87 void *head; // Head of chain of objects. member in struct:tcmalloc::CentralFreeList::TCEntry
  /external/chromium_org/third_party/tcmalloc/vendor/src/
central_freelist.h 87 void *head; // Head of chain of objects. member in struct:tcmalloc::CentralFreeList::TCEntry
  /external/chromium_org/tools/json_to_struct/
json_to_struct.py 66 HEAD = """// Copyright %d The Chromium Authors. All rights reserved.
83 def _GenerateH(basepath, fileroot, head, namespace, schema, description):
91 head: The string to output as the header of the .h file.
100 f.write(head)
136 def _GenerateCC(basepath, fileroot, head, namespace, schema, description):
144 head: The string to output as the header of the .cc file.
152 f.write(head)
209 head = HEAD % (datetime.now().year, opts.schema, description_filename) variable
210 _GenerateH(basepath, output_root, head, opts.namespace, schema, description
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-head-table.hh 39 * head -- Font Header
44 struct head struct in namespace:OT
50 /* If no valid head table found, assume 1000, which matches typical Type1 usage. */
60 FixedVersion version; /* Version of the head table--currently
  /external/libsepol/src/
nodes.c 152 ocontext_t *c, *head; local
155 head = policydb->ocontexts[OCON_NODE];
156 for (c = head; c != NULL; c = c->next)
159 head = policydb->ocontexts[OCON_NODE6];
160 for (c = head; c != NULL; c = c->next)
176 ocontext_t *c, *head; local
186 head = policydb->ocontexts[OCON_NODE];
187 for (c = head; c; c = c->next) {
202 head = policydb->ocontexts[OCON_NODE6];
203 for (c = head; c; c = c->next)
236 ocontext_t *c, *head; local
352 ocontext_t *c, *head; local
    [all...]
ports.c 148 ocontext_t *c, *head; local
151 head = policydb->ocontexts[OCON_PORT];
152 for (c = head; c != NULL; c = c->next)
168 ocontext_t *c, *head; local
178 head = policydb->ocontexts[OCON_PORT];
179 for (c = head; c; c = c->next) {
206 ocontext_t *c, *head; local
216 head = policydb->ocontexts[OCON_PORT];
217 for (c = head; c; c = c->next) {
283 ocontext_t *c, *head; local
    [all...]
  /external/linux-tools-perf/
perf.h 137 int head = pc->data_head; local
139 return head;

Completed in 389 milliseconds

1 2 3 4 5 67 8 91011>>