/external/openfst/src/include/fst/script/ |
D | map.h | 58 MapType map_type = args->args.arg2; in Map() local 66 if (map_type == ARC_SUM_MAPPER) { in Map() 69 } else if (map_type == IDENTITY_MAPPER) { in Map() 72 } else if (map_type == INVERT_MAPPER) { in Map() 75 } else if (map_type == PLUS_MAPPER) { in Map() 78 } else if (map_type == QUANTIZE_MAPPER) { in Map() 81 } else if (map_type == RMWEIGHT_MAPPER) { in Map() 84 } else if (map_type == SUPERFINAL_MAPPER) { in Map() 87 } else if (map_type == TIMES_MAPPER) { in Map() 90 } else if (map_type == TO_LOG_MAPPER) { in Map() [all …]
|
/external/linux-tools-perf/src/tools/perf/util/ |
D | map.h | 11 enum map_type { enum 91 void map__init(struct map *map, enum map_type type, 96 char *filename, enum map_type type); 97 struct map *map__new2(u64 start, struct dso *dso, enum map_type type); 115 enum map_type type, int verbose, FILE *fp); 124 struct map_groups *parent, enum map_type type); 143 enum map_type type, u64 addr) in map_groups__find() 149 enum map_type type) in map_groups__first() 160 enum map_type type, u64 addr, 165 enum map_type type, [all …]
|
D | dso.h | 99 static inline void dso__set_loaded(struct dso *dso, enum map_type type) in dso__set_loaded() 112 bool dso__loaded(const struct dso *dso, enum map_type type); 114 bool dso__sorted_by_name(const struct dso *dso, enum map_type type); 115 void dso__set_sorted_by_name(struct dso *dso, enum map_type type); 116 void dso__sort_by_name(struct dso *dso, enum map_type type); 151 enum map_type type, FILE *fp); 152 size_t dso__fprintf(struct dso *dso, enum map_type type, FILE *fp);
|
D | symbol.h | 214 struct symbol *dso__find_symbol(struct dso *dso, enum map_type type, 216 struct symbol *dso__find_symbol_by_name(struct dso *dso, enum map_type type, 218 struct symbol *dso__first_symbol(struct dso *dso, enum map_type type); 236 bool symbol_type__is_a(char symbol_type, enum map_type map_type); 249 void __map_groups__fixup_end(struct map_groups *mg, enum map_type type);
|
D | thread.h | 43 enum map_type type, u64 addr) in thread__find_map() 49 u8 cpumode, enum map_type type, u64 addr, 53 u8 cpumode, enum map_type type, u64 addr,
|
D | machine.h | 36 struct map *machine__kernel_map(struct machine *machine, enum map_type type) in machine__kernel_map() 117 enum map_type type, u64 addr, in machine__find_kernel_symbol() 148 enum map_type type, symbol_filter_t filter); 149 int machine__load_vmlinux_path(struct machine *machine, enum map_type type,
|
D | map.c | 34 void map__init(struct map *map, enum map_type type, in map__init() 53 enum map_type type) in map__new() 110 struct map *map__new2(u64 start, struct dso *dso, enum map_type type) in map__new2() 337 enum map_type type, u64 addr, in map_groups__find_symbol() 353 enum map_type type, in map_groups__find_symbol_by_name() 375 enum map_type type, int verbose, FILE *fp) in __map_groups__fprintf_maps() 402 enum map_type type, in __map_groups__fprintf_removed_maps() 507 struct map_groups *parent, enum map_type type) in map_groups__clone()
|
D | symbol.c | 59 bool symbol_type__is_a(char symbol_type, enum map_type map_type) in symbol_type__is_a() argument 63 switch (map_type) { in symbol_type__is_a() 193 void __map_groups__fixup_end(struct map_groups *mg, enum map_type type) in __map_groups__fixup_end() 408 enum map_type type, u64 addr) in dso__find_symbol() 413 struct symbol *dso__first_symbol(struct dso *dso, enum map_type type) in dso__first_symbol() 418 struct symbol *dso__find_symbol_by_name(struct dso *dso, enum map_type type, in dso__find_symbol_by_name() 424 void dso__sort_by_name(struct dso *dso, enum map_type type) in dso__sort_by_name() 432 enum map_type type, FILE *fp) in dso__fprintf_symbols_by_name() 744 enum map_type type; 1108 enum map_type type, const char *name) in map_groups__find_by_name()
|
D | dso.c | 397 bool dso__loaded(const struct dso *dso, enum map_type type) in dso__loaded() 402 bool dso__sorted_by_name(const struct dso *dso, enum map_type type) in dso__sorted_by_name() 407 void dso__set_sorted_by_name(struct dso *dso, enum map_type type) in dso__set_sorted_by_name() 590 size_t dso__fprintf(struct dso *dso, enum map_type type, FILE *fp) in dso__fprintf()
|
D | machine.c | 509 enum map_type type; in __machine__create_kernel_maps() 533 enum map_type type; in machine__destroy_kernel_maps() 637 enum map_type type, symbol_filter_t filter) in machine__load_kallsyms() 655 int machine__load_vmlinux_path(struct machine *machine, enum map_type type, in machine__load_vmlinux_path() 1006 enum map_type type; in machine__process_mmap2_event() 1053 enum map_type type; in machine__process_mmap_event()
|
D | event.c | 624 enum map_type type, u64 addr, in thread__find_addr_map() 702 u8 cpumode, enum map_type type, u64 addr, in thread__find_addr_location()
|
D | symbol-elf.c | 70 static bool elf_sym__is_a(GElf_Sym *sym, enum map_type type) in elf_sym__is_a() 107 enum map_type type) in elf_sec__is_a()
|
/external/lldb/test/lang/cpp/stl/ |
D | TestSTL.py | 122 map_type = associative_array.GetType() 123 self.DebugSBType(map_type) 124 self.assertTrue(map_type, VALID_TYPE) 125 num_template_args = map_type.GetNumberOfTemplateArguments() 131 t = map_type.GetTemplateArgumentType(i)
|
/external/openfst/src/script/ |
D | map.cc | 24 FstClass *Map(const FstClass& ifst, MapType map_type, in Map() argument 26 MapInnerArgs args(ifst, map_type, delta, w); in Map()
|
/external/lldb/examples/synthetic/ |
D | gnu_libstdcpp.py | 276 map_type = self.valobj.GetType() 277 if map_type.IsReferenceType(): 279 map_type = map_type.GetDereferencedType() 281 map_arg_0 = str(map_type.GetTemplateArgumentType(0).GetName()) 282 map_arg_1 = str(map_type.GetTemplateArgumentType(1).GetName())
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
D | d3d11_objects.h | 407 D3D10_MAP map_type, 412 HRESULT hr = device->Map(this, 0, map_type, map_flags, &msr); 433 D3D10_MAP map_type, 438 HRESULT hr = device->Map(this, subresource, map_type, map_flags, &msr); 462 D3D10_MAP map_type, 467 HRESULT hr = device->Map(this, subresource, map_type, map_flags, &msr); 492 D3D10_MAP map_type, 497 HRESULT hr = device->Map(this, subresource, map_type, map_flags, &msr);
|
D | d3d11_context.h | 1482 D3D11_MAP map_type, in Map() 1495 if(map_type == D3D11_MAP_READ) in Map() 1497 else if(map_type == D3D11_MAP_WRITE) in Map() 1499 else if(map_type == D3D11_MAP_READ_WRITE) in Map() 1501 else if(map_type == D3D11_MAP_WRITE_DISCARD) in Map() 1503 else if(map_type == D3D11_MAP_WRITE_NO_OVERWRITE) in Map() 1507 if(map_type & D3D10_MAP_FLAG_DO_NOT_WAIT) in Map() 1511 if(map_type & D3D10_MAP_FLAG_DO_NOT_WAIT) in Map()
|
/external/libvorbis/lib/ |
D | info.c | 173 _mapping_P[ci->map_type[i]]->free_info(ci->map_param[i]); in vorbis_info_clear() 319 ci->map_type[i]=oggpack_read(opb,16); in _vorbis_unpack_books() 320 if(ci->map_type[i]<0 || ci->map_type[i]>=VI_MAPB)goto err_out; in _vorbis_unpack_books() 321 ci->map_param[i]=_mapping_P[ci->map_type[i]]->unpack(vi,opb); in _vorbis_unpack_books() 528 oggpack_write(opb,ci->map_type[i],16); in _vorbis_pack_books() 529 _mapping_P[ci->map_type[i]]->pack(vi,ci->map_param[i],opb); in _vorbis_pack_books()
|
D | codec_internal.h | 114 int map_type[64]; member
|
D | synthesis.c | 86 type=ci->map_type[ci->mode_param[mode]->mapping]; in vorbis_synthesis()
|
/external/iproute2/tc/ |
D | em_meta.c | 114 static inline int map_type(char k) in map_type() function 180 if (map_type(*p) == TCF_META_TYPE(needed->kind)) in is_compatible() 205 int type = map_type(*p); in list_meta_ids() 278 obj->kind = entry->id | (map_type(entry->mask[0]) << 12); in parse_object()
|
/external/protobuf/src/google/protobuf/compiler/ |
D | importer_unittest.cc | 238 const Descriptor* map_type = file->FindMessageTypeByName("Map"); in TEST_F() local 239 ASSERT_TRUE(map_type != NULL); in TEST_F() 242 const FieldDescriptor* items_field = map_type->FindFieldByName("items"); in TEST_F()
|
/external/kernel-headers/original/uapi/linux/ |
D | bpf.h | 122 __u32 map_type; /* one of enum bpf_map_type */ member
|
/external/openfst/src/bin/ |
D | fstmap.cc | 28 DEFINE_string(map_type, "identity",
|
/external/linux-tools-perf/src/tools/perf/tests/ |
D | vmlinux-kallsyms.c | 28 enum map_type type = MAP__FUNCTION; in test__vmlinux_matches_kallsyms()
|