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

1 2 3 4 56 7 8 91011>>

  /external/syslinux/gpxe/src/core/
exec.c 103 char *tail; local
130 tail = ( end + 1 );
148 head, setting_buf, tail );
  /external/syslinux/gpxe/src/include/gpxe/
iobuf.h 57 void *tail; member in struct:io_buffer
71 iobuf->tail += len;
77 assert ( (iobuf)->tail <= (iobuf)->end ); \
106 assert ( iobuf->data <= iobuf->tail );
112 assert ( (iobuf)->data <= (iobuf)->tail ); \
123 void *old_tail = iobuf->tail;
124 iobuf->tail += len;
130 assert ( (iobuf)->tail <= (iobuf)->end ); \
140 iobuf->tail -= len;
144 assert ( (iobuf)->tail >= (iobuf)->data );
    [all...]
  /external/tensorflow/tensorflow/core/grappler/
utils_test.cc 223 // We walk backwards, starting as "id1", so tail should be "neg1".
224 NodeDef* tail = GetTailOfChain(graph.node(5), node_map, local
226 EXPECT_NE(tail, nullptr);
227 EXPECT_EQ("neg1", tail->name());
229 // We stop at branching nodes, so tail should be "neg2".
233 tail =
236 EXPECT_NE(tail, nullptr);
237 EXPECT_EQ("neg2", tail->name());
240 // so tail should be "neg0".
241 tail = GetTailOfChain(graph.node(7), node_map
    [all...]
  /external/v8/src/heap/
objects-visiting.cc 236 T* tail = NULL; local
251 DCHECK(tail != NULL);
252 WeakListVisitor<T>::SetWeakNext(tail, retained);
255 HeapObject::RawField(tail, WeakListVisitor<T>::WeakNextOffset());
256 collector->RecordSlot(tail, next_slot, retained);
259 // Retained object is new tail.
262 tail = candidate;
264 // tail is a live object, visit it.
265 WeakListVisitor<T>::VisitLiveObject(heap, tail, retainer);
276 if (tail != NULL) WeakListVisitor<T>::SetWeakNext(tail, undefined)
    [all...]
  /external/valgrind/coregrind/m_scheduler/
ticket-lock-linux.c 60 volatile unsigned tail; member in struct:sched_lock
104 * Acquire ticket lock. Increment the tail of the queue and use the original
120 ticket = __sync_fetch_and_add(&p->tail, 1);
151 * a thread wakeup signal if at least one thread is waiting. If the queue tail
154 * Note: tail will only be read after head has been incremented since both are
168 if (p->tail != wakeup_ticket) {
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
UnboundedFifoByteBuffer.java 59 protected int tail; field in class:UnboundedFifoByteBuffer
86 tail = 0;
97 if (tail < head) {
98 size = buffer.length - head + tail;
100 size = tail - head;
127 for (int i = head; i != tail;) {
140 tail = j;
143 buffer[tail] = b;
144 tail++;
145 if (tail >= buffer.length)
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
asm_arm64.s 242 // Using a tail call here cleans up tracebacks since we won't stop
867 CBNZ R6, tail
892 BHS tail
903 tail: label
956 BLO tail
982 CBZ R3, tail
996 tail: label
997 // special compare of tail with length < 16
memmove_amd64.s 40 tail: label
104 JMP tail
138 JMP tail
283 JMP tail
307 // | Head | Body | Tail |
311 // Save head into Y4 Save tail into X5..X12
315 // 1. Unaligned save of the tail's 128 bytes
319 // 5. Put the tail on the new place
335 // Continue tail saving.
341 // Continue tail saving
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
asm_arm64.s 242 // Using a tail call here cleans up tracebacks since we won't stop
867 CBNZ R6, tail
892 BHS tail
903 tail: label
956 BLO tail
982 CBZ R3, tail
996 tail: label
997 // special compare of tail with length < 16
memmove_amd64.s 40 tail: label
104 JMP tail
138 JMP tail
283 JMP tail
307 // | Head | Body | Tail |
311 // Save head into Y4 Save tail into X5..X12
315 // 1. Unaligned save of the tail's 128 bytes
319 // 5. Put the tail on the new place
335 // Continue tail saving.
341 // Continue tail saving
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
basic_block.h 56 // Otherwise return null. May be used whenever tail() can be used.
60 // Otherwise return null. May be used whenever tail() can be used.
79 iterator tail() { function in class:spvtools::ir::BasicBlock
83 // Returns a const iterator, but othewrise similar to tail().
  /tools/loganalysis/src/com/android/loganalysis/util/
LogTailUtil.java 61 * @param lastTailSize the number of lines to retrieve when getting the last tail
62 * @param idTailSize the number of lines to retrieve when getting the id tail
102 List<String> tail = new LinkedList<String>(); local
104 tail.add(line.mLine);
106 return ArrayUtil.join("\n", tail).trim();
127 LinkedList<String> tail = new LinkedList<String>(); local
129 while (li.hasPrevious() && tail.size() < size) {
133 tail.addFirst(line.mLine);
136 return ArrayUtil.join("\n", tail).trim();
  /bionic/libc/kernel/uapi/rdma/
bnxt_re-abi.h 42 __u32 tail; member in struct:bnxt_re_cq_resp
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_LinkerNamespacesTest.cpp 101 std::string tail = '/' + baselib; local
102 if (!android::base::EndsWith(path, tail)) return false;
103 return library_search_paths.count(path.substr(0, path.size() - tail.size())) > 0;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
traceback.c 133 /* Search tail of filename in sys.path before giving up */
135 const char *tail = strrchr(filename, SEP); local
136 if (tail == NULL)
137 tail = filename;
139 tail++;
144 size_t taillen = strlen(tail);
161 strcpy(namebuf+len, tail);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
traceback.c 133 /* Search tail of filename in sys.path before giving up */
135 const char *tail = strrchr(filename, SEP); local
136 if (tail == NULL)
137 tail = filename;
139 tail++;
144 size_t taillen = strlen(tail);
161 strcpy(namebuf+len, tail);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
pred.c 158 Predicate *a, *head=NULL, *tail=NULL, *root=NULL; local
178 head = tail = a;
182 tail->right = a;
183 a->left = tail;
184 a->up = tail->up;
185 tail = a;
  /external/ImageMagick/MagickCore/
linked-list.c 77 *tail,
134 list_info->tail->next=next;
135 list_info->tail=next;
190 list_info->tail=(ElementInfo *) NULL;
282 value=list_info->tail->value;
412 value=list_info->tail->value;
479 list_info->tail=next;
495 list_info->tail->next=next;
496 list_info->tail=next;
610 list_info->tail=next;
75 *tail, member in struct:_LinkedListInfo
    [all...]
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 949 inline SegmentReturnType tail(Index n) function
957 inline ConstSegmentReturnType tail(Index n) const function
1045 inline typename FixedSegmentReturnType<N>::Type tail(Index n = N) function
1054 inline typename ConstFixedSegmentReturnType<N>::Type tail(Index n = N) const function
    [all...]
  /external/fio/
steadystate.h 24 unsigned int tail; member in struct:steadystate_data
  /external/icu/icu4c/source/common/
ulist.cpp 29 UListNode *tail; member in struct:UList
51 newList->tail = NULL;
65 list->tail = newItem;
76 // p is the list tail.
77 list->tail = p->previous;
116 newItem->previous = list->tail;
117 list->tail->next = newItem;
118 list->tail = newItem;
  /external/iproute2/tc/
m_ife.c 61 struct rtattr *tail; local
181 tail = NLMSG_TAIL(n);
222 tail->rta_len = (void *)NLMSG_TAIL(n) - (void *)tail;
m_tunnel_key.c 90 struct rtattr *tail; local
101 tail = NLMSG_TAIL(n);
199 tail->rta_len = (char *)NLMSG_TAIL(n) - (char *)tail;
m_xt.c 153 struct rtattr *tail; local
268 tail = NLMSG_TAIL(n);
294 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
q_cbq.c 60 struct rtattr *tail; local
164 tail = NLMSG_TAIL(n);
176 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
195 struct rtattr *tail; local
408 tail = NLMSG_TAIL(n);
429 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;

Completed in 484 milliseconds

1 2 3 4 56 7 8 91011>>