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

1 2

  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/compiler-rt/include/xray/
xray_interface.h 25 TAIL = 2,
  /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/clang/5.0.1/include/xray/
xray_interface.h 27 TAIL = 2,
  /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/clang/5.0.2/include/xray/
xray_interface.h 27 TAIL = 2,
  /prebuilts/clang/host/darwin-x86/clang-4579689/lib64/clang/6.0.1/include/xray/
xray_interface.h 27 TAIL = 2,
  /prebuilts/clang/host/darwin-x86/clang-4630689/lib64/clang/6.0.1/include/xray/
xray_interface.h 27 TAIL = 2,
  /prebuilts/clang/host/darwin-x86/clang-4639204/lib64/clang/6.0.1/include/xray/
xray_interface.h 27 TAIL = 2,
  /prebuilts/clang/host/darwin-x86/clang-4691093/lib64/clang/6.0.2/include/xray/
xray_interface.h 27 TAIL = 2,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/compiler-rt/include/xray/
xray_interface.h 25 TAIL = 2,
  /prebuilts/clang/host/linux-x86/clang-4393122/lib64/clang/5.0.1/include/xray/
xray_interface.h 27 TAIL = 2,
  /prebuilts/clang/host/linux-x86/clang-4479392/lib64/clang/5.0.2/include/xray/
xray_interface.h 27 TAIL = 2,
  /prebuilts/clang/host/linux-x86/clang-4579689/lib64/clang/6.0.1/include/xray/
xray_interface.h 27 TAIL = 2,
  /prebuilts/clang/host/linux-x86/clang-4630689/lib64/clang/6.0.1/include/xray/
xray_interface.h 27 TAIL = 2,
  /prebuilts/clang/host/linux-x86/clang-4639204/lib64/clang/6.0.1/include/xray/
xray_interface.h 27 TAIL = 2,
  /prebuilts/clang/host/linux-x86/clang-4691093/lib64/clang/6.0.2/include/xray/
xray_interface.h 27 TAIL = 2,
  /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...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL, LOG_ARGS_ENTER, CUSTOM_EVENT };
108 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL, LOG_ARGS_ENTER, CUSTOM_EVENT };
108 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL, LOG_ARGS_ENTER, CUSTOM_EVENT };
108 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL, LOG_ARGS_ENTER, CUSTOM_EVENT };
108 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL, LOG_ARGS_ENTER, CUSTOM_EVENT };
108 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL, LOG_ARGS_ENTER, CUSTOM_EVENT };
108 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL, LOG_ARGS_ENTER, CUSTOM_EVENT };
108 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/XRay/
InstrumentationMap.h 41 enum class FunctionKinds { ENTRY, EXIT, TAIL, LOG_ARGS_ENTER, CUSTOM_EVENT };
108 IO.enumCase(Kind, "tail-exit", xray::SledEntry::FunctionKinds::TAIL);
  /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...]
  /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...]

Completed in 1337 milliseconds

1 2