Home
last modified time | relevance | path

Searched refs:vector (Results 1 – 25 of 26) sorted by relevance

12

/bionic/tools/relocation_packer/src/
Dsleb128.h37 void EnqueueAll(const std::vector<int_t>& values);
41 void GetEncoding(std::vector<uint8_t>* encoding) { *encoding = encoding_; } in GetEncoding()
45 std::vector<uint8_t> encoding_;
54 explicit Sleb128Decoder(const std::vector<uint8_t>& encoding, size_t start_with);
64 void DequeueAll(std::vector<int_t>* values);
68 std::vector<uint8_t> encoding_;
Dpacker.h25 static void PackRelocations(const std::vector<typename ELF::Rela>& relocations,
26 std::vector<uint8_t>* packed);
31 static void UnpackRelocations(const std::vector<uint8_t>& packed,
32 std::vector<typename ELF::Rela>* relocations);
Dpacker.cc18 void RelocationPacker<ELF>::PackRelocations(const std::vector<typename ELF::Rela>& relocations, in PackRelocations()
19 std::vector<uint8_t>* packed) { in PackRelocations()
21 std::vector<typename ELF::Addr> packed_words; in PackRelocations()
31 std::vector<uint8_t> sleb128_packed; in PackRelocations()
47 const std::vector<uint8_t>& packed, in UnpackRelocations()
48 std::vector<typename ELF::Rela>* relocations) { in UnpackRelocations()
50 std::vector<typename ELF::Addr> packed_words; in UnpackRelocations()
Ddelta_encoder.h108 static void Encode(const std::vector<ElfRela>& relocations,
109 std::vector<ElfAddr>* packed);
114 static void Decode(const std::vector<ElfAddr>& packed,
115 std::vector<ElfRela>* relocations);
118 static void DetectGroup(const std::vector<ElfRela>& relocations,
Delf_file.h70 bool PackTypedRelocations(std::vector<typename ELF::Rela>* relocations);
74 bool UnpackTypedRelocations(const std::vector<uint8_t>& packed);
81 std::vector<typename ELF::Rela>* relocations);
92 std::vector<typename ELF::Rela>* rela_vector);
94 static void ConvertRelaVectorToRelVector(const std::vector<typename ELF::Rela>& rela_vector,
95 std::vector<typename ELF::Rel>* rel_vector);
Dsleb128.cc75 void Sleb128Encoder<uint_t>::EnqueueAll(const std::vector<uint_t>& values) { in EnqueueAll()
83 Sleb128Decoder<uint_t>::Sleb128Decoder(const std::vector<uint8_t>& encoding, size_t start_with) { in Sleb128Decoder()
120 void Sleb128Decoder<uint_t>::DequeueAll(std::vector<uint_t>* values) { in DequeueAll()
Dpacker_unittest.cc17 std::vector<typename ELF::Rela>* relocations) { in AddRelocation()
40 std::vector<typename ELF::Rela> relocations; in DoPackNoAddend()
41 std::vector<uint8_t> packed; in DoPackNoAddend()
97 std::vector<typename ELF::Rela> relocations; in DoUnpackNoAddend()
98 std::vector<uint8_t> packed; in DoUnpackNoAddend()
149 std::vector<typename ELF::Rela> relocations; in DoPackWithAddend()
161 std::vector<uint8_t> packed; in DoPackWithAddend()
226 std::vector<uint8_t> packed; in DoUnpackWithAddend()
273 std::vector<typename ELF::Rela> relocations; in DoUnpackWithAddend()
Dsleb128_unittest.cc14 std::vector<uint64_t> values; in TEST()
31 std::vector<uint8_t> encoding; in TEST()
91 std::vector<uint8_t> encoding; in TEST()
150 std::vector<uint64_t> dequeued; in TEST()
Ddelta_encoder_unittest.cc17 std::vector<T>* relocations) { in AddRelocation()
41 std::vector<typename ELF::Rela> relocations; in encode()
42 std::vector<typename ELF::Addr> packed; in encode()
159 std::vector<typename ELF::Addr> packed; in decode()
160 std::vector<typename ELF::Rela> relocations; in decode()
Delf_file.cc437 std::vector<typename ELF::Dyn> dynamics( in AdjustDynamicSectionForHole()
575 std::vector<typename ELF::Dyn>* dynamics) { in FindDynamicEntry()
591 std::vector<typename ELF::Dyn>* dynamics) { in ReplaceDynamicEntry()
615 std::vector<typename ELF::Rela> relocations; in PackRelocations()
626 relocations = std::vector<typename ELF::Rela>( in PackRelocations()
640 bool ElfFile<ELF>::PackTypedRelocations(std::vector<typename ELF::Rela>* relocations) { in PackTypedRelocations()
660 std::vector<uint8_t> packed; in PackTypedRelocations()
700 std::vector<uint8_t> padding(data_padding_bytes, 0); in PackTypedRelocations()
706 std::vector<Rela> unpacked; in PackTypedRelocations()
725 std::vector<typename ELF::Dyn> dynamics( in PackTypedRelocations()
[all …]
Ddelta_encoder.cc36 void RelocationDeltaCodec<ELF>::Encode(const std::vector<ElfRela>& relocations, in Encode()
37 std::vector<ElfAddr>* packed) { in Encode()
117 void RelocationDeltaCodec<ELF>::Decode(const std::vector<ElfAddr>& packed, in Decode()
118 std::vector<ElfRela>* relocations) { in Decode()
248 void RelocationDeltaCodec<ELF>::DetectGroup(const std::vector<ElfRela>& relocations, in DetectGroup()
/bionic/benchmarks/benchmark/
DBenchmark.h37 virtual size_t RunAllArgs(std::vector<regex_t*>&) = 0;
44 static size_t RunAll(std::vector<regex_t*>&);
46 static std::vector<Benchmark*>& List();
69 bool ShouldRun(std::vector<regex_t*>&, T arg);
81 virtual size_t RunAllArgs(std::vector<regex_t*>& regs) override { in RunAllArgs()
126 virtual size_t RunAllArgs(std::vector<regex_t*>& regs) override { in RunAllArgs()
145 std::vector<T> args_;
/bionic/benchmarks/
DBenchmark.cpp44 std::vector<Benchmark*>& Benchmark::List() { in List()
45 static std::vector<Benchmark*> list; in List()
57 size_t Benchmark::RunAll(std::vector<regex_t*>& regs) { in RunAll()
74 bool BenchmarkT<T>::ShouldRun(std::vector<regex_t*>& regs, T arg) { in ShouldRun()
Dmain.cpp32 std::vector<regex_t*> regs; in main()
/bionic/tests/
Ddirent_test.cpp42 std::set<std::string>& name_set, std::vector<std::string>& name_list) { in ScanEntries()
63 std::vector<std::string> unsorted_name_list; in TEST()
70 std::vector<std::string> sorted_name_list(unsorted_name_list); in TEST()
76 std::vector<std::string> unsorted_name_list64; in TEST()
211 std::vector<std::string> pass1; in TEST()
221 std::vector<std::string> pass2; in TEST()
238 std::vector<long> offset_list; in TEST()
239 std::vector<std::string> name_list; in TEST()
Dgtest_main.cpp196 std::vector<Test> test_list_;
230 static bool EnumerateTests(int argc, char** argv, std::vector<TestCase>& testcase_list) { in EnumerateTests()
279 static void OnTestIterationStartPrint(const std::vector<TestCase>& testcase_list, size_t iteration, in OnTestIterationStartPrint()
347 static void OnTestIterationEndPrint(const std::vector<TestCase>& testcase_list, size_t /*iteration*… in OnTestIterationEndPrint()
350 std::vector<std::string> fail_test_name_list; in OnTestIterationEndPrint()
351 std::vector<std::pair<std::string, int64_t>> timeout_test_list; in OnTestIterationEndPrint()
354 std::vector<std::tuple<std::string, int64_t, int>> slow_test_list; in OnTestIterationEndPrint()
442 const std::vector<TestCase>& testcase_list, in OnTestIterationEndXmlPrint()
453 std::vector<size_t> failed_count_list(testcase_list.size(), 0); in OnTestIterationEndXmlPrint()
454 std::vector<int64_t> elapsed_time_list(testcase_list.size(), 0); in OnTestIterationEndXmlPrint()
[all …]
Dutils.h40 static bool parse_maps(std::vector<map_record>* maps) { in parse_maps()
Dsearch_test.cpp61 static std::vector<std::string> g_nodes;
Dpthread_test.cpp67 std::vector<pthread_key_t> keys; in TEST()
92 std::vector<pthread_key_t> keys; in TEST()
1506 std::vector<char*> allocated_array;
Dstdio_test.cpp928 std::vector<char> buf(n, 0); in test_fread_from_write_only_stream()
953 std::vector<char> buf(n, 0); in test_fwrite_after_fread()
Dunistd_test.cpp331 std::vector<char*> old_environ; in TEST()
/bionic/linker/
Dlinker_allocator.h97 std::vector<small_object_page_record, linker_vector_allocator<small_object_page_record>>
Dlinker.h167 std::vector<version_info> version_infos;
Dlinker.cpp91 static std::vector<std::string> g_ld_library_paths;
92 static std::vector<std::string> g_ld_preload_names;
94 static std::vector<soinfo*> g_ld_preloads;
285 std::vector<std::string>* paths) { in parse_path()
318 std::vector<char> buf(PATH_MAX), proc_self_fd(PATH_MAX); in realpath_fd()
1429 size_t library_names_count, soinfo* soinfos[], std::vector<soinfo*>* ld_preloads, in find_libraries()
/bionic/libc/kernel/uapi/asm-x86/asm/
Dkvm.h110 __u8 vector; member

12