Home
last modified time | relevance | path

Searched refs:InUse (Results 1 – 24 of 24) sorted by relevance

/external/chromium_org/gpu/command_buffer/common/
Did_allocator_test.cc27 EXPECT_FALSE(allocator->InUse(1)); in TEST_F()
31 EXPECT_TRUE(allocator->InUse(id1)); in TEST_F()
36 EXPECT_TRUE(allocator->InUse(id2)); in TEST_F()
41 EXPECT_FALSE(allocator->InUse(id1)); in TEST_F()
45 EXPECT_FALSE(allocator->InUse(id2)); in TEST_F()
60 EXPECT_TRUE(allocator->InUse(ids[i])); in TEST_F()
66 EXPECT_FALSE(allocator->InUse(id1)); in TEST_F()
68 EXPECT_TRUE(allocator->InUse(id2)); in TEST_F()
77 EXPECT_FALSE(allocator->InUse(id)); in TEST_F()
79 EXPECT_TRUE(allocator->InUse(id)); in TEST_F()
Did_allocator.h44 virtual bool InUse(ResourceId id) const = 0;
58 virtual bool InUse(ResourceId id) const OVERRIDE;
90 virtual bool InUse(ResourceId id) const OVERRIDE;
Did_allocator.cc68 bool IdAllocator::InUse(ResourceId id) const { in InUse() function in gpu::IdAllocator
117 bool NonReusedIdAllocator::InUse(ResourceId id) const { in InUse() function in gpu::NonReusedIdAllocator
/external/chromium_org/gpu/command_buffer/service/
Dshader_manager_unittest.cc129 EXPECT_FALSE(shader1->InUse()); in TEST_F()
237 EXPECT_FALSE(shader1->InUse()); in TEST_F()
240 EXPECT_TRUE(shader1->InUse()); in TEST_F()
242 EXPECT_TRUE(shader1->InUse()); in TEST_F()
248 EXPECT_TRUE(shader1->InUse()); in TEST_F()
255 EXPECT_FALSE(shader1->InUse()); in TEST_F()
257 EXPECT_TRUE(shader1->InUse()); in TEST_F()
259 EXPECT_TRUE(shader1->InUse()); in TEST_F()
261 EXPECT_TRUE(shader1->InUse()); in TEST_F()
263 EXPECT_FALSE(shader1->InUse()); in TEST_F()
Dgles2_cmd_decoder_unittest.cc231 EXPECT_TRUE(id_allocator->InUse(kExpectedId1)); in TEST_P()
232 EXPECT_TRUE(id_allocator->InUse(kExpectedId2)); in TEST_P()
233 EXPECT_FALSE(id_allocator->InUse(kRegisterId)); in TEST_P()
234 EXPECT_FALSE(id_allocator->InUse(kExpectedId3)); in TEST_P()
240 EXPECT_TRUE(id_allocator->InUse(kExpectedId1)); in TEST_P()
241 EXPECT_TRUE(id_allocator->InUse(kExpectedId2)); in TEST_P()
242 EXPECT_TRUE(id_allocator->InUse(kRegisterId)); in TEST_P()
243 EXPECT_FALSE(id_allocator->InUse(kExpectedId3)); in TEST_P()
249 EXPECT_TRUE(id_allocator->InUse(kExpectedId1)); in TEST_P()
250 EXPECT_TRUE(id_allocator->InUse(kExpectedId2)); in TEST_P()
[all …]
Dprogram_manager_unittest.cc121 EXPECT_FALSE(program1->InUse()); in TEST_F()
904 EXPECT_FALSE(vshader->InUse()); in TEST_F()
905 EXPECT_FALSE(fshader->InUse()); in TEST_F()
907 EXPECT_TRUE(vshader->InUse()); in TEST_F()
909 EXPECT_TRUE(fshader->InUse()); in TEST_F()
911 EXPECT_FALSE(program->InUse()); in TEST_F()
914 EXPECT_TRUE(program->InUse()); in TEST_F()
916 EXPECT_TRUE(program->InUse()); in TEST_F()
922 EXPECT_TRUE(program->InUse()); in TEST_F()
930 EXPECT_FALSE(vshader->InUse()); in TEST_F()
[all …]
Dshader_manager.h85 bool InUse() const { in InUse() function
Dshader_manager.cc196 if (shader->IsDeleted() && !shader->InUse()) { in RemoveShader()
Dprogram_manager.h189 bool InUse() const { in InUse() function
Dprogram_manager.cc1325 if (program->IsDeleted() && !program->InUse()) { in RemoveProgramInfoIfUnused()
Dgles2_cmd_decoder.cc5852 if (!state_.current_program->InUse()) { in CheckCurrentProgram()
/external/chromium_org/gpu/command_buffer/client/
Dfenced_allocator.h88 bool InUse();
250 bool InUse() { in InUse() function
251 return allocator_.InUse(); in InUse()
Dmapped_memory.h102 bool InUse() { in InUse() function
103 return allocator_.InUse(); in InUse()
Dfenced_allocator_test.cc125 EXPECT_FALSE(allocator_->InUse()); in TEST_F()
129 EXPECT_TRUE(allocator_->InUse()); in TEST_F()
135 EXPECT_FALSE(allocator_->InUse()); in TEST_F()
143 EXPECT_FALSE(allocator_->InUse()); in TEST_F()
253 EXPECT_TRUE(allocator_->InUse()); in TEST_F()
290 EXPECT_TRUE(allocator_->InUse()); in TEST_F()
297 EXPECT_FALSE(allocator_->InUse()); in TEST_F()
Dmapped_memory.cc133 if (!chunk->InUse()) { in FreeUnused()
Dfenced_allocator.cc170 bool FencedAllocator::InUse() { in InUse() function in gpu::FencedAllocator
Dgles2_implementation.cc3388 if (!query_id_allocator_->InUse(id)) { in BeginQueryEXT()
/external/valgrind/main/coregrind/
Dm_transtab.c149 enum { InUse, Deleted, Empty } status; enumerator
448 vg_assert(tte->status == InUse); in index_tte()
707 vg_assert(sec->tt[tteNo].status == InUse); in find_TTEntry_from_hcode()
882 vg_assert(here_tte->status == InUse); in unchain_in_preparation_for_deletion()
1122 if (tte->status != InUse) in sanity_check_eclasses_in_sector()
1165 vg_assert(tte->status == InUse); in sanity_check_eclasses_in_sector()
1192 case InUse: VG_(printf)("InUse\n"); break; in sanity_check_eclasses_in_sector()
1437 if (sec->tt[i].status == InUse) { in initialiseSector()
1620 sectors[y].tt[i].status = InUse; in VG_()
1698 if (sectors[sno].tt[k].status == InUse in VG_()
[all …]
/external/chromium_org/third_party/webrtc/video_engine/
Dvie_remb.h47 bool InUse() const;
Dvie_remb.cc89 bool VieRemb::InUse() const { in InUse() function in webrtc::VieRemb
Dvie_channel_group.cc193 assert(!remb_->InUse()); in ~ChannelGroup()
/external/chromium_org/net/disk_cache/memory/
Dmem_entry_impl.h63 bool InUse();
Dmem_backend_impl.cc324 if (!node->InUse() || empty) { in TrimCache()
Dmem_entry_impl.cc131 bool MemEntryImpl::InUse() { in InUse() function in disk_cache::MemEntryImpl