HomeSort by relevance Sort by last modified time
    Searched defs:tail (Results 26 - 50 of 778) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/runtime/
memmove_plan9_amd64.s 38 tail: label
66 JMP tail
101 JMP tail
  /system/netd/libnetdutils/
Netlink.cpp 28 Slice tail = buf; local
29 while (tail.size() >= sizeof(nlmsghdr)) {
31 extract(tail, hdr);
33 onMsg(hdr, drop(take(tail, len), sizeof(hdr)));
34 tail = drop(tail, align(len, 2));
40 Slice tail = buf; local
41 while (tail.size() >= sizeof(nlattr)) {
43 extract(tail, hdr);
45 onAttr(hdr, drop(take(tail, len), sizeof(hdr)))
    [all...]
Slice.cpp 39 Slice tail = s; local
42 while (!tail.empty()) {
44 extract(tail, byte);
49 tail = drop(tail, 1);
  /toolchain/binutils/binutils-2.27/gprof/
search_list.h 44 struct search_list_elem *tail;
43 struct search_list_elem *tail; member in struct:__anon4496
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
slist.cpp 63 SListNode *p, *tail=NULL; local
71 head = tail = p;
75 tail->setNext(p);
76 tail = p;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
slist.cpp 62 SListNode *p, *tail=NULL; local
70 head = tail = p;
74 tail->setNext(p);
75 tail = p;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRUnbufferedCommonTreeNodeStream.h 56 NSUInteger tail; variable
72 @property (assign, getter=getTail, setter=setTail:) NSUInteger tail; variable
  /external/curl/lib/
llist.h 38 struct curl_llist_element *tail; member in struct:curl_llist
  /external/e2fsprogs/contrib/android/
block_list.c 15 struct block_range *tail; member in struct:block_list::__anon19010
40 params->entry.head = params->entry.tail = NULL;
51 add_blocks_to_range(&params->entry.head, &params->entry.tail,
  /external/fio/crc/
murmur3.c 26 const uint8_t *tail = (const uint8_t *)(data + nblocks * 4); local
31 k1 ^= tail[2] << 16;
33 k1 ^= tail[1] << 8;
35 k1 ^= tail[0];
  /external/fio/lib/
flist_sort.c 18 struct flist_head head, *tail = &head; local
23 tail->next = a;
26 tail->next = b;
29 tail = tail->next;
31 tail->next = a?:b;
48 struct flist_head *tail = head; local
53 tail->next = a;
54 a->prev = tail;
57 tail->next = b
    [all...]
  /external/iproute2/tc/
f_fw.c 46 struct rtattr *tail; local
71 tail = NLMSG_TAIL(n);
123 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
f_route.c 40 struct rtattr *tail; local
54 tail = NLMSG_TAIL(n);
132 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
f_tcindex.c 29 struct rtattr *tail; local
40 tail = NLMSG_TAIL(n);
116 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
m_connmark.c 52 struct rtattr *tail; local
98 tail = NLMSG_TAIL(n);
101 tail->rta_len = (char *)NLMSG_TAIL(n) - (char *)tail;
m_gact.c 86 struct rtattr *tail; local
148 tail = NLMSG_TAIL(n);
156 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
m_simple.c 104 struct rtattr *tail; local
150 tail = NLMSG_TAIL(n);
155 tail->rta_len = (char *)NLMSG_TAIL(n) - (char *)tail;
q_codel.c 69 struct rtattr *tail; local
111 tail = NLMSG_TAIL(n);
125 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
q_drr.c 55 struct rtattr *tail; local
58 tail = NLMSG_TAIL(n);
80 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *)tail;
q_dsmark.c 31 struct rtattr *tail; local
67 tail = NLMSG_TAIL(n);
76 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
90 struct rtattr *tail; local
94 tail = NLMSG_TAIL(n);
120 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
q_hhf.c 38 struct rtattr *tail; local
94 tail = NLMSG_TAIL(n);
116 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
q_sfb.c 62 struct rtattr *tail; local
136 tail = NLMSG_TAIL(n);
139 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
  /external/javassist/src/main/javassist/bytecode/analysis/
IntQueue.java 29 private IntQueue.Entry tail; field in class:IntQueue
33 if (tail != null)
34 tail.next = entry;
35 tail = entry;
52 tail = null;
  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/
trace.h 28 void *tail; member in struct:trace_buffer
  /external/mesa3d/src/compiler/nir/
nir_lower_clip_cull_distance_arrays.c 112 nir_deref *tail = nir_deref_tail(&intrin->variables[0]->deref); local
113 nir_deref_array *array_ref = nir_deref_as_array(tail);

Completed in 1770 milliseconds

12 3 4 5 6 7 8 91011>>