OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pointer_char
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/gpu/command_buffer/client/
mapped_memory_unittest.cc
148
uint8 *
pointer_char
= static_cast<uint8*>(chunk_->Alloc(kSize));
local
149
ASSERT_TRUE(
pointer_char
);
150
EXPECT_LE(buffer_memory(),
pointer_char
);
local
151
EXPECT_GE(buffer_memory() + kBufferSize,
pointer_char
+ kSize);
154
chunk_->Free(
pointer_char
);
fenced_allocator_test.cc
507
char *
pointer_char
= allocator_->AllocTyped<char>(kSize);
local
508
ASSERT_TRUE(
pointer_char
);
509
EXPECT_LE(buffer_.get(),
pointer_char
);
510
EXPECT_GE(buffer_.get() + kBufferSize,
pointer_char
+ kSize);
511
allocator_->Free(
pointer_char
);
Completed in 176 milliseconds