HomeSort by: relevance | last modified time | path
    Searched refs:Deleted (Results 1 - 19 of 19) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/
hash-traits.h 90 used to mark empty slots. If Deleted != Empty then Deleted is another
91 spare value that can be used for deleted slots; if Deleted == Empty then
92 hash table entries cannot be deleted. */
94 template <typename Type, Type Empty, Type Deleted = Empty>
109 template <typename Type, Type Empty, Type Deleted>
111 int_hash <Type, Empty, Deleted>::hash (value_type x)
116 template <typename Type, Type Empty, Type Deleted>
118 int_hash <Type, Empty, Deleted>::equal (value_type x, value_type y
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopDeletion.cpp 34 STATISTIC(NumDeleted, "Number of loops deleted");
39 Deleted,
43 if (A == LoopDeletionResult::Deleted || B == LoopDeletionResult::Deleted)
44 return LoopDeletionResult::Deleted;
155 return LoopDeletionResult::Deleted;
205 << "Loop deleted because it never executes";
209 return LoopDeletionResult::Deleted;
248 << "Loop deleted because it is invariant";
253 return LoopDeletionResult::Deleted;
    [all...]
StructurizeCFG.cpp 596 Value *Deleted = Phi.removeIncomingValue(From, false);
597 Map[&Phi].push_back(std::make_pair(From, Deleted));
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
HashTable.h 139 if (auto EC = readSparseBitVector(Stream, Deleted))
141 if (Present.intersects(Deleted))
143 "Present bit vector intersects deleted!");
163 int NumBitsD = Deleted.find_last() + 1;
173 // Deleted bit set number of words (4 bytes), followed by that many actual
194 if (auto EC = writeSparseBitVector(Writer, Deleted))
209 Deleted.clear();
234 // inserted at the first empty / deleted location. Therefore, if we are
235 // probing and find a location that is neither present nor deleted, then
267 bool isDeleted(uint32_t K) const { return Deleted.test(K);
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
hash-traits.h 116 used to mark empty slots. If Deleted != Empty then Deleted is another
117 spare value that can be used for deleted slots; if Deleted == Empty then
118 hash table entries cannot be deleted. */
120 template <typename Type, Type Empty, Type Deleted = Empty>
133 template <typename Type, Type Empty, Type Deleted>
135 int_hash <Type, Empty, Deleted>::mark_deleted (Type &x)
137 gcc_assert (Empty != Deleted);
138 x = Deleted;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyLateEHPrepare.cpp 98 SmallPtrSet<MachineBasicBlock *, 8> Deleted;
101 if (Deleted.count(MBB) || !MBB->pred_empty())
109 Deleted.insert(MBB);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonOptAddrMode.cpp 89 MISetType Deleted;
406 Deleted.insert(AddMI);
476 // Reduce total size by 2 if original tfr can be deleted.
663 Deleted.insert(UseMI);
683 Deleted.insert(UseMI);
774 Deleted.insert(MI);
802 Deleted.clear();
810 for (auto MI : Deleted)
HexagonEarlyIfConv.cpp 219 BlockSetType Deleted;
617 if (!Deleted.count(SB))
979 Deleted.insert(B);
1064 Deleted.clear();
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
sepdebug.exp 396 gdb_test "clear marker3" {Deleted breakpoints [0-9]+ [0-9]+.*}
break.exp 610 gdb_test "clear marker3" {Deleted breakpoints [0-9]+ [0-9]+.*}
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
sepdebug.exp 396 gdb_test "clear marker3" {Deleted breakpoints [0-9]+ [0-9]+.*}
break.exp 610 gdb_test "clear marker3" {Deleted breakpoints [0-9]+ [0-9]+.*}
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineFunction.cpp 1145 // so keep track of which we've deleted to avoid double deletions.
1146 DenseSet<MachineConstantPoolValue*> Deleted;
1149 Deleted.insert(Constants[i].Val.MachineCPVal);
1153 if (Deleted.count(CPV) == 0)
  /src/external/gpl3/gdb/dist/gdb/
ChangeLog-3.x 1234 * valprint.h: Deleted.
2147 * default-dep.c: Deleted inclusion of fcntl.h; apparently not
2756 * gdb.texinfo: Deleted @ignore block at end of file.
2853 info; deleted history_info.
2854 (initialize_main): Deleted "info history" command; it was
2877 register and deleted several variables which weren't used. Also
3000 * m-sun2os2.h: Deleted; not needed.
3022 * *-dep.c: Deleted definition of COFF_FORMAT if AOUTHDR was
3040 * news-dep.c: Deleted inclusion of fcntl.h; just duplicates stuff
3185 * Makefile: Deleted duplicate obstack.h in dbxread.c dependency
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
ChangeLog-3.x 1234 * valprint.h: Deleted.
2147 * default-dep.c: Deleted inclusion of fcntl.h; apparently not
2756 * gdb.texinfo: Deleted @ignore block at end of file.
2853 info; deleted history_info.
2854 (initialize_main): Deleted "info history" command; it was
2877 register and deleted several variables which weren't used. Also
3000 * m-sun2os2.h: Deleted; not needed.
3022 * *-dep.c: Deleted definition of COFF_FORMAT if AOUTHDR was
3040 * news-dep.c: Deleted inclusion of fcntl.h; just duplicates stuff
3185 * Makefile: Deleted duplicate obstack.h in dbxread.c dependency
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
DeclSpec.h 1758 Deleted
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclCXX.cpp 6261 // Don't process deleted methods.
6510 // If a class has at least one non-deleted, trivial copy constructor, it
6568 // either trivial or deleted, and X has at least one non-deleted copy
6743 // member function (whether it's defaulted, deleted, virtual, overriding,
6753 // A deleted function cannot override a non-deleted function and vice
6762 // Explain why this defaulted function was deleted.
6776 // Explain why this defaulted function was deleted.
6805 // For an explicitly defaulted or deleted special member, we defe
    [all...]
SemaDecl.cpp 9275 // If a function is defined as defaulted or deleted, mark it as such now.
9276 // We'll do the relevant checks on defaulted / deleted functions later.
9286 case FunctionDefinitionKind::Deleted:
9995 case FunctionDefinitionKind::Deleted:
10891 // Explicit specializations of a member template do not inherit deleted
14011 // Don't warn on explicitly deleted functions.
14490 // Don't diagnose unused parameters of defaulted or deleted functions.
17498 // We may have deferred checking for a deleted destructor. Check now.
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDeclCXX.cpp 2755 DefinitionKind = FunctionDefinitionKind::Deleted;
3003 /// Also detect and reject any attempted defaulted/deleted function definition.
3016 /// defaulted/deleted function-definition:
3033 // than as an ill-formed deleted non-function member.

Completed in 52 milliseconds