Home
last modified time | relevance | path

Searched refs:setStorage (Results 1 – 25 of 49) sorted by relevance

12

/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineReferenceRenderer.cpp182 m_colorBuffer.setStorage(m_colorFormat, actualSamples, m_surfaceWidth, m_surfaceHeight); in ReferenceRenderer()
183 m_resolveColorBuffer.setStorage(m_colorFormat, m_surfaceWidth, m_surfaceHeight); in ReferenceRenderer()
210 … m_depthStencilBuffer.setStorage(m_depthStencilFormat, actualSamples, surfaceWidth, surfaceHeight); in ReferenceRenderer()
218 … m_depthStencilBuffer.setStorage(m_depthStencilFormat, actualSamples, surfaceWidth, surfaceHeight); in ReferenceRenderer()
227 … m_depthStencilBuffer.setStorage(m_depthStencilFormat, actualSamples, surfaceWidth, surfaceHeight); in ReferenceRenderer()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
DJavaParser.java186 … return simplifiedParse(COMPILATION_UNIT, provider(file, encoding)).setStorage(file.toPath()); in parse()
200 return simplifiedParse(COMPILATION_UNIT, provider(file)).setStorage(file.toPath()); in parse()
214 return simplifiedParse(COMPILATION_UNIT, provider(path, encoding)).setStorage(path); in parse()
228 return simplifiedParse(COMPILATION_UNIT, provider(path)).setStorage(path); in parse()
/external/deqp/framework/delibs/decpp/
DdeArrayBuffer.cpp138 buf.setStorage(12); in ArrayBuffer_selfTest()
153 buf.setStorage((size_t)-1); in ArrayBuffer_selfTest()
DdeArrayBuffer.hpp61 …void setStorage (size_t numElements); // !< \note after a succesful call buffer contents are un…
170 void ArrayBuffer<T,Alignment,Stride>::setStorage (size_t numElements) in setStorage() function in de::ArrayBuffer
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
DSourceRoot.java114 result.getResult().ifPresent(cu -> cu.setStorage(path)); in tryToParse()
284 result.getResult().ifPresent(cu -> cu.setStorage(absolutePath)); in parse()
332 result.getResult().ifPresent(cu -> cu.setStorage(file)); in parseParallelized()
420 cu.setStorage(path); in save()
/external/deqp/framework/common/
DtcuSurface.cpp56 m_pixels.setStorage(width * height); in setSize()
DtcuImageIO.cpp122 dst.setStorage(textureFormat, width, height); in loadPNG()
251 dst.setStorage(COMPRESSEDTEXFORMAT_ETC1_RGB8, (int)activeWidth, (int)activeHeight); in loadPKM()
DtcuCompressedTexture.hpp138 void setStorage (CompressedTexFormat format, int width, int height, int depth = 1);
/external/deqp/framework/randomshaders/
DrsgVariable.hpp63 void setStorage (Storage storage) { m_storage = storage; } in setStorage() function in rsg::Variable
DrsgVariableManager.cpp260 setStorage(variable, storage); in allocate()
265 void VariableManager::setStorage (Variable* variable, Variable::Storage storage) in setStorage() function in rsg::VariableManager
287 variable->setStorage(storage); in setStorage()
DrsgBinaryOps.cpp63 m_value.setStorage(m_type); in CustomAbsOp()
131 m_value.setStorage(m_type); in CustomBinaryOp()
142 m_value.setStorage(m_type); in CustomBinaryOp()
154 m_value.setStorage(m_type); in CustomBinaryOp()
387 this->m_value.setStorage(this->m_type); in BinaryVecOp()
660 this->m_value.setStorage(this->m_type); in RelationalOp()
955 this->m_value.setStorage(this->m_type); in EqualityComparisonOp()
DrsgVariableValue.hpp316 void setStorage (const VariableType& type);
336 setStorage(type); in ValueStorage()
340 void ValueStorage<Stride>::setStorage (const VariableType& type) in setStorage() function in rsg::ValueStorage
DrsgExpression.cpp826 m_value.setStorage(type); in evaluate()
968 m_value.setStorage(m_valueRange.getType()); in evaluate()
1013 …state.getVariableManager().setStorage(variable, state.getRandom().chooseWeighted<Variable::Storage… in allocateNewVariable()
1306 m_value.setStorage(m_outValueRange.getType()); in SwizzleOp()
1494 …state.getVariableManager().setStorage(sampler, Variable::STORAGE_UNIFORM); // Samplers are always … in TexLookup()
DrsgVariableManager.hpp210 void setStorage (Variable* variable, Variable::Storage storage);
DrsgVariableValue.cpp279 m_storage.setStorage(getType()); in operator =()
DrsgBuiltinFunctions.hpp66 m_value.setStorage(valueRange.getType()); in UnaryBuiltinVecFunc()
/external/deqp/modules/internal/
DditImageCompareTests.cpp48 …dst.setStorage(tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), tmp.g… in loadImageRGBA8()
78 …errorMask.setStorage(refImg.getFormat(), refImg.getWidth(), refImg.getHeight(), refImg.getDepth()); in iterate()
/external/swiftshader/src/OpenGL/libGLES_CM/
DRenderbuffer.h152 void setStorage(RenderbufferStorage *newStorage);
DRenderbuffer.cpp243 void Renderbuffer::setStorage(RenderbufferStorage *newStorage) in setStorage() function in es1::Renderbuffer
/external/swiftshader/src/OpenGL/libGLESv2/
DRenderbuffer.h237 void setStorage(RenderbufferStorage *newStorage);
DRenderbuffer.cpp442 void Renderbuffer::setStorage(RenderbufferStorage *newStorage) in setStorage() function in es2::Renderbuffer
/external/deqp/modules/egl/
DteglRenderTests.cpp443 colorBuffer.setStorage(getColorFormat(colorBits), numSamples, width, height); in renderReference()
448 depthBuffer.setStorage(getDepthFormat(depthBits), numSamples, width, height); in renderReference()
454 stencilBuffer.setStorage(getStencilFormat(stencilBits), numSamples, width, height); in renderReference()
/external/deqp/framework/platform/win32/
DtcuWin32EGLNativeDisplayFactory.cpp347 dst->setStorage(TextureFormat(TextureFormat::BGRA, TextureFormat::UNORM_INT8), width, height); in readScreenPixels()
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.hpp313 void setStorage (const tcu::TextureFormat& format, int width, int height);
397 void setStorage (int size) { m_data.resize(size); } in setStorage() function in sglr::rc::DataBuffer
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
DCompilationUnit.java566 public CompilationUnit setStorage(Path path) { in setStorage() method in CompilationUnit

12