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

  /external/chromium_org/gpu/command_buffer/common/
id_allocator.h 33 virtual ResourceId AllocateIDAtOrAbove(ResourceId desired_id) = 0;
53 virtual ResourceId AllocateIDAtOrAbove(ResourceId desired_id) OVERRIDE;
85 virtual ResourceId AllocateIDAtOrAbove(ResourceId desired_id) OVERRIDE;
id_allocator_test.cc 53 allocator->AllocateIDAtOrAbove(-1);
89 // Checks AllocateIdAtOrAbove.
90 TEST_F(IdAllocatorTest, AllocateIdAtOrAbove) {
93 ResourceId id1 = allocator->AllocateIDAtOrAbove(kOffset);
95 ResourceId id2 = allocator->AllocateIDAtOrAbove(kOffset);
97 ResourceId id3 = allocator->AllocateIDAtOrAbove(kOffset);
101 // Checks that AllocateIdAtOrAbove wraps around at the maximum 32-bit value.
105 ResourceId id1 = allocator->AllocateIDAtOrAbove(kMaxPossibleOffset);
107 ResourceId id2 = allocator->AllocateIDAtOrAbove(kMaxPossibleOffset);
109 ResourceId id3 = allocator->AllocateIDAtOrAbove(kMaxPossibleOffset)
    [all...]
id_allocator.cc 36 ResourceId IdAllocator::AllocateIDAtOrAbove(ResourceId desired_id) {
102 ResourceId NonReusedIdAllocator::AllocateIDAtOrAbove(ResourceId desired_id) {
  /external/chromium_org/gpu/command_buffer/client/
share_group.cc 35 ids[ii] = id_allocator_.AllocateIDAtOrAbove(id_offset);
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder.cc     [all...]

Completed in 98 milliseconds