Searched refs:kSize2 (Results 1 - 9 of 9) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h600 // TwoLevelByteMap maps integers in range [0, kSize1*kSize2) to u8 values.
602 // to kSize2-byte arrays. The secondary arrays are mmaped on demand.
605 template <u64 kSize1, u64 kSize2, class MapUnmapCallback = NoOpMapUnmapCallback>
616 MapUnmapCallback().OnUnmap(reinterpret_cast<uptr>(p), kSize2); local
617 UnmapOrDie(p, kSize2);
621 uptr size() const { return kSize1 * kSize2; }
623 uptr size2() const { return kSize2; }
626 CHECK_LT(idx, kSize1 * kSize2);
627 u8 *map2 = GetOrCreate(idx / kSize2);
628 CHECK_EQ(0U, map2[idx % kSize2]);
652 MapUnmapCallback().OnMap(reinterpret_cast<uptr>(res), kSize2); local
[all...]
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cc800 const u64 kSize1 = 1 << 6, kSize2 = 1 << 12; local
801 const u64 n = kSize1 * kSize2;
802 TwoLevelByteMap<kSize1, kSize2> m;
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-tuple.h943 template <int kSize1, int kSize2>
/external/gtest/include/gtest/internal/
H A Dgtest-tuple.h943 template <int kSize1, int kSize2>
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-tuple.h899 template <int kSize1, int kSize2>
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-tuple.h899 template <int kSize1, int kSize2>
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-tuple.h899 template <int kSize1, int kSize2>
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h1584 template <int kSize1, int kSize2>
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest.h1410 template <int kSize1, int kSize2>

Completed in 1019 milliseconds