HomeSort by relevance Sort by last modified time
    Searched refs:head (Results 551 - 575 of 3044) sorted by null

<<21222324252627282930>>

  /external/libnl/include/netlink/
msg.h 130 * @arg head head of message stream
133 #define nlmsg_for_each(pos, head, len) \
134 for (int rem = len, pos = head; \
138 #define nlmsg_for_each_msg(pos, head, len, rem) \
139 nlmsg_for_each(pos, head, len)
  /external/mesa3d/src/gallium/drivers/swr/
swr_fence_work.cpp 38 if (fence->work.head.next) {
39 work = fence->work.head.next;
40 /* Immediately clear the head so any new work gets added to a new work
42 p_atomic_set(&fence->work.head.next, 0);
43 p_atomic_set(&fence->work.tail, &fence->work.head);
  /external/zopfli/src/zopfli/
hash.h 30 int* head; /* Hash value to index of its most recent occurance. */ member in struct:ZopfliHash
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/inc/
IPACM_IfaceManager.h 86 static iface_instances *head; member in class:IPACM_IfaceManager
  /prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/asm/
sigcontext.h 40 struct _aarch64_ctx head; member in struct:fpsimd_context
  /prebuilts/ndk/r10/platforms/android-23/arch-arm64/usr/include/asm/
sigcontext.h 40 struct _aarch64_ctx head; member in struct:fpsimd_context
  /prebuilts/ndk/r11/platforms/android-21/arch-arm64/usr/include/asm/
sigcontext.h 40 struct _aarch64_ctx head; member in struct:fpsimd_context
  /prebuilts/ndk/r11/platforms/android-23/arch-arm64/usr/include/asm/
sigcontext.h 40 struct _aarch64_ctx head; member in struct:fpsimd_context
  /prebuilts/ndk/r11/platforms/android-24/arch-arm64/usr/include/asm/
sigcontext.h 40 struct _aarch64_ctx head; member in struct:fpsimd_context
  /external/tremolo/Tremolo/
bitwise.c 136 if(b->bitsLeftInSegment<0) ret = b->count+b->head->length;
137 else ret = b->count + b->head->length - (b->bitsLeftInSegment)/8;
139 // b->count, b->head->length, b->bitsLeftInSegment);
146 if(b->bitsLeftInSegment<0) ret=(b->count+b->head->length)*8;
147 else ret = b->count*8 + b->head->length*8 - b->bitsLeftInSegment;
149 // b->count, b->head->length, b->bitsLeftInSegment);
166 if(b->head && b->head->next){
167 b->count+=b->head->length;
168 b->head=b->head->next
227 ogg_reference *head=b->head; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/
struct.py 11 def __init__(self, name, head, members):
13 self.head = head
32 pyhead.endswith("HEAD"))
structparse.py 11 def __init__(self, name, head, members):
13 self.head = head
26 pyhead.endswith("HEAD"))
  /external/guava/guava-tests/benchmark/com/google/common/cache/
ChainBenchmark.java 35 private ReferenceEntry<Object, Object> head; field in class:ChainBenchmark
49 head = chain;
57 segment.removeEntryFromChain(chain, head);
  /external/libnetfilter_conntrack/src/conntrack/
grp_setter.c 43 ct->head.orig.src.v4 = this->src;
44 ct->head.orig.dst.v4 = this->dst;
45 ct->head.orig.l3protonum = AF_INET;
59 memcpy(&ct->head.orig.src.v6, this->src, sizeof(uint32_t)*4);
60 memcpy(&ct->head.orig.dst.v6, this->dst, sizeof(uint32_t)*4);
61 ct->head.orig.l3protonum = AF_INET6;
75 ct->head.orig.l4src.all = this->sport;
76 ct->head.orig.l4dst.all = this->dport;
91 ct->head.orig.l4dst.icmp.type = this->type;
93 switch(ct->head.orig.l3protonum)
    [all...]
  /external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/include/linux/
types.h 144 void (*func)(struct callback_head *head);
148 typedef void (*rcu_callback_t)(struct rcu_head *head);
149 typedef void (*call_rcu_func_t)(struct rcu_head *head, rcu_callback_t func);
  /external/ltp/testcases/kernel/syscalls/set_robust_list/
set_robust_list01.c 82 struct robust_list_head head; local
103 TEST(retval = syscall(__NR_set_robust_list, &head, -1));
127 TEST(retval = syscall(__NR_set_robust_list, &head, len));
  /external/okhttp/okio/okio/src/main/java/okio/
Okio.java 74 Segment head = source.head; local
75 int toCopy = (int) Math.min(byteCount, head.limit - head.pos);
76 out.write(head.data, head.pos, toCopy);
78 head.pos += toCopy;
82 if (head.pos == head.limit) {
83 source.head = head.pop()
    [all...]
  /external/python/cpython2/Tools/framer/framer/
struct.py 11 def __init__(self, name, head, members):
13 self.head = head
32 pyhead.endswith("HEAD"))
structparse.py 11 def __init__(self, name, head, members):
13 self.head = head
26 pyhead.endswith("HEAD"))
  /external/selinux/libsepol/cil/src/
