Home
last modified time | relevance | path

Searched refs:InitStorage (Results 1 – 10 of 10) sorted by relevance

/external/deqp/external/openglcts/modules/gl/
Dgl4cBufferStorageTests.cpp111 …void InitStorage(glw::GLenum target, glw::GLenum flags, glw::GLsizeiptr size, const glw::GLvoid* d…
522 void Buffer::InitStorage(glw::GLenum target, glw::GLenum flags, glw::GLsizeiptr size, const glw::GL… in InitStorage() function in gl4cts::BufferStorage::Buffer
1694 buffer.InitStorage(GL_ARRAY_BUFFER, GL_DYNAMIC_STORAGE_BIT, data_size, data); in iterate()
1816 buffer.InitStorage(GL_ARRAY_BUFFER, GL_DYNAMIC_STORAGE_BIT, data_size, data); in iterate()
1882 …buffer.InitStorage(GL_ARRAY_BUFFER, GL_MAP_READ_BIT | GL_MAP_WRITE_BIT | GL_MAP_PERSISTENT_BIT, da… in iterate()
2023 buffer.InitStorage(GL_ARRAY_BUFFER, flags, data_size, data); in iterate()
2215 read_buffer.InitStorage(GL_COPY_READ_BUFFER, 0 /* flags */, data_size, read_data); in iterate()
2216 write_buffer.InitStorage(GL_COPY_WRITE_BUFFER, 0 /* flags */, data_size, write_data); in iterate()
2284 write_buffer.InitStorage(GL_COPY_WRITE_BUFFER, GL_DYNAMIC_STORAGE_BIT, data_size, write_data); in iterate()
2370 buffer.InitStorage(GL_ARRAY_BUFFER, in iterate()
[all …]
Dgl4cMultiBindTests.cpp335 …void InitStorage(deqp::Context& context, glw::GLenum target, glw::GLsizei levels, glw::GLenum inte…
1009 void Texture::InitStorage(deqp::Context& context, glw::GLenum target, glw::GLsizei levels, glw::GLe… in InitStorage() function in gl4cts::MultiBind::Texture
1870 texture[0].InitStorage(m_context, GL_TEXTURE_2D, 1 /* levels */, GL_RGBA8, width, height, depth); in iterate()
1871 …texture[1].InitStorage(m_context, GL_TEXTURE_2D_ARRAY, 1 /* levels */, GL_RGBA8, width, height, de… in iterate()
1872 …texture[2].InitStorage(m_context, GL_TEXTURE_1D_ARRAY, 1 /* levels */, GL_RGBA8, width, height, de… in iterate()
1873 texture[3].InitStorage(m_context, GL_TEXTURE_3D, 1 /* levels */, GL_RGBA8, width, height, depth); in iterate()
2106 texture[0].InitStorage(m_context, GL_TEXTURE_2D, 1, GL_RGBA8, width, height, depth); in iterate()
2107 texture[1].InitStorage(m_context, GL_TEXTURE_2D_ARRAY, 1, GL_RGBA8, width, height, depth); in iterate()
2108 texture[2].InitStorage(m_context, GL_TEXTURE_1D_ARRAY, 1, GL_RGBA8, width, height, depth); in iterate()
2109 texture[3].InitStorage(m_context, GL_TEXTURE_3D, 1, GL_RGBA8, width, height, depth); in iterate()
[all …]
/external/clang/include/clang/AST/
DDecl.h2332 llvm::PointerIntPair<void *, 2, InitStorageKind> InitStorage; variable
2340 InitStorage(BW, (InitStorageKind) InitStyle) { in FieldDecl()
2362 return InitStorage.getInt() == ISK_BitWidthOrNothing && in isBitField()
2363 InitStorage.getPointer() != nullptr; in isBitField()
2377 ? static_cast<Expr *>(InitStorage.getPointer()) in getBitWidth()
2385 assert(InitStorage.getInt() == ISK_BitWidthOrNothing && in setBitWidth()
2386 InitStorage.getPointer() == nullptr && in setBitWidth()
2388 InitStorage.setPointerAndInt(Width, ISK_BitWidthOrNothing); in setBitWidth()
2395 InitStorage.setPointerAndInt(nullptr, ISK_BitWidthOrNothing); in removeBitWidth()
2401 InitStorageKind storageKind = InitStorage.getInt(); in getInClassInitStyle()
[all …]
/external/llvm-project/clang/include/clang/AST/
DDecl.h2820 llvm::PointerIntPair<void *, 2, InitStorageKind> InitStorage; variable
2829 InitStorage(nullptr, (InitStorageKind) InitStyle) { in FieldDecl()
2868 void *Ptr = InitStorage.getPointer(); in getBitWidth()
2882 InitStorage.setPointer( in setBitWidth()
2883 InitStorage.getInt() in setBitWidth()
2894 InitStorage.setPointer(getInClassInitializer()); in removeBitWidth()
2910 InitStorageKind storageKind = InitStorage.getInt(); in getInClassInitStyle()
2926 void *Ptr = InitStorage.getPointer(); in getInClassInitializer()
2936 static_cast<InitAndBitWidth*>(InitStorage.getPointer())->Init = Init; in setInClassInitializer()
2938 InitStorage.setPointer(Init); in setInClassInitializer()
[all …]
/external/clang/lib/Serialization/
DASTWriterDecl.cpp839 if (D->InitStorage.getInt() == FieldDecl::ISK_BitWidthOrNothing && in VisitFieldDecl()
840 D->InitStorage.getPointer() == nullptr) { in VisitFieldDecl()
842 } else if (D->InitStorage.getInt() == FieldDecl::ISK_CapturedVLAType) { in VisitFieldDecl()
843 Record.push_back(D->InitStorage.getInt() + 1); in VisitFieldDecl()
845 QualType(static_cast<Type *>(D->InitStorage.getPointer()), 0)); in VisitFieldDecl()
847 Record.push_back(D->InitStorage.getInt() + 1); in VisitFieldDecl()
848 Record.AddStmt(static_cast<Expr *>(D->InitStorage.getPointer())); in VisitFieldDecl()
DASTReaderDecl.cpp1173 FD->InitStorage.setInt( in VisitFieldDecl()
1175 if (FD->InitStorage.getInt() == FieldDecl::ISK_CapturedVLAType) { in VisitFieldDecl()
1177 FD->InitStorage.setPointer( in VisitFieldDecl()
1180 FD->InitStorage.setPointer(Reader.ReadExpr(F)); in VisitFieldDecl()
/external/clang/lib/AST/
DDecl.cpp3470 auto *BitWidth = static_cast<Expr *>(InitStorage.getPointer()); in getBitWidthValue()
3494 switch (InitStorage.getInt()) { in getSourceRange()
3499 if (const auto *E = static_cast<const Expr *>(InitStorage.getPointer())) in getSourceRange()
3512 assert(InitStorage.getInt() == ISK_BitWidthOrNothing && in setCapturedVLAType()
3513 InitStorage.getPointer() == nullptr && in setCapturedVLAType()
3515 InitStorage.setPointerAndInt(const_cast<VariableArrayType *>(VLAType), in setCapturedVLAType()
/external/llvm-project/clang/lib/AST/
DDecl.cpp4204 assert(InitStorage.getInt() == ISK_NoInit && in setCapturedVLAType()
4205 InitStorage.getPointer() == nullptr && in setCapturedVLAType()
4207 InitStorage.setPointerAndInt(const_cast<VariableArrayType *>(VLAType), in setCapturedVLAType()
/external/llvm-project/clang/lib/Serialization/
DASTReaderDecl.cpp1352 FD->InitStorage.setInt(ISK); in VisitFieldDecl()
1353 FD->InitStorage.setPointer(ISK == FieldDecl::ISK_CapturedVLAType in VisitFieldDecl()
DASTWriterDecl.cpp918 FieldDecl::InitStorageKind ISK = D->InitStorage.getInt(); in VisitFieldDecl()