HomeSort by: relevance | last modified time | path
    Searched defs:Found (Results 1 - 25 of 82) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/llvm/lib/Testing/Support/
SupportHelpers.cpp 37 bool Found = false;
39 std::tie(Found, InputFilePath) = findSrcDirMap(Argv0);
41 EXPECT_TRUE(Found) << "Unit test source directory file does not exist.";
  /src/sys/external/bsd/acpica/dist/tools/acpihelp/
ahaml.c 77 BOOLEAN Found = FALSE;
94 Found = TRUE;
106 Found = TRUE;
110 if (!Found && Name)
255 BOOLEAN Found = FALSE;
265 Found = TRUE;
272 Found = TRUE;
284 Found = TRUE;
288 if (!Found)
ahasl.c 81 BOOLEAN Found = FALSE;
91 Found = TRUE;
103 Found = TRUE;
107 if (!Found)
312 /* Found a keyword, display keyword information */
ahdecode.c 192 BOOLEAN Found;
227 Found = AhDisplayPredefinedName (Name, Length);
228 if (!Found)
343 BOOLEAN Found = FALSE;
354 Found = TRUE;
375 Found = TRUE;
387 return (Found);
484 BOOLEAN Found = FALSE;
524 Found = TRUE;
529 if (!Found)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
RegisterAliasing.cpp 67 auto &Found = Registers[PhysReg];
68 if (!Found)
69 Found.reset(new RegisterAliasingTracker(RegInfo, PhysReg));
70 return *Found;
75 auto &Found = RegisterClasses[RegClassIndex];
77 if (!Found)
78 Found.reset(new RegisterAliasingTracker(RegInfo, ReservedReg, RegClass));
79 return *Found;
Target.cpp 135 auto Found = llvm::lower_bound(CpuPfmCounters, CpuName);
136 if (Found == CpuPfmCounters.end() || StringRef(Found->CpuName) != CpuName) {
139 Found = CpuPfmCounters.begin(); // The target specifies a default.
144 assert(Found->PCI && "Missing counters");
145 return *Found->PCI;
  /src/sys/external/bsd/acpica/dist/utilities/
utpredef.c 107 * RETURN: Pointer to entry in predefined table. NULL indicates not found.
140 return (NULL); /* Not found */
241 * found.
277 return (NULL); /* Not found */
429 UINT32 Found;
434 Found = 0;
442 Found++;
448 return (Found);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ProcessImplicitDefs.cpp 99 bool Found = false;
109 Found = true;
113 if (Found)
117 // If we found the using MI, we can erase the IMPLICIT_DEF.
118 if (Found) {
124 // Using instr wasn't found, it could be in another block.
  /src/sys/external/bsd/acpica/dist/namespace/
nsxfeval.c 546 * references, but this support could be added later if found to be necessary.
614 * when an object of "Type" is found
616 * when an object of "Type" is found
627 * the type parameter is found. If the callback function returns
744 BOOLEAN Found;
773 * on all devices found here.
813 Found = FALSE;
818 /* Found a matching CID */
820 Found = TRUE;
826 if (!Found)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
PPC.cpp 264 bool Found = FindVSXSubfeature("+power8-vector", "-mpower8-vector");
265 Found |= FindVSXSubfeature("+direct-move", "-mdirect-move");
266 Found |= FindVSXSubfeature("+float128", "-mfloat128");
267 Found |= FindVSXSubfeature("+power9-vector", "-mpower9-vector");
268 Found |= FindVSXSubfeature("+paired-vector-memops", "-mpaired-vector-memops");
269 Found |= FindVSXSubfeature("+mma", "-mmma");
270 Found |= FindVSXSubfeature("+power10-vector", "-mpower10-vector");
272 // Return false if any vsx subfeatures was found.
273 return !Found;
  /src/external/apache2/llvm/dist/clang/tools/diagtool/
TreeView.cpp 99 const GroupRecord *Found = llvm::lower_bound(AllGroups, RootGroup);
100 if (Found == AllGroups.end() || Found->getName() != RootGroup) {
105 printGroup(*Found);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeFunctionSymbol.cpp 62 bool Found = false;
71 Found = true;
75 if (Found && OffsetInFunc < CodeOffset)
77 Found = false;
83 Found = false;
112 bool Found = false;
129 Found = true;
138 if (!Found)
  /src/sys/external/bsd/acpica/dist/tools/acpisrc/
asfile.c 561 BOOLEAN Found = TRUE;
575 Found = FALSE;
579 return (Found);
  /src/external/apache2/llvm/dist/clang/lib/AST/
ParentMapContext.cpp 394 bool Found = ParentStack.back().getMemoizationData() &&
397 if (!Found)
  /src/external/apache2/llvm/dist/clang/lib/Driver/
Job.cpp 89 // Match found.
240 auto Found = llvm::find_if(InputFilenames,
242 if (Found != InputFilenames.end() &&
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
AssumptionCache.cpp 150 bool Found = false;
154 Found = true;
158 if (HasNonnull && Found)
161 assert(Found && "already unregistered or incorrect cache state");
219 // be found when we scan later.
DemandedBits.cpp 446 auto Found = AliveBits.find(I);
447 if (Found != AliveBits.end())
448 return Found->second;
479 auto Found = AliveBits.find(UserI);
480 if (Found != AliveBits.end() && Found->second.isNullValue())
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Triple.cpp 867 bool Found[4];
868 Found[0] = Arch != UnknownArch;
869 Found[1] = Vendor != UnknownVendor;
870 Found[2] = OS != UnknownOS;
871 Found[3] = Environment != UnknownEnvironment;
876 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
877 if (Found[Pos])
882 if (Idx < array_lengthof(Found) && Found[Idx])
930 while (i < array_lengthof(Found) && Found[i]
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
ConstantMerge.cpp 216 auto Found = CMap.find(Init);
217 if (Found == CMap.end())
220 GlobalVariable *Slot = Found->second;
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 146 const DynTypedMatcher *Found = nullptr;
151 if (Found) {
157 Found = &Matchers[i];
162 // We only succeed if we found exactly one, or if we found an exact match.
163 if (Found && (FoundIsExact || NumFound == 1))
164 return *Found;
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderInternals.h 57 llvm::DenseSet<DeclID> Found;
63 if (Found.empty() && !Data.empty()) {
65 for (auto I : Found)
72 // Switch to tracking found IDs in the set.
73 Found.insert(Data.begin(), Data.end());
76 if (Found.insert(ID).second)
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MustExecute.h 355 /// if none was found.
468 /// The context is expanded until \p I was found or no more expansion is
471 /// \returns True, iff \p I was found.
479 /// The context is expanded until \p I was found or no more expansion is
482 /// \returns True, iff \p I was found.
484 bool Found = EIt.count(I);
485 while (!Found && EIt != EEnd)
486 Found = (++EIt).getCurrentInst() == I;
487 return Found;
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSubtargetInfo.h 228 auto Found = llvm::lower_bound(ProcDesc, CPU);
229 return Found != ProcDesc.end() && StringRef(Found->Key) == CPU;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ScopedPrinter.h 99 bool Found = false;
103 Found = true;
108 if (Found) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIPreEmitPeephole.cpp 180 bool Found = false;
182 if (Found) {
186 Found = Term.isIdenticalTo(MI);
189 assert(Found && "conditional branch is not terminator");

Completed in 62 milliseconds

1 2 3 4