cil_list.c 50 new_list->head = NULL;
62 struct cil_list_item *item = (*list)->head;
111 list->head = item;
133 list->head = item;
138 item->next = list->head;
139 list->head = item;
153 return list->head;
188 list->head = item;
215 list->head = item;
220 last->next = list->head;
    [all...]
  /external/syslinux/core/mem/
free.c 18 struct free_arena_header *head = local
42 ah->next_free = head->next_free;
43 ah->prev_free = head;
44 head->next_free = ah;
109 struct free_arena_header *head = local
117 ARENA_HEAP_GET(ah->a.attrs), head);
121 for (nah = head->a.next ; nah != head ; nah = nah->a.next) {
154 struct free_arena_header *fp, *head; local
161 head = &__core_malloc_head[i]
    [all...]
  /frameworks/native/libs/vr/libbroadcastring/include/libbroadcastring/
broadcast_ring.h 270 return std::atomic_load_explicit(&header_mmap()->head,
305 // (2) Acquire Fence between record access & final load of |head|
309 // PutRecordInternal(), then the store of |head| in the Reserve() that
310 // preceeded it happens-before our final load of |head|.
318 uint32_t head = std::atomic_load_explicit(&header_mmap()->head, local
321 if (tail - head > record_count())
324 if (*sequence - head > tail - head)
325 *sequence = head; // Out of window, skip forward to first available
402 std::atomic<uint32_t> head; member in struct:android::dvr::BroadcastRing::Header
432 uint32_t head; member in struct:android::dvr::BroadcastRing::Geometry
    [all...]
  /external/v8/tools/
profile_view.js 49 var head;
56 if (viewParent === head) {
62 var viewNode = createViewNode(node.label, totalWeight, selfWeight, head);
66 head = viewNode;
70 var view = this.createView(head);
78 * @param {ProfileView.Node} head View head node.
81 ViewBuilder.prototype.createView = function(head) {
82 return new ProfileView(head);
95 * @param {ProfileView.Node} head Profile view head
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
posixpath.py 75 # Split a path in head (everything up to the last '/') and tail (the
77 # '/' in the path, head will be empty.
78 # Trailing '/'es are stripped from head unless it is the root.
81 """Split a pathname. Returns tuple "(head, tail)" where "tail" is
84 head, tail = p[:i], p[i:]
85 if head and head != '/'*len(head):
86 head = head.rstrip('/')
    [all...]
  /external/python/cpython2/Lib/
posixpath.py 77 # Split a path in head (everything up to the last '/') and tail (the
79 # '/' in the path, head will be empty.
80 # Trailing '/'es are stripped from head unless it is the root.
83 """Split a pathname. Returns tuple "(head, tail)" where "tail" is
86 head, tail = p[:i], p[i:]
87 if head and head != '/'*len(head):
88 head = head.rstrip('/'
    [all...]

Completed in 547 milliseconds

<<21222324252627282930>>