HomeSort by relevance Sort by last modified time
    Searched defs:Map (Results 1 - 25 of 409) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/esan/TestCases/
mmap-shadow-conflict.c 9 void *Map = mmap((void *)0x0000016000000000ULL, 0x1000, PROT_READ,
11 if (Map == (void *)-1)
12 fprintf(stderr, "map failed\n");
14 fprintf(stderr, "mapped %p\n", Map);
15 Map = mmap((void *)0x0000016000000000ULL, 0x1000, PROT_READ,
17 fprintf(stderr, "mapped %p\n", Map);
25 // CHECK-NEXT: map failed
  /external/libcxx/test/libcxx/containers/gnu_cxx/
hash_map.pass.cpp 22 typedef __gnu_cxx::hash_map<int, int> Map;
23 Map m;
24 Map m2(m);
  /frameworks/native/libs/binder/include/binder/
Map.h 20 #include <map>
30 * Convenience typedef for ::std::map<::std::string,::android::binder::Value>
32 typedef ::std::map<::std::string, Value> Map;
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue5698.go 18 type Map map[Key]Val // ERROR "invalid map key type"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue5698.go 18 type Map map[Key]Val // ERROR "invalid map key type"
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/containers/gnu_cxx/
hash_map.pass.cpp 22 typedef __gnu_cxx::hash_map<int, int> Map;
23 Map m;
24 Map m2(m);
  /external/v4l2_codec2/vda/
shared_memory_region.cc 29 bool SharedMemoryRegion::Map() {
  /external/tensorflow/tensorflow/core/lib/gtl/
map_util_test.cc 18 #include <map>
28 typedef std::map<string, string> Map;
29 Map m;
43 typedef std::map<string, string> Map;
44 Map m;
  /system/core/libion/tests/
map_test.cpp 25 class Map : public IonAllHeapsTest {
28 TEST_F(Map, MapHandle)
57 TEST_F(Map, MapFd)
82 TEST_F(Map, MapOffset)
112 TEST_F(Map, MapCached)
138 TEST_F(Map, MapCachedNeedsSync)
  /bionic/linker/
linker_mapped_file_fragment.cpp 48 bool MappedFileFragment::Map(int fd, off64_t base_offset, size_t elf_offset, size_t size) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/VirtualMemoryAccess/
VirtualMemoryAccess.h 57 EFI_VIRTUAL_MEMORY_ACCESS_MAP Map;
  /external/google-breakpad/src/common/linux/
memory_mapped_file.cc 50 Map(path, offset);
59 bool MemoryMappedFile::Map(const char* path, size_t offset) {
  /external/libcxx/test/std/containers/associative/
iterator_types.pass.cpp 10 #include <map>
19 template <class Map, class ValueTp, class PtrT, class CPtrT>
21 typedef typename Map::difference_type Diff;
23 typedef typename Map::iterator It;
30 typedef typename Map::const_iterator It;
56 typedef std::map<int, int> Map;
58 testMap<Map, ValueTp, ValueTp*, ValueTp const*>();
63 typedef std::map<int, int, std::less<int>, Alloc> Map;
    [all...]
  /external/libcxx/test/std/containers/associative/map/
incomplete_type.pass.cpp 10 // <map>
12 // Check that std::map and its iterators can be instantiated with an incomplete
15 #include <map>
18 typedef std::map<A, A> Map;
20 Map m;
21 Map::iterator it;
22 Map::const_iterator cit;
  /external/libcxx/test/std/containers/associative/multimap/
incomplete_type.pass.cpp 10 // <map>
15 #include <map>
18 typedef std::multimap<A, A> Map;
20 Map m;
21 Map::iterator it;
22 Map::const_iterator cit;
  /external/libcxx/test/std/containers/unord/
iterator_difference_type.pass.cpp 19 template <class Map, class ValueTp, class PtrT, class CPtrT>
21 typedef typename Map::difference_type Diff;
23 typedef typename Map::iterator It;
30 typedef typename Map::const_iterator It;
37 typedef typename Map::local_iterator It;
44 typedef typename Map::const_local_iterator It;
79 typedef std::unordered_map<int, int> Map;
81 testUnorderedMap<Map, ValueTp, ValueTp*, ValueTp const*>();
86 typedef std::unordered_map<int, int, std::hash<int>, std::equal_to<int>, Alloc> Map;
87 testUnorderedMap<Map, ValueTp, ValueTp*, ValueTp const*>()
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerTracePC.h 28 uintptr_t Map[kMapSizeInWords] __attribute__((aligned(512)));
31 // Clears the current PC Map.
33 // Merges the current PC Map into the combined one, and clears the former.
34 size_t PcMapMergeInto(PcCoverageMap *Map);
  /prebuilts/go/darwin-x86/test/
named1.go 15 type Map map[int]int
17 func (Map) M() {}
33 m = make(Map)
47 _, b = inter.(Map) // ok now
53 _, b = minter.(Map) // ok now
  /prebuilts/go/linux-x86/test/
named1.go 15 type Map map[int]int
17 func (Map) M() {}
33 m = make(Map)
47 _, b = inter.(Map) // ok now
53 _, b = minter.(Map) // ok now
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/
iterator_types.pass.cpp 10 #include <map>
19 template <class Map, class ValueTp, class PtrT, class CPtrT>
21 typedef typename Map::difference_type Diff;
23 typedef typename Map::iterator It;
30 typedef typename Map::const_iterator It;
56 typedef std::map<int, int> Map;
58 testMap<Map, ValueTp, ValueTp*, ValueTp const*>();
63 typedef std::map<int, int, std::less<int>, Alloc> Map;
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/map/
incomplete_type.pass.cpp 10 // <map>
12 // Check that std::map and its iterators can be instantiated with an incomplete
15 #include <map>
18 typedef std::map<A, A> Map;
20 Map m;
21 Map::iterator it;
22 Map::const_iterator cit;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multimap/
incomplete_type.pass.cpp 10 // <map>
15 #include <map>
18 typedef std::multimap<A, A> Map;
20 Map m;
21 Map::iterator it;
22 Map::const_iterator cit;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/
iterator_difference_type.pass.cpp 19 template <class Map, class ValueTp, class PtrT, class CPtrT>
21 typedef typename Map::difference_type Diff;
23 typedef typename Map::iterator It;
30 typedef typename Map::const_iterator It;
37 typedef typename Map::local_iterator It;
44 typedef typename Map::const_local_iterator It;
79 typedef std::unordered_map<int, int> Map;
81 testUnorderedMap<Map, ValueTp, ValueTp*, ValueTp const*>();
86 typedef std::unordered_map<int, int, std::hash<int>, std::equal_to<int>, Alloc> Map;
87 testUnorderedMap<Map, ValueTp, ValueTp*, ValueTp const*>()
    [all...]
  /external/capstone/arch/SystemZ/
SystemZMCTargetDesc.c 71 static unsigned Map[SystemZ_NUM_TARGET_REGS];
78 Map[SystemZMC_GR32Regs[I]] = I;
79 Map[SystemZMC_GRH32Regs[I]] = I;
80 Map[SystemZMC_GR64Regs[I]] = I;
81 Map[SystemZMC_GR128Regs[I]] = I;
82 Map[SystemZMC_FP32Regs[I]] = I;
83 Map[SystemZMC_FP64Regs[I]] = I;
84 Map[SystemZMC_FP128Regs[I]] = I;
89 return Map[Reg];
  /external/clang/include/clang/Basic/
AddressSpaces.h 45 typedef unsigned Map[Count];

Completed in 1804 milliseconds

1 2 3 4 5 6 7 8 91011>>