HomeSort by relevance Sort by last modified time
    Searched defs:map_type (Results 1 - 20 of 20) sorted by null

  /external/libcxx/test/std/containers/associative/map/map.modifiers/
merge.pass.cpp 66 typedef std::map<Counter<int>, int, throw_comparator> map_type; typedef
67 map_type src({{1, 0}, {3, 0}, {5, 0}}, throw_comparator(do_throw));
68 map_type dst({{2, 0}, {4, 0}, {5, 0}}, throw_comparator(do_throw));
82 assert(map_equal(src, map_type({{1, 0}, {3, 0}, {5, 0}}, throw_comparator(do_throw))));
83 assert(map_equal(dst, map_type({{2, 0}, {4, 0}, {5, 0}}, throw_comparator(do_throw))));
  /external/libcxx/test/std/containers/associative/multimap/multimap.modifiers/
merge.pass.cpp 66 typedef std::multimap<Counter<int>, int, throw_comparator> map_type; typedef
67 map_type src({{1, 0}, {3, 0}, {5, 0}}, throw_comparator(do_throw));
68 map_type dst({{2, 0}, {4, 0}, {5, 0}}, throw_comparator(do_throw));
82 assert(map_equal(src, map_type({{1, 0}, {3, 0}, {5, 0}}, throw_comparator(do_throw))));
83 assert(map_equal(dst, map_type({{2, 0}, {4, 0}, {5, 0}}, throw_comparator(do_throw))));
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
merge.pass.cpp 66 typedef std::unordered_map<Counter<int>, int, throw_hasher<Counter<int>>> map_type; typedef
67 map_type src({{1, 0}, {3, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw));
68 map_type dst({{2, 0}, {4, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw));
82 assert(map_equal(src, map_type({{1, 0}, {3, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw))));
83 assert(map_equal(dst, map_type({{2, 0}, {4, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw))));
  /external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/
merge.pass.cpp 66 typedef std::unordered_multimap<Counter<int>, int, throw_hasher<Counter<int>>> map_type; typedef
67 map_type src({{1, 0}, {3, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw));
68 map_type dst({{2, 0}, {4, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw));
82 assert(map_equal(src, map_type({{1, 0}, {3, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw))));
83 assert(map_equal(dst, map_type({{2, 0}, {4, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw))));
  /external/bcc/introspection/
bps.c 161 const char *map_type; local
167 map_type = unknown_map_type;
169 map_type = map_type_strings[map_info->type];
173 map_info->id, map_type, map_info->map_flags, map_info->key_size,
  /external/iproute2/tc/
em_meta.c 114 static inline int map_type(char k) function
181 if (map_type(*p) == TCF_META_TYPE(needed->kind))
206 int type = map_type(*p);
279 obj->kind = entry->id | (map_type(entry->mask[0]) << 12);
  /external/tensorflow/tensorflow/compiler/tf2tensorrt/utils/
trt_lru_cache.h 40 typedef typename std::unordered_map<key_type, value_type, hasher> map_type; typedef in class:tensorflow::tensorrt::LRUCache
41 typedef typename map_type::iterator iterator;
42 typedef typename map_type::const_iterator const_iterator;
  /external/ltp/testcases/kernel/mem/mtest05/
mmstress.c 283 int map_type = 0; /* specifies the type of the mapped object */ local
318 map_type = (fault_type == COW_FAULT) ? MAP_PRIVATE : MAP_SHARED;
328 PROT_WRITE), map_type, fd, 0))
  /external/v8/src/compiler/
typed-optimization.cc 152 Type const map_type = NodeProperties::GetType(map); local
153 if (map_type.IsHeapConstant() &&
154 map_type.AsHeapConstant()->Ref().equals(*object_map)) {
escape-analysis.cc 671 Type const map_type = NodeProperties::GetType(map); local
672 if (map_type.IsHeapConstant() &&
674 bit_cast<Handle<Map>>(map_type.AsHeapConstant()->Value()))) {
  /external/bcc/src/cc/frontends/b/
codegen_llvm.cc 1248 bpf_map_type map_type = BPF_MAP_TYPE_UNSPEC; local
1255 table.first->id_->name_, FileDesc(table_fds_[table.first]), map_type, local
    [all...]
  /external/bcc/src/cc/frontends/clang/
b_frontend_action.cc 1146 bpf_map_type map_type = BPF_MAP_TYPE_UNSPEC; local
    [all...]
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_btf.c 123 enum bpf_map_type map_type; member in struct:btf_raw_test
186 .map_type = BPF_MAP_TYPE_ARRAY,
241 .map_type = BPF_MAP_TYPE_ARRAY,
267 .map_type = BPF_MAP_TYPE_ARRAY,
299 .map_type = BPF_MAP_TYPE_ARRAY,
333 .map_type = BPF_MAP_TYPE_ARRAY,
367 .map_type = BPF_MAP_TYPE_ARRAY,
409 .map_type = BPF_MAP_TYPE_ARRAY,
445 .map_type = BPF_MAP_TYPE_ARRAY,
474 .map_type = BPF_MAP_TYPE_ARRAY
2518 enum bpf_map_type map_type; member in struct:btf_pprint_test_meta
    [all...]
  /external/strace/
bpf_attr.h 59 uint32_t map_type; member in struct:BPF_MAP_CREATE_struct
  /external/ImageMagick/MagickCore/
xwindow-private.h 289 *map_type, member in struct:_XResourceInfo
xwindow.c 1157 *map_type, local
    [all...]
  /external/iproute2/include/uapi/linux/
bpf.h 181 __u32 map_type; /* one of enum bpf_map_type */ member in struct:bpf_attr::__anon24463
  /bionic/libc/kernel/uapi/linux/
bpf.h 203 __u32 map_type; member in struct:bpf_attr::__anon451
  /external/bcc/src/cc/compat/linux/
bpf.h 293 __u32 map_type; /* one of enum bpf_map_type */ member in struct:bpf_attr::__anon15353
    [all...]
  /external/kernel-headers/original/uapi/linux/
bpf.h 318 __u32 map_type; /* one of enum bpf_map_type */ member in struct:bpf_attr::__anon25341
    [all...]

Completed in 1064 milliseconds