HomeSort by relevance Sort by last modified time
    Searched refs:TAIL (Results 1 - 25 of 40) sorted by null

1 2

  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/compiler-rt/include/xray/
xray_interface.h 25 TAIL = 2,
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/compiler-rt/include/xray/
xray_interface.h 25 TAIL = 2,
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/compiler-rt/include/xray/
xray_interface.h 25 TAIL = 2,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/compiler-rt/include/xray/
xray_interface.h 25 TAIL = 2,
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/compiler-rt/include/xray/
xray_interface.h 25 TAIL = 2,
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/compiler-rt/include/xray/
xray_interface.h 25 TAIL = 2,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/compiler-rt/include/xray/
xray_interface.h 25 TAIL = 2,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/compiler-rt/include/xray/
xray_interface.h 25 TAIL = 2,
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
encodings.h 127 #define TAIL() COPY(); TRANS(0x70)
138 case 2: TAIL(); return result;
139 case 3: TAIL(); TAIL(); return result;
140 case 4: COPY(); TRANS(0x50); TAIL(); return result;
141 case 5: COPY(); TRANS(0x10); TAIL(); TAIL(); return result;
142 case 6: TAIL(); TAIL(); TAIL(); return result;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL };
107 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL };
107 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL };
107 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL };
107 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL };
107 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL };
107 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL };
107 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL };
107 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /external/pcre/pcrecpp/include/
pcrecpparg.h 183 template<typename HEAD, typename ... TAIL>
184 struct Args<HEAD, TAIL...> {
185 typedef Args<TAIL...> next;
190 inline static void arrayify(Arg * ptr, _HEAD && head, _TAIL && ... tail) {
192 next::arrayify(ptr, tail...);
  /bionic/libc/upstream-netbsd/lib/libc/include/isc/
list.h 24 #define LIST(type) struct { type *head, *tail; }
26 do { (list).head = NULL; (list).tail = NULL; } while (/*CONSTCOND*/0)
40 #define TAIL(list) ((list).tail)
49 (list).tail = (elt); \
58 if ((list).tail != NULL) \
59 (list).tail->link.next = (elt); \
62 (elt)->link.prev = (list).tail; \
64 (list).tail = (elt); \
73 INSIST((list).tail == (elt));
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 58 * The <em>tail</em> of the queue is that element that has been on the
60 * are inserted at the tail of the queue, and the queue retrieval
126 * reached in O(1) time from tail, but tail is merely an
150 * Both head and tail are permitted to lag. In fact, failing to
154 * that is, we update head/tail when the current pointer appears
157 * Since head and tail are updated concurrently and independently,
158 * it is possible for tail to lag behind head (why not)?
173 * Both head and tail may or may not point to a Node with a
175 * be null. Upon creation, both head and tail refer to a dumm
234 private transient volatile Node<E> tail; field in class:ConcurrentLinkedQueue
    [all...]
SynchronousQueue.java 150 * cancelled. But if it may be pinned as the current tail, it must
596 /** Tail of queue */
597 transient volatile QNode tail; field in class:SynchronousQueue.TransferQueue
608 tail = h;
622 * Tries to cas nt as new tail.
625 if (tail == t)
626 U.compareAndSwapObject(this, TAIL, t, nt);
655 * advance head and tail on behalf of other stalled/slow
659 * seeing uninitialized head or tail values. This never
671 QNode t = tail;
    [all...]
ConcurrentLinkedDeque.java 148 * The deque object has two node references, "head" and "tail".
149 * The head and tail are only approximations to the first and last
151 * following prev pointers from head; likewise for tail. However,
152 * it is permissible for head and tail to be referring to deleted
184 * head or tail.
203 * the nodes pointed at by head/tail never get gc-unlinked, since
204 * head/tail are needed to get "back on track" by other nodes that
227 * restart traversal from tail.
261 * - head may not be reachable from the first or last node, or from tail
269 * - the last node is always O(1) reachable from tail via next link
277 private transient volatile Node<E> tail; field in class:ConcurrentLinkedDeque
    [all...]
LinkedTransferQueue.java 58 * producer. The <em>tail</em> of the queue is that element that has
114 * (unmatched) queue node (or null if empty); and "tail" that
119 * head tail
126 * tail pointers. This has led to the development of
162 * updates on head/tail fields.
165 * never versus always updating queue (head and tail) pointers.
172 * head tail
179 * similarly for "tail") is an empirical matter. We have found
186 * virtue of only sometimes updating head or tail pointers when
211 * known first unmatched node, and similarly for tail. Again, thi
563 private transient volatile Node tail; field in class:LinkedTransferQueue
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 89 * Tail of the wait queue, lazily initialized. Modified only via
92 private transient volatile Node tail; field in class:AbstractQueuedLongSynchronizer
150 Node oldTail = tail;
173 Node oldTail = tail;
217 * traverse backwards from tail to find the actual
223 for (Node p = tail; p != node && p != null; p = p.prev)
250 if (h != null && h != tail) {
330 // If we are the tail, remove ourselves.
331 if (node == tail && compareAndSetTail(node, pred)) {
    [all...]
AbstractQueuedSynchronizer.java 320 * tail. To dequeue, you just set the head field.
323 * head | | <---- | | <---- | | tail
328 * operation on "tail", so there is a simple atomic point of
349 * updated "tail" when a node's successor appears to be null.
364 * is constructed and head and tail pointers are set upon first
455 * to be null, we can scan prev's from the tail to
557 * Tail of the wait queue, lazily initialized. Modified only via
560 private transient volatile Node tail; field in class:AbstractQueuedSynchronizer
616 Node oldTail = tail;
639 Node oldTail = tail;
    [all...]

Completed in 1647 milliseconds

1 2