| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/Windows/ |
| H A D | WindowsSupport.h | 92 if (HandleTraits::IsValid(Handle)) in ~ScopedHandle() 103 if (HandleTraits::IsValid(Handle)) 111 return HandleTraits::IsValid(Handle) ? true : false; 130 static bool IsValid(handle_type h) { in IsValid() function 152 static bool IsValid(handle_type h) { in IsValid() function 168 static bool IsValid(handle_type h) { in IsValid() function
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | FunctionLoweringInfo.h | 157 unsigned IsValid : 1; member 160 LiveOutInfo() : NumSignBits(0), IsValid(true) {} in LiveOutInfo() 222 if (!LOI->IsValid) in GetLiveOutRegInfo() 266 LiveOutRegInfo[Reg].IsValid = false; in InvalidatePHILiveOutRegInfo()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | Attr.h | 232 unsigned IsValid : 1; variable 248 ParamIdx() : Idx(0), HasThis(false), IsValid(false) {} in ParamIdx() 257 : Idx(Idx), HasThis(false), IsValid(true) { in ParamIdx() 281 assert((!P.IsValid || P.Idx >= 1) && "valid Idx must be one-origin"); in deserialize() 286 bool isValid() const { return IsValid; } in isValid()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| H A D | Function.h | 103 bool isConstexpr() const { return IsValid; } in isConstexpr() 124 IsValid = true; in setCode() 152 bool IsValid = false; variable
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | CoroutineStmtBuilder.h | 28 bool IsValid = true; variable 53 bool isInvalid() const { return !this->IsValid; } in isInvalid()
|
| H A D | SemaCoroutine.cpp | 1140 this->IsValid = makePromiseStmt() && makeInitialAndFinalSuspend(); in CoroutineStmtBuilder() 1144 assert(this->IsValid && "coroutine already invalid"); in buildStatements() 1145 this->IsValid = makeReturnObject(); in buildStatements() 1146 if (this->IsValid && !IsPromiseDependentType) in buildStatements() 1148 return this->IsValid; in buildStatements() 1152 assert(this->IsValid && "coroutine already invalid"); in buildDependentStatements() 1155 this->IsValid = makeOnException() && makeOnFallthrough() && in buildDependentStatements() 1158 return this->IsValid; in buildDependentStatements()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | LoopCacheAnalysis.cpp | 121 if (!R.IsValid) { in operator <<() 144 IsValid = delinearize(LI); in IndexedReference() 145 if (IsValid) in IndexedReference() 153 assert(IsValid && "Expecting a valid reference"); in hasSpacialReuse() 210 assert(IsValid && "Expecting a valid reference"); in hasTemporalReuse() 266 assert(IsValid && "Expecting a valid reference"); in computeRefCost() 326 assert(!IsValid && "Should be called once from the constructor"); in delinearize()
|
| H A D | TFUtils.cpp | 288 bool isValid() const { return IsValid; } in isValid() 324 void invalidate() { IsValid = false; } in invalidate() 326 bool IsValid = true; member in llvm::TFModelEvaluatorImpl 411 IsValid = false; in checkReportAndInvalidate() 412 return IsValid; in checkReportAndInvalidate()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | ScheduleDAGSDNodes.h | 148 bool IsValid() const { return Node != nullptr; } in IsValid() function 151 assert(IsValid() && "bad iterator"); in GetValue()
|
| H A D | FunctionLoweringInfo.cpp | 422 if (!LOI->IsValid) in GetLiveOutRegInfo() 473 DestLOI.IsValid = false; in ComputePHILiveOutRegInfo() 478 DestLOI.IsValid = false; in ComputePHILiveOutRegInfo() 508 DestLOI.IsValid = false; in ComputePHILiveOutRegInfo() 513 DestLOI.IsValid = false; in ComputePHILiveOutRegInfo()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | LoopCacheAnalysis.h | 53 bool isValid() const { return IsValid; } in isValid() 126 bool IsValid = false;
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/ |
| H A D | Gnu.h | 192 bool IsValid; variable 219 explicit GCCInstallationDetector(const Driver &D) : IsValid(false), D(D) {} in GCCInstallationDetector() 224 bool isValid() const { return IsValid; } in isValid()
|
| H A D | Cuda.h | 31 bool IsValid = false; variable 60 bool isValid() const { return IsValid; } in isValid()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/AsmParser/ |
| H A D | RISCVAsmParser.cpp | 364 bool IsValid; in isBareSimmNLsb0() local 366 IsValid = RISCVAsmParser::classifySymbolRef(getImm(), VK); in isBareSimmNLsb0() 368 IsValid = isShiftedInt<N - 1, 1>(Imm); in isBareSimmNLsb0() 369 return IsValid && VK == RISCVMCExpr::VK_RISCV_None; in isBareSimmNLsb0() 610 bool IsValid; in isSImm12() local 615 IsValid = RISCVAsmParser::classifySymbolRef(getImm(), VK); in isSImm12() 617 IsValid = isInt<12>(Imm); in isSImm12() 618 return IsValid && ((IsConstantImm && VK == RISCVMCExpr::VK_RISCV_None) || in isSImm12() 641 bool IsValid; in isUImm20LUI() local 646 IsValid = RISCVAsmParser::classifySymbolRef(getImm(), VK); in isUImm20LUI() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | FileEntry.h | 341 bool IsValid = false; // Is this \c FileEntry initialized and valid? 368 bool isValid() const { return IsValid; }
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
| H A D | HeaderSearch.cpp | 1173 HFI.External = (!HFI.IsValid || HFI.External); in mergeHeaderFileInfo() 1174 HFI.IsValid = true; in mergeHeaderFileInfo() 1191 if (ExternalHFI.IsValid) { in getFileInfo() 1198 HFI->IsValid = true; in getFileInfo() 1219 if (!WantExternal && (!HFI->IsValid || HFI->External)) in getExistingFileInfo() 1223 if (ExternalHFI.IsValid) { in getExistingFileInfo() 1235 if (!HFI->IsValid || (HFI->External && !WantExternal)) in getExistingFileInfo()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/ |
| H A D | FileManager.cpp | 329 UFE.IsValid = true; in getFileRef() 436 UFE->IsValid = true; in getVirtualFileRef() 467 BFE.IsValid = true; in getBypassFile()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
| H A D | HeaderSearch.h | 87 unsigned IsValid : 1; member 116 Resolved(false), IndexHeaderMapHeader(false), IsValid(false) {} in HeaderFileInfo()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| H A D | asan_debugging.cc | 51 if (!chunk.IsValid()) return 0; in AsanGetStack()
|
| H A D | asan_allocator.h | 52 bool IsValid() const; // Checks if AsanChunkView points to a valid
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| H A D | asan_debugging.cpp | 53 if (!chunk.IsValid()) return 0; in AsanGetStack()
|
| H A D | asan_allocator.h | 54 bool IsValid() const; // Checks if AsanChunkView points to a valid
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| H A D | asan_debugging.cc | 53 if (!chunk.IsValid()) return 0; in AsanGetStack()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | MergeICmps.cpp | 198 bool IsValid() const { return Lhs_.BaseId != 0 && Rhs_.BaseId != 0; } in IsValid() function in __anon8ada780a0111::BCECmpBlock 203 if (IsValid()) { in AssertConsistent() 448 if (!Comparison.IsValid()) { in BCECmpChain()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFAcceleratorTable.cpp | 78 IsValid = true; in extract() 204 if (!IsValid) in dump() 330 if (!IsValid) in equal_range()
|