HomeSort by relevance Sort by last modified time
    Searched refs:kMaxId (Results 1 - 2 of 2) sorted by null

  /external/perfetto/src/tracing/core/
id_allocator_unittest.cc 26 const IdType kMaxId = 1023;
27 IdAllocator<IdType> id_allocator(kMaxId);
31 for (IdType i = 1; i <= kMaxId; i++) {
50 id_allocator.Free(kMaxId);
51 ASSERT_EQ(kMaxId, id_allocator.Allocate());
58 for (IdType i = 0; i < kMaxId; i++)
59 id_allocator.Free(kMaxId - i);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stackdepotbase.h 50 static const int kMaxId = 1 << kPartShift;
121 CHECK_LT(id, kMaxId);

Completed in 71 milliseconds