HomeSort by: relevance | last modified time | path
    Searched defs:Result (Results 1 - 14 of 14) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/tools/efihello/
efihello.c 186 char *Result;
210 Result = fgets (LineBuffer, LINE_SIZE, File);
211 if (!Result)
220 if (strncmp (Result, "exit", 4) == 0)
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/symbolizer/
sanitizer_symbolize.cc 37 std::string Result;
39 llvm::raw_string_ostream OS(Result);
46 Result.c_str()) < MaxLength;
51 std::string Result;
53 llvm::raw_string_ostream OS(Result);
60 Result.c_str()) < MaxLength;
67 std::string Result =
70 Result.c_str()) < MaxLength
71 ? static_cast<int>(Result.size() + 1)
sanitizer_wrappers.cc 52 using Result = R;
65 GetTypes<__VA_ARGS__>::Result __interceptor_##Function( \
67 GetTypes<__VA_ARGS__>::Result Function( \
73 GetTypes<__VA_ARGS__>::Result __interceptor_##Function( \
76 GetTypes<__VA_ARGS__>::Result Function( \
83 GetTypes<__VA_ARGS__>::Result __interceptor_##Function( \
87 GetTypes<__VA_ARGS__>::Result Function( \
95 GetTypes<__VA_ARGS__>::Result __interceptor_##Function( \
100 GetTypes<__VA_ARGS__>::Result Function( \
  /src/sys/external/bsd/acpica/dist/compiler/
dtexpress.c 193 UINT64 Result;
201 Result = DtEvaluateExpression (Field->Value);
202 *ReturnValue = Result;
215 * RETURN: 64-bit result of the requested operation
227 UINT64 Result;
236 Result = ~RightValue;
241 Result = !RightValue;
246 Result = LeftValue * RightValue;
258 Result = LeftValue / RightValue;
270 Result = LeftValue % RightValue
    [all...]
prexpress.c 374 UINT64 Result;
387 Result = PrEvaluateExpression (ExpandedLine);
390 AslGbl_CurrentLineNumber, ACPI_FORMAT_UINT64 (Result));
392 *ReturnValue = Result;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_linux.h 82 enum Result {
87 Result ListThreads(InternalMmapVector<tid_t> *threads);
  /src/sys/external/bsd/acpica/dist/executer/
exconvrt.c 195 UINT64 Result;
235 Result = 0;
253 Result = AcpiUtImplicitStrtoul64 (ACPI_CAST_PTR (char, Pointer));
257 Result = AcpiUtExplicitStrtoul64 (ACPI_CAST_PTR (char, Pointer));
284 * Get next byte and shift it into the Result.
288 Result |= (((UINT64) Pointer[i]) << (i * 8));
301 ReturnDesc = AcpiUtCreateIntegerObject (Result);
308 ACPI_FORMAT_UINT64 (Result)));
310 /* Save the Result */
  /src/sys/external/bsd/acpica/dist/namespace/
nsutils.c 381 char *Result = NULL;
396 Result = &InternalName[1];
401 Result = &InternalName[2];
407 Result = &InternalName[3];
427 Result = &InternalName[i];
432 Result = &InternalName[(ACPI_SIZE) i+1];
438 Result = &InternalName[(ACPI_SIZE) i+2];
453 Result[i] = '_';
459 Result[i] = (char) toupper ((int) *ExternalName);
475 Result += ACPI_NAMESEG_SIZE
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_allocator.h 218 void *Result = AlignedNextBlock;
222 return Result;
xray_x86_64.cc 67 bool Result = false;
70 Result = true;
72 return Result;
xray_fdr_logging.cc 272 XRayBuffer Result;
273 Result.Data = CurrentBuffer;
274 Result.Size = SerializedBufferSize;
276 return Result;
288 s32 Result = XRayLogFlushStatus::XRAY_LOG_NOT_FLUSHING;
289 if (!atomic_compare_exchange_strong(&LogFlushStatus, &Result,
294 return static_cast<XRayLogFlushStatus>(Result);
344 auto Result = XRayLogFlushStatus::XRAY_LOG_NOT_FLUSHING;
345 atomic_store(&LogFlushStatus, Result, memory_order_release);
346 return Result;
434 int result = clock_gettime(CLOCK_REALTIME, &TS); local in function:__xray::getTimestamp
    [all...]
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
oswintbl.c 634 LONG Result;
670 Result = GetSystemFirmwareTable('ACPI', UIntSignature, ReturnTable, DataSize);
671 if (Result > (LONG) DataSize)
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
profile_collector_test.cc 92 Profile Result;
98 Result.Path.push_back(F);
102 internal_memcpy(&Result.CallCount, P, sizeof(int64_t));
106 internal_memcpy(&Result.CumulativeLocalTime, P, sizeof(int64_t));
108 return std::make_tuple(std::move(Result), P);
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerLoop.cpp 66 bool Result = Mallocs > Frees;
70 return Result;

Completed in 61 milliseconds