Home
last modified time | relevance | path

Searched refs:get_const (Results 1 – 11 of 11) sorted by relevance

/hardware/google/aemu/base/
DHybridEntityManager_unittest.cpp38 EXPECT_EQ(0, *m.get_const(indices[0])); in TEST()
39 EXPECT_EQ(1, *m.get_const(indices[1])); in TEST()
40 EXPECT_EQ(2, *m.get_const(indices[2])); in TEST()
41 EXPECT_EQ(3, *m.get_const(indices[3])); in TEST()
/hardware/google/gfxstream/guest/OpenglCodecCommon/
DStateTrackingSupport.h33 if (!mStorage.get_const(index)) { in add()
49 if (!mStorage.get_const(index)) return; in set()
65 const uint64_t* current = mStorage.get_const(index); in get()
143 return nullptr != internalInfo_const()->component.get_const(id); in hasRbo()
168 const RboProps* get_const(GLuint id) { in get_const() function
169 auto rboPropPtr = internalInfo()->component.get_const(id); in get_const()
215 const SamplerProps* info = internalInfo_const()->component.get_const(id); in samplerExists()
223 const SamplerProps* get_const(GLuint id) { in get_const() function
224 return internalInfo_const()->component.get_const(id); in get_const()
DGLClientState.cpp660 auto targetPtr = mLastQueryTargets.get_const(id); in getLastQueryTarget()
1068 const RboProps* props = view.get_const(name); in isRenderbufferThatWasBound()
2129 return view.get_const(name) != 0; in usedRenderbufferName()
2356 auto info = currentUniformValidationInfo.get_const(location); in validateUniform()
2372 auto info = currentAttribValidationInfo.get_const(index); in isAttribIndexUsedByProgram()
/hardware/google/aemu/base/include/aemu/base/containers/
DHybridComponentManager.h71 const Data* get_const(IndexType index) const { in get_const() function
75 return mComponentManager.get_const(internal_handle); in get_const()
89 const Data* res = get_const(index); in getExceptZero_const()
DHybridEntityManager.h124 const Data* get_const(IndexType index) const { in get_const() function
129 res = mEntityManager.get_const(index)); in get_const()
146 const Data* res = get_const(index); in getExceptZero_const()
DEntityManager.h317 const Item* get_const(EntityHandle h) const { in get_const() function
561 const Data* get_const(EntityHandle h) const { in get_const() function
/hardware/google/gfxstream/guest/android-emu/aemu/base/containers/
DHybridComponentManager.h71 const Data* get_const(IndexType index) const { in get_const() function
75 return mComponentManager.get_const(internal_handle); in get_const()
89 const Data* res = get_const(index); in getExceptZero_const()
DEntityManager.h329 const Item* get_const(EntityHandle h) const {
573 const Data* get_const(EntityHandle h) const {
/hardware/google/gfxstream/host/gl/glestranslator/GLcommon/
DObjectNameSpace.cpp206 auto localPtr = m_globalToLocalMap.get_const(p_globalName); in getLocalName()
212 auto objPtrPtr = m_localToGlobalMap.get_const(p_localName); in getNamedObject()
272 const bool* boundPtr = m_boundMap.get_const(p_localName); in everBound()
/hardware/google/gfxstream/host/gl/glestranslator/GLES_V2/
DProgramData.cpp1231 auto locPtr = mGuestLocToHostLoc.get_const(guestLocation); in getHostUniformLocation()
/hardware/google/gfxstream/host/vulkan/
DVkDecoderGlobalState.cpp281 T* get(uint64_t h) { return (T*)store.get_const(h); } in get()