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

  /src/sys/external/bsd/acpica/dist/tools/efihello/
efihello.c 78 char *Result;
102 Result = fgets (LineBuffer, LINE_SIZE, File);
103 if (!Result)
112 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)
  /src/sys/external/bsd/acpica/dist/compiler/
dtexpress.c 85 UINT64 Result;
93 Result = DtEvaluateExpression (Field->Value);
94 *ReturnValue = Result;
107 * RETURN: 64-bit result of the requested operation
119 UINT64 Result;
128 Result = ~RightValue;
133 Result = !RightValue;
138 Result = LeftValue * RightValue;
150 Result = LeftValue / RightValue;
162 Result = LeftValue % RightValue
    [all...]
prexpress.c 266 UINT64 Result;
279 Result = PrEvaluateExpression (ExpandedLine);
282 AslGbl_CurrentLineNumber, ACPI_FORMAT_UINT64 (Result));
284 *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 87 UINT64 Result;
127 Result = 0;
145 Result = AcpiUtImplicitStrtoul64 (ACPI_CAST_PTR (char, Pointer));
149 Result = AcpiUtExplicitStrtoul64 (ACPI_CAST_PTR (char, Pointer));
176 * Get next byte and shift it into the Result.
180 Result |= (((UINT64) Pointer[i]) << (i * 8));
193 ReturnDesc = AcpiUtCreateIntegerObject (Result);
200 ACPI_FORMAT_UINT64 (Result)));
202 /* Save the Result */
  /src/sys/external/bsd/acpica/dist/namespace/
nsutils.c 273 char *Result = NULL;
288 Result = &InternalName[1];
293 Result = &InternalName[2];
299 Result = &InternalName[3];
319 Result = &InternalName[i];
324 Result = &InternalName[(ACPI_SIZE) i+1];
330 Result = &InternalName[(ACPI_SIZE) i+2];
345 Result[i] = '_';
351 Result[i] = (char) toupper ((int) *ExternalName);
367 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); variable
    [all...]
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
oswintbl.c 526 LONG Result;
562 Result = GetSystemFirmwareTable('ACPI', UIntSignature, ReturnTable, DataSize);
563 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 23 milliseconds