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

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
fdr_controller_test.cc 83 int32_t FId = (1 << 28) - 1;
86 ASSERT_TRUE(C->functionEnter(FId, TSC++, CPU));
87 ASSERT_TRUE(C->functionExit(FId, TSC++, CPU));
88 ASSERT_TRUE(C->functionEnterArg(FId, TSC++, CPU, 1));
89 ASSERT_TRUE(C->functionTailExit(FId, TSC++, CPU));
100 AllOf(FuncId(FId), RecordType(llvm::xray::RecordTypes::ENTER)),
101 AllOf(FuncId(FId), RecordType(llvm::xray::RecordTypes::EXIT)),
102 AllOf(FuncId(FId), RecordType(llvm::xray::RecordTypes::ENTER_ARG)),
103 AllOf(FuncId(FId), RecordType(llvm::xray::RecordTypes::TAIL_EXIT)))));
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_function_call_trie.h 101 int32_t FId;
117 int32_t FId;
359 void enterFunction(const int32_t FId, uint64_t TSC,
361 DCHECK_NE(FId, 0);
374 nullptr, NodeIdPairArray(*NodeIdPairAllocator), 0u, 0u, FId);
398 [FId](const NodeIdPair &NR) { return NR.FId == FId; });
408 TopNode, NodeIdPairArray(*NodeIdPairAllocator), 0u, 0u, FId);
412 TopNode->Callees.AppendEmplace(NewNode, FId);
    [all...]
xray_profile_collector.cc 189 Record->Path.Append(N->FId);
206 for (const auto FId : Record.Path)
208 static_cast<uint8_t *>(internal_memcpy(NextPtr, &FId, sizeof(FId))) +
209 sizeof(FId);

Completed in 16 milliseconds