HomeSort by relevance Sort by last modified time
    Searched defs:Last (Results 51 - 75 of 106) sorted by null

1 23 4 5

  /external/llvm/lib/ProfileData/Coverage/
CoverageMapping.cpp 419 auto Last = std::unique(Filenames.begin(), Filenames.end());
420 Filenames.erase(Last, Filenames.end());
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6ConfigNv.c 596 BOOLEAN Last;
615 Last = FALSE;
625 Last = TRUE;
654 if (Last) {
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
XenStore.c 956 LIST_ENTRY *Last = NULL;
962 Last == GetFirstNode (&xs.WatchEvents)) {
972 Entry != Last && !IsNull (&xs.WatchEvents, Entry);
983 Last = GetFirstNode (&xs.WatchEvents);
    [all...]
  /external/clang/test/SemaCXX/
enum-scoped.cpp 180 Enum() : m_e(E::Last) {}
184 enum eCOLORS { Last };
  /external/llvm/include/llvm/CodeGen/
DIE.h 425 Node *Last = nullptr;
427 bool empty() const { return !Last; }
432 if (Last) {
433 N.Next = Last->Next;
434 Last->Next.setPointerAndInt(&N, false);
436 Last = &N;
444 T &back() { return *static_cast<T *>(Last); }
445 const T &back() const { return *static_cast<T *>(Last); }
493 return Last ? iterator(static_cast<T *>(Last->Next.getPointer())) : end()
    [all...]
  /external/llvm/tools/llvm-c-test/
echo.cpp 694 LLVMValueRef Last = LLVMGetLastInstruction(Src);
697 if (Last != nullptr)
698 report_fatal_error("Has no first instruction, but last one");
712 if (Cur != Last)
713 report_fatal_error("Final instruction does not match Last");
734 LLVMBasicBlockRef Last = LLVMGetLastBasicBlock(Src);
743 if (Cur != Last)
744 report_fatal_error("Final basic block does not match Last");
827 report_fatal_error("Last function does not match End");
914 report_fatal_error("Last function does not match End")
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
ilist.h 118 ilist_iterator<NodeTy> /*last*/) {}
307 /// of the first node in the list always points to the last node in the list,
470 // [first, last) into position.
472 void transfer(iterator position, iplist &L2, iterator first, iterator last) {
473 assert(first != last && "Should be checked by callers");
475 if (position != last) {
483 // Remove [first, last) from its old position.
485 NodeTy *Next = last.getNodePtrUnchecked(), *Last = this->getPrev(Next);
492 // Splice [first, last) into its new position
557 iterator last = first; ++last; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 251 First(F), Last(L), SValue(SV), HeaderBB(H), Emitted(E) {}
253 APInt Last;
421 /// references that ned to refer to the last resulting block.
422 void UpdateSplitBlock(MachineBasicBlock *First, MachineBasicBlock *Last);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
SplitKit.cpp 90 // If CurLI is live into a landing pad successor, move the last split point
181 // This block has uses. Find the first and last uses in the block.
491 SlotIndex Last = End.getPrevSlot();
492 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
493 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
499 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
780 SlotIndex Last = LIS.getMBBEndIdx(Dom.first).getPrevSlot();
782 defFromParent(0, ParentVNI, Last, *Dom.first,
888 // This block needs a live-in value. The last block covered may not
    [all...]
  /frameworks/native/libs/binder/tests/
binderSafeInterfaceTest.cpp 166 Last,
197 EXPECT_LT(code, static_cast<uint32_t>(ICallback::Tag::Last));
203 case ICallback::Tag::Last:
233 Last,
488 EXPECT_LT(code, static_cast<uint32_t>(Tag::Last));
563 case ISafeInterfaceTest::Tag::Last:
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/
Serial.h 55 // Last UINT32: The index, which you can put a new data into array Data[]
61 UINT32 Last;
  /external/llvm/include/llvm/ADT/
ilist.h 166 ilist_iterator<NodeTy> /*last*/) {}
305 /// of the first node in the list always points to the last node in the list,
487 // [first, last) into position.
489 void transfer(iterator position, iplist &L2, iterator first, iterator last) {
490 assert(first != last && "Should be checked by callers");
496 if (position != last) {
504 // Remove [first, last) from its old position.
506 NodeTy *Next = last.getNodePtrUnchecked(), *Last = this->getPrev(Next);
513 // Splice [first, last) into its new position
578 iterator last = first; ++last; local
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 264 : First(std::move(F)), Last(std::move(L)), SValue(SV), HeaderBB(H),
267 APInt Last;
309 unsigned First, unsigned Last, unsigned MinDensity);
311 /// Build a jump table cluster from Clusters[First..Last]. Returns false if it
314 unsigned Last, const SwitchInst *SI,
329 /// Build a bit test cluster from Clusters[First..Last]. Returns false if it
331 bool buildBitTests(CaseClusterVector &Clusters, unsigned First, unsigned Last,
347 /// Determine the rank by weight of CC in [First,Last]. If CC has more weight
350 CaseClusterIt Last);
720 /// references that need to refer to the last resulting block
    [all...]
  /external/llvm/lib/CodeGen/
SplitKit.cpp 41 // Last Insert Point Analysis
84 // If CurLI is live into a landing pad successor, move the last insert point
219 // This block has uses. Find the first and last uses in the block.
535 SlotIndex Last = End.getPrevSlot();
536 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
537 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
543 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
889 SlotIndex Last = LIS.getMBBEndIdx(Dom.first).getPrevSlot();
891 defFromParent(0, ParentVNI, Last, *Dom.first,
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoadStoreVectorizer.cpp 95 /// Returns the first and the last instructions in Chain.
275 // Look through GEPs after checking they're the same except for the last
396 // Range is [first, last).
692 BasicBlock::iterator First, Last;
693 std::tie(First, Last) = getBoundaryInstrs(Chain);
694 unsigned StopChain = getVectorizablePrefixEndIdx(Chain, First, Last);
772 Builder.SetInsertPoint(&*Last);
847 BasicBlock::iterator First, Last;
848 std::tie(First, Last) = getBoundaryInstrs(Chain);
849 unsigned StopChain = getVectorizablePrefixEndIdx(Chain, First, Last);
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmslut.c     [all...]
  /external/swiftshader/third_party/subzero/src/
IceCfgNode.cpp     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
DIE.h 490 Node *Last = nullptr;
492 bool empty() const { return !Last; }
497 if (Last) {
498 N.Next = Last->Next;
499 Last->Next.setPointerAndInt(&N, false);
501 Last = &N;
509 T &back() { return *static_cast<T *>(Last); }
510 const T &back() const { return *static_cast<T *>(Last); }
558 return Last ? iterator(static_cast<T *>(Last->Next.getPointer())) : end()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
DIE.h 490 Node *Last = nullptr;
492 bool empty() const { return !Last; }
497 if (Last) {
498 N.Next = Last->Next;
499 Last->Next.setPointerAndInt(&N, false);
501 Last = &N;
509 T &back() { return *static_cast<T *>(Last); }
510 const T &back() const { return *static_cast<T *>(Last); }
558 return Last ? iterator(static_cast<T *>(Last->Next.getPointer())) : end()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
DIE.h 490 Node *Last = nullptr;
492 bool empty() const { return !Last; }
497 if (Last) {
498 N.Next = Last->Next;
499 Last->Next.setPointerAndInt(&N, false);
501 Last = &N;
509 T &back() { return *static_cast<T *>(Last); }
510 const T &back() const { return *static_cast<T *>(Last); }
558 return Last ? iterator(static_cast<T *>(Last->Next.getPointer())) : end()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
DIE.h 490 Node *Last = nullptr;
492 bool empty() const { return !Last; }
497 if (Last) {
498 N.Next = Last->Next;
499 Last->Next.setPointerAndInt(&N, false);
501 Last = &N;
509 T &back() { return *static_cast<T *>(Last); }
510 const T &back() const { return *static_cast<T *>(Last); }
558 return Last ? iterator(static_cast<T *>(Last->Next.getPointer())) : end()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
DIE.h 490 Node *Last = nullptr;
492 bool empty() const { return !Last; }
497 if (Last) {
498 N.Next = Last->Next;
499 Last->Next.setPointerAndInt(&N, false);
501 Last = &N;
509 T &back() { return *static_cast<T *>(Last); }
510 const T &back() const { return *static_cast<T *>(Last); }
558 return Last ? iterator(static_cast<T *>(Last->Next.getPointer())) : end()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
DIE.h 490 Node *Last = nullptr;
492 bool empty() const { return !Last; }
497 if (Last) {
498 N.Next = Last->Next;
499 Last->Next.setPointerAndInt(&N, false);
501 Last = &N;
509 T &back() { return *static_cast<T *>(Last); }
510 const T &back() const { return *static_cast<T *>(Last); }
558 return Last ? iterator(static_cast<T *>(Last->Next.getPointer())) : end()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
DIE.h 490 Node *Last = nullptr;
492 bool empty() const { return !Last; }
497 if (Last) {
498 N.Next = Last->Next;
499 Last->Next.setPointerAndInt(&N, false);
501 Last = &N;
509 T &back() { return *static_cast<T *>(Last); }
510 const T &back() const { return *static_cast<T *>(Last); }
558 return Last ? iterator(static_cast<T *>(Last->Next.getPointer())) : end()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
DIE.h 490 Node *Last = nullptr;
492 bool empty() const { return !Last; }
497 if (Last) {
498 N.Next = Last->Next;
499 Last->Next.setPointerAndInt(&N, false);
501 Last = &N;
509 T &back() { return *static_cast<T *>(Last); }
510 const T &back() const { return *static_cast<T *>(Last); }
558 return Last ? iterator(static_cast<T *>(Last->Next.getPointer())) : end()
    [all...]

Completed in 1748 milliseconds

1 23 4 5