Home
last modified time | relevance | path

Searched refs:symbol_count (Results 1 – 3 of 3) sorted by relevance

/system/bt/gd/packet/parser/
Dgen_cpp.cc251 std::ofstream& get_out_file(size_t symbol_count, size_t symbol_total, std::vector<std::ofstream>* o… in get_out_file() argument
253 auto file_index = std::min(symbol_count / symbols_per_shard, out_files->size() - 1); in get_out_file()
343 size_t symbol_count = 0; in generate_pybind11_sources_one_file() local
349 auto& out_file = get_out_file(symbol_count, symbol_total, &out_file_shards); in generate_pybind11_sources_one_file()
352 symbol_count++; in generate_pybind11_sources_one_file()
359 auto& out_file = get_out_file(symbol_count, symbol_total, &out_file_shards); in generate_pybind11_sources_one_file()
362 symbol_count++; in generate_pybind11_sources_one_file()
367 auto& out_file = get_out_file(symbol_count, symbol_total, &out_file_shards); in generate_pybind11_sources_one_file()
370 symbol_count++; in generate_pybind11_sources_one_file()
374 auto& out_file = get_out_file(symbol_count, symbol_total, &out_file_shards); in generate_pybind11_sources_one_file()
[all …]
/system/extras/simpleperf/
Drecord_file_writer.cpp358 uint32_t symbol_count = file.symbols.size() + file.symbol_ptrs.size(); in WriteFileFeature() local
360 symbol_count * (sizeof(uint64_t) + sizeof(uint32_t)); in WriteFileFeature()
379 MoveToBinaryFormat(symbol_count, p); in WriteFileFeature()
Drecord_file_reader.cpp524 uint32_t symbol_count; in ReadFileFeature() local
525 MoveFromBinaryFormat(symbol_count, p); in ReadFileFeature()
527 file->symbols.reserve(symbol_count); in ReadFileFeature()
528 for (uint32_t i = 0; i < symbol_count; ++i) { in ReadFileFeature()