HomeSort by relevance Sort by last modified time
    Searched refs:map_entry (Results 1 - 25 of 46) sorted by null

1 2

  /system/bt/osi/src/
allocation_tracker.cc 113 auto map_entry = allocations.find(return_ptr); local
115 if (map_entry != allocations.end()) {
116 allocation = map_entry->second;
142 auto map_entry = allocations.find(ptr);
143 CHECK(map_entry != allocations.end());
144 allocation_t* allocation = map_entry->second;
  /external/wayland/src/
wayland-util.c 171 union map_entry { union
197 union map_entry *start, *entry;
229 union map_entry *start;
257 union map_entry *start;
296 union map_entry *start;
320 union map_entry *start;
343 union map_entry *start;
366 union map_entry *start, *end, *p;
370 end = (union map_entry *) ((char *) entries->data + entries->size);
  /frameworks/base/tools/aapt2/format/binary/
BinaryResourceParser.cpp 488 for (const ResTable_map& map_entry : map) {
489 if (Res_INTERNALID(util::DeviceToHost32(map_entry.name.ident))) {
494 style_entry.key = Reference(util::DeviceToHost32(map_entry.name.ident));
495 style_entry.value = ParseValue(name, config, map_entry.value);
519 for (const ResTable_map& map_entry : map) {
520 if (Res_INTERNALID(util::DeviceToHost32(map_entry.name.ident))) {
521 switch (util::DeviceToHost32(map_entry.name.ident)) {
523 attr->min_int = static_cast<int32_t>(map_entry.value.data);
526 attr->max_int = static_cast<int32_t>(map_entry.value.data);
534 symbol.value = util::DeviceToHost32(map_entry.value.data)
    [all...]
BinaryResourceParser.h 81 bool CollectMetaData(const android::ResTable_map& map_entry, Value* value);
  /system/extras/simpleperf/scripts/
debug_unwind_reporter.py 65 def add(self, pid, map_entry):
70 if entry.end <= map_entry.start:
72 elif entry.start < map_entry.start:
73 entry.end = map_entry.start
77 new_list.append(map_entry)
79 if entry.start >= map_entry.end:
81 elif entry.end > map_entry.end:
82 entry.start = map_entry.end
85 new_list.append(map_entry)
358 map_entry = process_maps.find(record.pid, ip
    [all...]
  /external/tensorflow/tensorflow/contrib/session_bundle/
bundle_shim.cc 105 for (const auto& map_entry : input_signature.generic_signature().map()) {
106 internal::AddInputToSignatureDef(map_entry.second.tensor_name(),
107 tensor_name_to_dtype, map_entry.first,
112 for (const auto& map_entry : output_signature.generic_signature().map()) {
113 internal::AddOutputToSignatureDef(map_entry.second.tensor_name(),
114 tensor_name_to_dtype, map_entry.first,
  /frameworks/base/tools/aapt2/process/
SymbolTable.cpp 257 const android::ResTable_map& map_entry = entry[i].map; local
258 if (Res_INTERNALID(map_entry.name.ident)) {
259 switch (map_entry.name.ident) {
261 s->attribute->min_int = static_cast<int32_t>(map_entry.value.data);
264 s->attribute->max_int = static_cast<int32_t>(map_entry.value.data);
271 if (!table.getResourceName(map_entry.name.ident, false, &entry_name)) {
283 symbol.symbol.id = ResourceId(map_entry.name.ident);
284 symbol.value = map_entry.value.data;
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_map_field.cc 75 GOOGLE_CHECK(message->options().map_entry());
82 GOOGLE_CHECK(message->options().map_entry());
javanano_helpers.h 188 return descriptor->options().map_entry() &&
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_helpers.h 113 return descriptor->options().map_entry();
  /external/tensorflow/tensorflow/compiler/tf2xla/
tf2xla_util.cc 219 auto& map_entry = find_it->second; local
220 if (map_entry.first) {
223 map_entry.first = true;
226 for (const string& in_edge : map_entry.second->input()) {
  /frameworks/base/libs/androidfw/
AssetManager2.cpp 600 const ResTable_map* map_entry = local
602 const ResTable_map* const map_entry_end = map_entry + dtohl(map->count);
613 const size_t entry_count = map_entry_end - map_entry;
617 for (; map_entry != map_entry_end; ++map_entry) {
618 uint32_t new_key = dtohl(map_entry->name.ident);
632 new_entry->value.copyFrom_dtoh(map_entry->value);
672 while (map_entry != map_entry_end && parent_entry != parent_entry_end) {
673 uint32_t child_key = dtohl(map_entry->name.ident);
689 new_entry->value.copyFrom_dtoh(map_entry->value)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_map_field.cc 49 GOOGLE_CHECK(message->options().map_entry());
56 GOOGLE_CHECK(message->options().map_entry());
java_map_field_lite.cc 49 GOOGLE_CHECK(message->options().map_entry());
56 GOOGLE_CHECK(message->options().map_entry());
java_helpers.h 327 return descriptor->options().map_entry();
  /external/perfetto/src/traced/probes/filesystem/
inode_file_data_source.cc 59 for (const auto& map_entry :
61 m.emplace(map_entry.mountpoint(), map_entry.scan_roots());
  /external/protobuf/src/google/protobuf/compiler/objectivec/
objectivec_helpers.h 116 return descriptor->options().map_entry();
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/objectivec/
objectivec_helpers.h 120 return descriptor->options().map_entry();
  /external/google-breakpad/src/common/
dwarf_cu_to_module.cc 807 dwarf2reader::SectionMap::const_iterator map_entry local
811 if (map_entry == section_map.end())
812 map_entry = section_map.find("__debug_line");
813 if (map_entry == section_map.end()) {
817 const char *section_start = map_entry->second.first;
818 uint64 section_length = map_entry->second.second;
    [all...]
  /external/v8/src/profiler/
profile-generator.cc 196 base::HashMap::Entry* map_entry = local
198 return map_entry != NULL ?
199 reinterpret_cast<ProfileNode*>(map_entry->value) : NULL;
204 base::HashMap::Entry* map_entry = local
206 ProfileNode* node = reinterpret_cast<ProfileNode*>(map_entry->value);
209 map_entry->value = node;
  /external/protobuf/src/google/protobuf/compiler/ruby/
ruby_generator.cc 188 if (message->options().map_entry()) {
267 if (message->options().map_entry()) {
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.h 244 return descriptor->options().map_entry();
  /external/protobuf/src/google/protobuf/util/
type_resolver_util.cc 136 if (options.map_entry()) {
138 option->set_name("map_entry");
  /external/tensorflow/tensorflow/python/util/protobuf/
compare.py 164 desc.message_type.GetOptions().map_entry):
  /external/protobuf/src/google/protobuf/
map_field.h 39 #include <google/protobuf/map_entry.h>

Completed in 631 milliseconds

1 2