Home
last modified time | relevance | path

Searched defs:AddInteger (Results 1 – 14 of 14) sorted by relevance

/aosp_15_r20/external/llvm/lib/Support/
H A DFoldingSet.cpp60 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
69 void FoldingSetNodeID::AddInteger(unsigned long I) { in AddInteger() function in FoldingSetNodeID
78 void FoldingSetNodeID::AddInteger(long long I) { in AddInteger() function in FoldingSetNodeID
81 void FoldingSetNodeID::AddInteger(unsigned long long I) { in AddInteger() function in FoldingSetNodeID
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DFoldingSet.cpp60 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
69 void FoldingSetNodeID::AddInteger(unsigned long I) { in AddInteger() function in FoldingSetNodeID
78 void FoldingSetNodeID::AddInteger(long long I) { in AddInteger() function in FoldingSetNodeID
81 void FoldingSetNodeID::AddInteger(unsigned long long I) { in AddInteger() function in FoldingSetNodeID
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ADT/
DFoldingSet.h341 void AddInteger(signed I) { Bits.push_back(I); } in AddInteger() function
342 void AddInteger(unsigned I) { Bits.push_back(I); } in AddInteger() function
343 void AddInteger(long I) { AddInteger((unsigned long)I); } in AddInteger() function
344 void AddInteger(unsigned long I) { in AddInteger() function
353 void AddInteger(long long I) { AddInteger((unsigned long long)I); } in AddInteger() function
354 void AddInteger(unsigned long long I) { in AddInteger() function
358 void AddInteger(const APInt &Int) { in AddInteger() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ADT/
DFoldingSet.h341 void AddInteger(signed I) { Bits.push_back(I); } in AddInteger() function
342 void AddInteger(unsigned I) { Bits.push_back(I); } in AddInteger() function
343 void AddInteger(long I) { AddInteger((unsigned long)I); } in AddInteger() function
344 void AddInteger(unsigned long I) { in AddInteger() function
353 void AddInteger(long long I) { AddInteger((unsigned long long)I); } in AddInteger() function
354 void AddInteger(unsigned long long I) { in AddInteger() function
358 void AddInteger(const APInt &Int) { in AddInteger() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ADT/
DFoldingSet.h340 void AddInteger(signed I) { Bits.push_back(I); } in AddInteger() function
341 void AddInteger(unsigned I) { Bits.push_back(I); } in AddInteger() function
342 void AddInteger(long I) { AddInteger((unsigned long)I); } in AddInteger() function
343 void AddInteger(unsigned long I) { in AddInteger() function
352 void AddInteger(long long I) { AddInteger((unsigned long long)I); } in AddInteger() function
353 void AddInteger(unsigned long long I) { in AddInteger() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ADT/
DFoldingSet.h340 void AddInteger(signed I) { Bits.push_back(I); } in AddInteger() function
341 void AddInteger(unsigned I) { Bits.push_back(I); } in AddInteger() function
342 void AddInteger(long I) { AddInteger((unsigned long)I); } in AddInteger() function
343 void AddInteger(unsigned long I) { in AddInteger() function
352 void AddInteger(long long I) { AddInteger((unsigned long long)I); } in AddInteger() function
353 void AddInteger(unsigned long long I) { in AddInteger() function
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ADT/
H A DFoldingSet.h339 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
351 void AddInteger(long long I) { AddInteger((unsigned long long)I); } in AddInteger() function
352 void AddInteger(unsigned long long I) { in AddInteger() function
/aosp_15_r20/external/perfetto/src/trace_processor/importers/proto/winscope/
H A Dviewcapture_args_parser.cc35 void ViewCaptureArgsParser::AddInteger(const Key& key, int64_t value) { in AddInteger() function in perfetto::trace_processor::ViewCaptureArgsParser
/aosp_15_r20/external/perfetto/src/trace_processor/importers/proto/
H A Dargs_parser.cc39 void ArgsParser::AddInteger(const Key& key, int64_t value) { in AddInteger() function in perfetto::trace_processor::ArgsParser
/aosp_15_r20/external/perfetto/src/trace_processor/perfetto_sql/intrinsics/table_functions/
H A Dwinscope_proto_to_args_with_defaults.cc48 void AddInteger(const Key& key, int64_t res) override { in AddInteger() function in perfetto::trace_processor::__anon2f2e44ad0111::Delegate
/aosp_15_r20/external/perfetto/src/trace_processor/util/
H A Ddebug_annotation_parser_unittest.cc70 void AddInteger(const Key& key, int64_t value) override { in AddInteger() function in perfetto::trace_processor::util::__anon6929d5000111::DebugAnnotationParserTest
H A Dproto_to_args_parser_unittest.cc70 void AddInteger(const Key& key, int64_t value) override { in AddInteger() function in perfetto::trace_processor::util::__anon155f11610111::ProtoToArgsParserTest
/aosp_15_r20/external/perfetto/src/trace_processor/db/
H A Druntime_table.cc208 base::Status RuntimeTable::Builder::AddInteger(uint32_t idx, int64_t res) { in AddInteger() function in perfetto::trace_processor::RuntimeTable::Builder
/aosp_15_r20/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_object_unittest.cpp742 TEST(PDFArrayTest, AddInteger) { in TEST() argument