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

1 2 3

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
fdr_log_writer_test.cc 41 bool Success = false;
42 BufferQueue Buffers(kSize, 1, Success);
79 bool Success = false;
80 BufferQueue Buffers(kSize, 1, Success);
129 bool Success = false;
130 BufferQueue Buffers(kSize, 1, Success);
allocator_test.cc 61 bool Success = false;
62 BufferQueue BQ(GetPageSizeCached(), 10, Success);
63 ASSERT_TRUE(Success);
buffer_queue_test.cc 30 bool Success = false;
31 BufferQueue Buffers(kSize, 1, Success);
32 ASSERT_TRUE(Success);
36 bool Success = false;
37 BufferQueue Buffers(kSize, 1, Success);
38 ASSERT_TRUE(Success);
47 bool Success = false;
48 BufferQueue Buffers(kSize, 1, Success);
49 ASSERT_TRUE(Success);
58 bool Success = false
    [all...]
fdr_controller_test.cc 54 bool Success;
55 BQ = llvm::make_unique<BufferQueue>(4096, 1, Success);
56 ASSERT_TRUE(Success);
306 bool Success;
309 kBuffers, Success);
310 ASSERT_TRUE(Success);
profile_collector_test.cc 113 bool Success = false;
115 profilingFlags()->buffers_max, Success);
116 ASSERT_EQ(Success, true);
184 static bool Success = false;
186 profilingFlags()->buffers_max, Success);
  /src/external/apache2/llvm/dist/clang/tools/driver/
cc1_main.cpp 212 bool Success = CompilerInvocation::CreateFromArgs(Clang->getInvocation(),
240 if (!Success)
246 Success = ExecuteCompilerInvocation(Clang.get());
276 return !Success;
279 return !Success;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-undname/
llvm-undname.cpp 100 bool Success = true;
122 Success = false;
130 Success = false;
135 return Success ? 0 : 1;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ItaniumManglingCanonicalizer.h 44 Success,
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicCastInfo.h 19 enum CastResult { Success, Failure };
31 bool succeeds() const { return ResultKind == CastResult::Success; }
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfilingValue.c 120 uint32_t Success = 0;
122 Success =
125 Success = COMPILER_RT_BOOL_CMPXCHG(&(PrevVNode->Next), 0, CurrentVNode);
127 if (!Success) {
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_buffer_queue.cc 79 bool Success = false;
88 if (Success)
100 if (Success)
142 Success = true;
147 bool &Success) XRAY_NEVER_INSTRUMENT
159 Success = init(B, N) == BufferQueue::ErrorCode::Ok;
xray_interface.cc 152 bool Success = false;
155 Success = patchFunctionEntry(Enable, FuncId, Sled, __xray_FunctionEntry);
158 Success = patchFunctionExit(Enable, FuncId, Sled);
161 Success = patchFunctionTailExit(Enable, FuncId, Sled);
164 Success = patchFunctionEntry(Enable, FuncId, Sled, __xray_ArgLoggerEntry);
167 Success = patchCustomEvent(Enable, FuncId, Sled);
170 Success = patchTypedEvent(Enable, FuncId, Sled);
176 return Success;
225 return XRayPatchingStatus::SUCCESS;
310 return XRayPatchingStatus::SUCCESS;
    [all...]
xray_x86_64.cc 60 bool Success;
61 std::tie(BytesRead, Success) = retryingReadSome(Fd, Line, Line + BufSize);
63 if (!Success)
xray_profiling.cc 92 bool Success = false;
94 if (!Success)
105 if (!Success)
112 if (!Success)
120 if (!Success)
128 Success = true;
393 bool Success = false;
396 profilingFlags()->buffers_max, Success);
397 if (!Success) {
xray_fdr_logging.cc 666 bool Success = false;
668 new (BQ) BufferQueue(BufferSize, BufferMax, Success);
669 if (!Success) {
xray_profile_collector.cc 343 bool Success = false;
345 BufferQueue(profilingFlags()->global_allocator_max, 1, Success);
346 if (!Success)
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
ByteCodeEmitter.cpp 127 bool Success = true;
130 auto emit = [this, &Success](const char *Data, size_t Size) {
132 Success = false;
149 return Success;
  /src/external/apache2/llvm/dist/clang/lib/Interpreter/
Interpreter.cpp 79 bool Success = CompilerInvocation::CreateFromArgs(
97 if (!Success)
189 llvm::Error Err = llvm::Error::success();
210 llvm::Error Err = llvm::Error::success();
223 return llvm::Error::success();
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCDisassembler/
MCDisassembler.h 79 /// Success, however some have a concept of an instruction with
89 /// from Success->SoftFail ->Fail can be done with a simple
92 /// LEFT & TOP = | Success Unpredictable Fail
94 /// Success | Success Unpredictable Fail
99 /// Success, SoftFail, Fail respectively.
103 Success = 3
122 /// \return - MCDisassembler::Success if the instruction is valid,
144 /// \return - MCDisassembler::Success if bytes are decoded
  /src/external/apache2/llvm/dist/llvm/lib/Support/
OptimizedStructLayout.cpp 433 bool Success = tryAddBestField(None);
434 assert(Success && "didn't find a field with no fixed limit?");
435 (void) Success;
  /src/external/bsd/zstd/dist/contrib/pzstd/
Options.h 40 Success, // Successfully parsed options
  /src/external/apache2/llvm/dist/clang/lib/Driver/
Compilation.cpp 144 bool Success = true;
146 Success &= CleanupFile(File, IssueErrors);
147 return Success;
153 bool Success = true;
159 Success &= CleanupFile(File.second, IssueErrors);
161 return Success;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Testing/Support/
SupportHelpers.h 28 bool Success() const { return Infos.empty(); }
40 OS << (Err.Success() ? "succeeded" : "failed");
41 if (!Err.Success()) {
54 if (Item.Success()) {
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerMerge.cpp 338 bool Success = false;
348 Success = true;
352 if (!Success) {
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantRange.cpp 152 bool Success = false;
157 Success = true;
161 Success = true;
165 Success = true;
170 Success = true;
175 Success = true;
178 assert((!Success || ConstantRange::makeExactICmpRegion(Pred, RHS) == *this) &&
181 return Success;

Completed in 58 milliseconds

1 2 3