HomeSort by relevance Sort by last modified time
    Searched refs:InUse (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/gpu/command_buffer/common/
id_allocator_test.cc 23 // Checks basic functionality: AllocateID, FreeID, InUse.
27 EXPECT_FALSE(allocator->InUse(1));
31 EXPECT_TRUE(allocator->InUse(id1));
36 EXPECT_TRUE(allocator->InUse(id2));
41 EXPECT_FALSE(allocator->InUse(id1));
45 EXPECT_FALSE(allocator->InUse(id2));
60 EXPECT_TRUE(allocator->InUse(ids[i]));
66 EXPECT_FALSE(allocator->InUse(id1));
68 EXPECT_TRUE(allocator->InUse(id2));
77 EXPECT_FALSE(allocator->InUse(id))
    [all...]
id_allocator.h 42 virtual bool InUse(ResourceId id) const = 0;
56 virtual bool InUse(ResourceId id) const OVERRIDE;
88 virtual bool InUse(ResourceId id) const OVERRIDE;
id_allocator.cc 67 bool IdAllocator::InUse(ResourceId id) const {
116 bool NonReusedIdAllocator::InUse(ResourceId id) const {
  /external/chromium_org/gpu/command_buffer/client/
mapped_memory.h 94 bool InUse() {
95 return allocator_.InUse();
fenced_allocator.h 84 bool InUse();
240 bool InUse() {
241 return allocator_.InUse();
fenced_allocator_test.cc 117 EXPECT_FALSE(allocator_->InUse());
121 EXPECT_TRUE(allocator_->InUse());
127 EXPECT_FALSE(allocator_->InUse());
135 EXPECT_FALSE(allocator_->InUse());
245 EXPECT_TRUE(allocator_->InUse());
282 EXPECT_TRUE(allocator_->InUse());
289 EXPECT_FALSE(allocator_->InUse());
mapped_memory.cc 98 if (!chunk->InUse()) {
share_group.cc 70 GPU_DCHECK(id == 0 || id_allocator_.InUse(id));
fenced_allocator.cc 156 bool FencedAllocator::InUse() {
  /external/chromium_org/gpu/command_buffer/service/
shader_manager_unittest.cc 114 EXPECT_FALSE(shader1->InUse());
217 EXPECT_FALSE(shader1->InUse());
220 EXPECT_TRUE(shader1->InUse());
222 EXPECT_TRUE(shader1->InUse());
228 EXPECT_TRUE(shader1->InUse());
235 EXPECT_FALSE(shader1->InUse());
237 EXPECT_TRUE(shader1->InUse());
239 EXPECT_TRUE(shader1->InUse());
241 EXPECT_TRUE(shader1->InUse());
243 EXPECT_FALSE(shader1->InUse());
    [all...]
program_manager_unittest.cc 132 EXPECT_FALSE(program1->InUse());
795 EXPECT_FALSE(vshader->InUse());
796 EXPECT_FALSE(fshader->InUse());
798 EXPECT_TRUE(vshader->InUse());
800 EXPECT_TRUE(fshader->InUse());
802 EXPECT_FALSE(program->InUse());
805 EXPECT_TRUE(program->InUse());
807 EXPECT_TRUE(program->InUse());
813 EXPECT_TRUE(program->InUse());
821 EXPECT_FALSE(vshader->InUse());
    [all...]
shader_manager.h 85 bool InUse() const {
program_manager.h 170 bool InUse() const {
shader_manager.cc 152 if (shader->IsDeleted() && !shader->InUse()) {
gles2_cmd_decoder_unittest.cc     [all...]
  /external/chromium_org/net/disk_cache/flash/
log_store.h 67 bool InUse(int32 segment_index) const;
log_store.cc 172 while (InUse(next_index)) {
179 bool LogStore::InUse(int32 index) const {
  /external/chromium/net/disk_cache/
mem_entry_impl.h 64 bool InUse();
mem_backend_impl.cc 302 if (!node->InUse() || empty) {
mem_entry_impl.cc 114 bool MemEntryImpl::InUse() {
  /external/chromium_org/net/disk_cache/
mem_entry_impl.h 63 bool InUse();
mem_backend_impl.cc 316 if (!node->InUse() || empty) {
  /external/valgrind/main/coregrind/
m_transtab.c 148 enum { InUse, Deleted, Empty } status;
318 /* The count of tt entries with state InUse. */
447 vg_assert(tte->status == InUse);
671 vg_assert(sec->tt[tteNo].status == InUse);
843 vg_assert(here_tte->status == InUse);
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
qosregistry.h 305 UINT InUse; /* Count of instances of this component in use */
560 increments the InUse field of the QOSCOMPONENT structure.
592 decrements the InUse field of the QOSCOMPONENT structure.
  /hardware/ti/omap3/dspbridge/libbridge/inc/
qosregistry.h 299 UINT InUse; /* Count of instances of this component in use */
554 increments the InUse field of the QOSCOMPONENT structure.
586 decrements the InUse field of the QOSCOMPONENT structure.

Completed in 219 milliseconds

1 2