Home
last modified time | relevance | path

Searched refs:Ok (Results 1 – 25 of 71) sorted by relevance

123

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dflags_parser.cpp138 bool Ok = false; in runHandler()
141 Ok = parseBool(Value, reinterpret_cast<bool *>(Flags[I].Var)); in runHandler()
142 if (!Ok) in runHandler()
158 Ok = true; in registerFlag()
161 return Ok; in registerFlag()
130 bool Ok = false; runHandler() local
/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/
H A Doptions_parser.cpp157 bool Ok = false; in setOptionToValue() local
160 Ok = parseBool(Value, reinterpret_cast<bool *>(Options[I].Var)); in setOptionToValue()
161 if (!Ok) in setOptionToValue()
170 Ok = in setOptionToValue()
172 if (!Ok) in setOptionToValue()
178 return Ok; in setOptionToValue()
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_buffer_queue.cpp142 return BufferQueue::ErrorCode::Ok; in init()
158 Success = init(B, N) == BufferQueue::ErrorCode::Ok;
181 return ErrorCode::Ok; in getBuffer()
194 return BufferQueue::ErrorCode::Ok; in releaseBuffer()
215 return ErrorCode::Ok; in releaseBuffer()
221 return ErrorCode::Ok; in finalize()
H A Dxray_profiling.cpp98 if (BQ->getBuffer(ThreadBuffers.NodeBuffer) != BufferQueue::ErrorCode::Ok) in getThreadLocalData()
105 if (BQ->getBuffer(ThreadBuffers.RootsBuffer) != BufferQueue::ErrorCode::Ok) in getThreadLocalData()
113 BufferQueue::ErrorCode::Ok) in getThreadLocalData()
121 BufferQueue::ErrorCode::Ok) in getThreadLocalData()
409 if (InitStatus != BufferQueue::ErrorCode::Ok) { in profilingLoggingInit()
H A Dxray_buffer_queue.h171 Ok, enumerator
181 case ErrorCode::Ok: in getErrorString()
H A Dxray_fdr_logging.cpp464 TLD.BQ->releaseBuffer(TLD.Buffer) != BufferQueue::ErrorCode::Ok) in setupTLD()
468 if (TLD.BQ->getBuffer(TLD.Buffer) != BufferQueue::ErrorCode::Ok) in setupTLD()
670 if (BQ->init(BufferSize, BufferMax) != BufferQueue::ErrorCode::Ok) { in fdrLoggingInit()
694 if (EC != BufferQueue::ErrorCode::Ok) in fdrLoggingInit()
H A Dxray_fdr_controller.h56 if (BQ->getBuffer(B) != BufferQueue::ErrorCode::Ok) in getNewBuffer()
142 return BQ->releaseBuffer(B) == BufferQueue::ErrorCode::Ok; in returnBuffer()
H A Dxray_profile_collector.cpp349 BufferQueue::ErrorCode::Ok) in reset()
353 if (BQ->getBuffer(Buffer) != BufferQueue::ErrorCode::Ok) in reset()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DPointer.cpp410 bool Ok = true; in toRValue() local
421 Ok &= Composite(FieldTy, FP, Value); in toRValue()
444 Ok &= Composite(FieldTy, FP, Value); in toRValue()
452 Ok &= Composite(BaseTy, BP, R.getStructBase(I)); in toRValue()
459 Ok &= Composite(VirtBaseTy, VP, R.getStructBase(NB + I)); in toRValue()
462 return Ok; in toRValue()
475 bool Ok = true; in toRValue() local
482 Ok &= Composite(ElemTy, EP.narrow(), Slot); in toRValue()
485 return Ok; in toRValue()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DWasmAsmParser.cpp78 auto Ok = Lexer->is(Kind); in isNext() local
79 if (Ok) in isNext()
81 return Ok; in isNext()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.cpp2363 bool Ok; in verifyInstruction() local
2371 Ok = isUInt<NUM>(Imm); \ in verifyInstruction()
2385 Ok = isShiftedUInt<1, 1>(Imm); in verifyInstruction()
2388 Ok = isShiftedUInt<4, 1>(Imm); in verifyInstruction()
2391 Ok = isShiftedUInt<5, 1>(Imm); in verifyInstruction()
2394 Ok = isShiftedUInt<5, 2>(Imm); in verifyInstruction()
2397 Ok = isShiftedUInt<6, 2>(Imm); in verifyInstruction()
2400 Ok = isShiftedUInt<5, 3>(Imm); in verifyInstruction()
2403 Ok = isUInt<8>(Imm) && Imm >= 32; in verifyInstruction()
2406 Ok = isShiftedUInt<6, 3>(Imm); in verifyInstruction()
[all …]
/freebsd/contrib/arm-optimized-routines/string/arm/
H A Dmemset.S48 @ Ok, so we're misaligned here
/freebsd/contrib/cortex-strings/src/arm/
H A Dmemset.S73 @ Ok, so we're misaligned here
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.cpp662 bool Ok = check(); in shuffle()
663 if (size() > 1 && Ok) in shuffle() local
703 return Ok; in shuffle()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.h104 Ok, enumerator
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUPALMetadata.cpp853 bool Ok = true; in setFromString() local
860 Ok = false; in setFromString()
868 return Ok; in setFromString()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DDriver.h556 Ok, enumerator
563 Always = static_cast<int>(CommandStatus::Ok),
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DCommonArgs.cpp2849 bool Ok = false; in addMCModel() local
2853 Ok = CM == "tiny" || CM == "small" || CM == "large"; in addMCModel()
2863 Ok = CM == "normal" || CM == "medium" || CM == "extreme"; in addMCModel()
2865 if (Ok) in addMCModel()
2871 Ok = CM == "small" || CM == "medium" || CM == "large"; in addMCModel()
2877 Ok = CM == "small" || CM == "medium"; in addMCModel()
2879 Ok = llvm::is_contained({"small", "kernel", "medium", "large", "tiny"}, in addMCModel()
2884 Ok = true; in addMCModel()
2892 Ok = CM == "small" || CM == "medium" || CM == "large"; in addMCModel()
2894 if (Ok) { in addMCModel()
/freebsd/sys/contrib/device-tree/src/arm/marvell/
H A Dorion5x-maxtor-shared-storage-2.dts160 * GPIO 22: USB port 1 fuse (0 = Fail, 1 = Ok)
H A Dorion5x-lacie-d2-network.dts218 * GPIO 22: USB port 1 fuse (0 = Fail, 1 = Ok)
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonAsmPrinter.cpp772 bool Ok = HexagonMCInstrInfo::canonicalizePacket(MCII, *Subtarget, Ctx, in emitInstruction() local
774 assert(Ok); (void)Ok; in emitInstruction()
/freebsd/stand/i386/mbr/
H A Dmbr.S72 # Ok, we've found a possible active partition. Check to see that the drive
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp349 auto Ok = Lexer.is(Kind); in isNext() local
350 if (Ok) in isNext()
352 return Ok; in isNext()
/freebsd/secure/caroot/trusted/
H A DSecurity_Communication_RootCA2.pem88 okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8
/freebsd/contrib/llvm-project/clang/tools/driver/
H A Ddriver.cpp384 Driver::CommandStatus CommandStatus = Driver::CommandStatus::Ok; in clang_main()

123