/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | FoldingSet.cpp | 58 AddInteger(reinterpret_cast<uintptr_t>(Ptr)); in AddPointer() 60 void FoldingSetNodeID::AddInteger(signed I) { in AddInteger() function in FoldingSetNodeID 63 void FoldingSetNodeID::AddInteger(unsigned I) { in AddInteger() function in FoldingSetNodeID 66 void FoldingSetNodeID::AddInteger(long I) { in AddInteger() function in FoldingSetNodeID 67 AddInteger((unsigned long)I); in AddInteger() 69 void FoldingSetNodeID::AddInteger(unsigned long I) { in AddInteger() function in FoldingSetNodeID 71 AddInteger(unsigned(I)); in AddInteger() 73 AddInteger((unsigned long long)I); in AddInteger() 78 void FoldingSetNodeID::AddInteger(long long I) { in AddInteger() function in FoldingSetNodeID 79 AddInteger((unsigned long long)I); in AddInteger() [all …]
|
/external/clang/lib/AST/ |
D | StmtProfile.cpp | 73 ID.AddInteger(S->getStmtClass()); in VisitStmt() 78 ID.AddInteger(0); in VisitStmt() 167 ID.AddInteger(S->getNumOutputs()); in VisitGCCAsmStmt() 172 ID.AddInteger(S->getNumInputs()); in VisitGCCAsmStmt() 177 ID.AddInteger(S->getNumClobbers()); in VisitGCCAsmStmt() 745 ID.AddInteger(S->getIdentType()); in VisitPredefinedExpr() 751 ID.AddInteger(S->getType()->castAs<BuiltinType>()->getKind()); in VisitIntegerLiteral() 756 ID.AddInteger(S->getKind()); in VisitCharacterLiteral() 757 ID.AddInteger(S->getValue()); in VisitCharacterLiteral() 764 ID.AddInteger(S->getType()->castAs<BuiltinType>()->getKind()); in VisitFloatingLiteral() [all …]
|
D | TemplateBase.cpp | 248 ID.AddInteger(getKind()); in Profile() 272 ID.AddInteger(TTP->getDepth()); in Profile() 273 ID.AddInteger(TTP->getPosition()); in Profile() 293 ID.AddInteger(Args.NumArgs); in Profile()
|
/external/llvm/lib/Support/ |
D | FoldingSet.cpp | 60 void FoldingSetNodeID::AddInteger(signed I) { in AddInteger() function in FoldingSetNodeID 63 void FoldingSetNodeID::AddInteger(unsigned I) { in AddInteger() function in FoldingSetNodeID 66 void FoldingSetNodeID::AddInteger(long I) { in AddInteger() function in FoldingSetNodeID 67 AddInteger((unsigned long)I); in AddInteger() 69 void FoldingSetNodeID::AddInteger(unsigned long I) { in AddInteger() function in FoldingSetNodeID 71 AddInteger(unsigned(I)); in AddInteger() 73 AddInteger((unsigned long long)I); in AddInteger() 78 void FoldingSetNodeID::AddInteger(long long I) { in AddInteger() function in FoldingSetNodeID 79 AddInteger((unsigned long long)I); in AddInteger() 81 void FoldingSetNodeID::AddInteger(unsigned long long I) { in AddInteger() function in FoldingSetNodeID [all …]
|
/external/perfetto/src/trace_processor/db/ |
D | runtime_table_unittest.cc | 41 ASSERT_OK(builder_.AddInteger(0, 1ll << 53)); in TEST_F() 51 ASSERT_THAT(builder_.AddInteger(0, (1ll << 53) + 1), Not(IsOk())); in TEST_F() 52 ASSERT_THAT(builder_.AddInteger(0, -(1ll << 53) - 1), Not(IsOk())); in TEST_F() 56 ASSERT_TRUE(builder_.AddInteger(0, 1024).ok()); in TEST_F()
|
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ADT/ |
D | FoldingSet.h | 337 AddInteger(reinterpret_cast<uintptr_t>(Ptr)); in AddPointer() 339 void AddInteger(signed I) { Bits.push_back(I); } in AddInteger() function 340 void AddInteger(unsigned I) { Bits.push_back(I); } in AddInteger() function 341 void AddInteger(long I) { AddInteger((unsigned long)I); } in AddInteger() function 342 void AddInteger(unsigned long I) { in AddInteger() function 344 AddInteger(unsigned(I)); in AddInteger() 346 AddInteger((unsigned long long)I); in AddInteger() 351 void AddInteger(long long I) { AddInteger((unsigned long long)I); } in AddInteger() function 352 void AddInteger(unsigned long long I) { in AddInteger() function 353 AddInteger(unsigned(I)); in AddInteger() [all …]
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | SymbolManager.h | 52 profile.AddInteger((unsigned) SymbolRegionValueKind); in Profile() 97 profile.AddInteger((unsigned) SymbolConjuredKind); in Profile() 101 profile.AddInteger(Count); in Profile() 135 profile.AddInteger((unsigned) SymbolDerivedKind); in Profile() 167 profile.AddInteger((unsigned) SymbolExtentKind); in Profile() 208 profile.AddInteger((unsigned) SymbolMetadataKind); in Profile() 212 profile.AddInteger(Count); in Profile() 246 ID.AddInteger((unsigned) SymbolCastKind); in Profile() 303 ID.AddInteger((unsigned) SymIntExprKind); in Profile() 305 ID.AddInteger(op); in Profile() [all …]
|
D | DynamicTypeInfo.h | 42 ID.AddInteger((unsigned)CanBeASubClass); in Profile()
|
/external/perfetto/src/trace_processor/perfetto_sql/intrinsics/functions/ |
D | graph_scan.cc | 70 RETURN_IF_ERROR(out.AddInteger(0, id)); in InitToOutputAndStepTable() 74 RETURN_IF_ERROR(step.AddInteger(0, outgoing)); in InitToOutputAndStepTable() 86 RETURN_IF_ERROR(out.AddInteger(j, r)); in InitToOutputAndStepTable() 88 RETURN_IF_ERROR(step.AddInteger(j, r)); in InitToOutputAndStepTable() 132 RETURN_IF_ERROR(out.AddInteger(0, id)); in SqliteToOutputAndStepTable() 135 RETURN_IF_ERROR(step.AddInteger(0, outgoing)); in SqliteToOutputAndStepTable() 147 RETURN_IF_ERROR(out.AddInteger(i, a)); in SqliteToOutputAndStepTable() 149 RETURN_IF_ERROR(step.AddInteger(i, a)); in SqliteToOutputAndStepTable() 298 RETURN_IF_ERROR(res.AddInteger(0, id)); in PushDownAggregates() 302 RETURN_IF_ERROR(dt.builder.AddInteger(0, outgoing)); in PushDownAggregates() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | CSEInfo.cpp | 284 ID.AddInteger(Opc); in addNodeIDOpcode() 291 ID.AddInteger(Val); in addNodeIDRegType() 309 ID.AddInteger(Imm); in addNodeIDImmediate() 315 ID.AddInteger(Reg); in addNodeIDRegNum() 334 ID.AddInteger(Flag); in addNodeIDFlag() 355 ID.AddInteger(MO.getImm()); in addNodeIDMachineOperand() 361 ID.AddInteger(MO.getPredicate()); in addNodeIDMachineOperand()
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/GlobalISel/ |
D | CSEInfo.cpp | 334 ID.AddInteger(Opc); in addNodeIDOpcode() 341 ID.AddInteger(Val); in addNodeIDRegType() 359 ID.AddInteger(Imm); in addNodeIDImmediate() 365 ID.AddInteger(Reg); in addNodeIDRegNum() 384 ID.AddInteger(Flag); in addNodeIDFlag() 414 ID.AddInteger(MO.getImm()); in addNodeIDMachineOperand() 420 ID.AddInteger(MO.getPredicate()); in addNodeIDMachineOperand()
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 637 ID.AddInteger(OpC); in AddNodeIDOpcode() 651 ID.AddInteger(Op.getResNo()); in AddNodeIDOperands() 660 ID.AddInteger(Op.getResNo()); in AddNodeIDOperands() 696 ID.AddInteger(GA->getOffset()); in AddNodeIDCustom() 697 ID.AddInteger(GA->getTargetFlags()); in AddNodeIDCustom() 704 ID.AddInteger(cast<RegisterSDNode>(N)->getReg()); in AddNodeIDCustom() 714 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex()); in AddNodeIDCustom() 719 ID.AddInteger(cast<LifetimeSDNode>(N)->getSize()); in AddNodeIDCustom() 720 ID.AddInteger(cast<LifetimeSDNode>(N)->getOffset()); in AddNodeIDCustom() 724 ID.AddInteger(cast<PseudoProbeSDNode>(N)->getGuid()); in AddNodeIDCustom() [all …]
|
/external/clang/include/clang/CodeGen/ |
D | CGFunctionInfo.h | 621 ID.AddInteger(getASTCallingConvention()); in Profile() 627 ID.AddInteger(RegParm); in Profile() 628 ID.AddInteger(Required.getOpaqueData()); in Profile() 632 ID.AddInteger(paramInfo.getOpaqueValue()); in Profile() 646 ID.AddInteger(info.getCC()); in Profile() 652 ID.AddInteger(info.getRegParm()); in Profile() 653 ID.AddInteger(required.getOpaqueData()); in Profile() 657 ID.AddInteger(paramInfo.getOpaqueValue()); in Profile()
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/CSKY/ |
D | CSKYConstantPoolValue.cpp | 63 ID.AddInteger(LabelId); in addSelectionDAGCSEId() 64 ID.AddInteger(PCAdjust); in addSelectionDAGCSEId() 65 ID.AddInteger(Modifier); in addSelectionDAGCSEId() 220 ID.AddInteger(JTI); in addSelectionDAGCSEId()
|
/external/perfetto/src/trace_processor/util/ |
D | proto_to_args_parser.cc | 342 delegate.AddInteger(key_prefix_, field.as_int32()); in ParseSimpleField() 345 delegate.AddInteger(key_prefix_, field.as_sint32()); in ParseSimpleField() 349 delegate.AddInteger(key_prefix_, field.as_int64()); in ParseSimpleField() 352 delegate.AddInteger(key_prefix_, field.as_sint64()); in ParseSimpleField() 419 delegate.AddInteger(key_prefix_, in AddDefault() 423 delegate.AddInteger( in AddDefault() 430 delegate.AddInteger(key_prefix_, in AddDefault() 434 delegate.AddInteger( in AddDefault()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | FoldingSet.h | 318 void AddInteger(signed I); 319 void AddInteger(unsigned I); 320 void AddInteger(long I); 321 void AddInteger(unsigned long I); 322 void AddInteger(long long I); 323 void AddInteger(unsigned long long I); 324 void AddBoolean(bool B) { AddInteger(B ? 1U : 0U); } in AddBoolean()
|
/external/llvm/include/llvm/ADT/ |
D | FoldingSet.h | 324 void AddInteger(signed I); 325 void AddInteger(unsigned I); 326 void AddInteger(long I); 327 void AddInteger(unsigned long I); 328 void AddInteger(long long I); 329 void AddInteger(unsigned long long I); 330 void AddBoolean(bool B) { AddInteger(B ? 1U : 0U); } in AddBoolean()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | MemRegion.cpp | 245 ID.AddInteger(static_cast<unsigned>(getKind())); in Profile() 249 ID.AddInteger(static_cast<unsigned>(getKind())); in Profile() 254 ID.AddInteger(static_cast<unsigned>(getKind())); in Profile() 261 ID.AddInteger(static_cast<unsigned>(StringRegionKind)); in ProfileRegion() 269 ID.AddInteger(static_cast<unsigned>(ObjCStringRegionKind)); in ProfileRegion() 277 ID.AddInteger(static_cast<unsigned>(AllocaRegionKind)); in ProfileRegion() 279 ID.AddInteger(cnt); in ProfileRegion() 294 ID.AddInteger(static_cast<unsigned>(CompoundLiteralRegionKind)); in ProfileRegion() 302 ID.AddInteger(static_cast<unsigned>(CXXThisRegionKind)); in ProfileRegion() 319 ID.AddInteger(static_cast<unsigned>(k)); in ProfileRegion() [all …]
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 342 ID.AddInteger(OpC); in AddNodeIDOpcode() 357 ID.AddInteger(Op.getResNo()); in AddNodeIDOperands() 367 ID.AddInteger(Op.getResNo()); in AddNodeIDOperands() 404 ID.AddInteger(GA->getOffset()); in AddNodeIDCustom() 405 ID.AddInteger(GA->getTargetFlags()); in AddNodeIDCustom() 406 ID.AddInteger(GA->getAddressSpace()); in AddNodeIDCustom() 413 ID.AddInteger(cast<RegisterSDNode>(N)->getReg()); in AddNodeIDCustom() 423 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex()); in AddNodeIDCustom() 427 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex()); in AddNodeIDCustom() 428 ID.AddInteger(cast<JumpTableSDNode>(N)->getTargetFlags()); in AddNodeIDCustom() [all …]
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/IR/ |
D | AttributeImpl.h | 91 ID.AddInteger(Kind); in Profile() 97 ID.AddInteger(Kind); in Profile() 98 ID.AddInteger(Val); in Profile() 108 ID.AddInteger(Kind); in Profile()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 452 ID.AddInteger(OpC); in AddNodeIDOpcode() 466 ID.AddInteger(Op.getResNo()); in AddNodeIDOperands() 475 ID.AddInteger(Op.getResNo()); in AddNodeIDOperands() 511 ID.AddInteger(GA->getOffset()); in AddNodeIDCustom() 512 ID.AddInteger(GA->getTargetFlags()); in AddNodeIDCustom() 519 ID.AddInteger(cast<RegisterSDNode>(N)->getReg()); in AddNodeIDCustom() 529 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex()); in AddNodeIDCustom() 534 ID.AddInteger(cast<LifetimeSDNode>(N)->getSize()); in AddNodeIDCustom() 535 ID.AddInteger(cast<LifetimeSDNode>(N)->getOffset()); in AddNodeIDCustom() 540 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex()); in AddNodeIDCustom() [all …]
|
/external/perfetto/src/trace_processor/importers/proto/winscope/ |
D | viewcapture_args_parser.cc | 35 void ViewCaptureArgsParser::AddInteger(const Key& key, int64_t value) { in AddInteger() function in perfetto::trace_processor::ViewCaptureArgsParser 39 ArgsParser::AddInteger(key, value); in AddInteger()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | AttributeImpl.h | 90 ID.AddInteger(Kind); in Profile() 91 if (Val) ID.AddInteger(Val); in Profile() 101 ID.AddInteger(Kind); in Profile()
|
/external/llvm/unittests/ADT/ |
D | FoldingSet.cpp | 44 ID.AddInteger(Key); in Profile() 45 ID.AddInteger(Value); in Profile()
|
/external/llvm/lib/IR/ |
D | AttributeImpl.h | 81 ID.AddInteger(Kind); in Profile() 82 if (Val) ID.AddInteger(Val); in Profile() 323 ID.AddInteger(Nodes[i].first); in Profile()
|