/external/angle/src/libANGLE/renderer/ |
D | renderer_utils.h | 153 LoadImageFunctionInfo() : loadFunction(nullptr), requiresConversion(false) {} in LoadImageFunctionInfo() 154 LoadImageFunctionInfo(LoadImageFunction loadFunction, bool requiresConversion) in LoadImageFunctionInfo() 155 : loadFunction(loadFunction), requiresConversion(requiresConversion) in LoadImageFunctionInfo() 158 LoadImageFunction loadFunction; member 166 LoadTextureBorderFunctionInfo() : loadFunction(nullptr) {} in LoadTextureBorderFunctionInfo() 167 LoadTextureBorderFunctionInfo(LoadTextureBorderFunction loadFunction) in LoadTextureBorderFunctionInfo() 168 : loadFunction(loadFunction) in LoadTextureBorderFunctionInfo() 171 LoadTextureBorderFunction loadFunction; member
|
/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | Image11.cpp | 295 LoadImageFunction loadFunction = d3dFormatInfo.getLoadFunctions()(type).loadFunction; in loadData() local 303 loadFunction(area.width, area.height, area.depth, in loadData() 336 LoadImageFunction loadFunction = in loadCompressedData() local 337 d3dFormatInfo.getLoadFunctions()(GL_UNSIGNED_BYTE).loadFunction; in loadCompressedData() 347 loadFunction(area.width, area.height, area.depth, static_cast<const uint8_t *>(input), in loadCompressedData() 416 auto loadFunction = destD3D11Format.getLoadFunctions()(destFormatInfo.type); in copyFromFramebuffer() local 418 if (loadFunction.requiresConversion) in copyFromFramebuffer() 433 loadFunction.loadFunction(sourceArea.width, sourceArea.height, 1, memoryBuffer->data(), in copyFromFramebuffer()
|
D | TextureStorage11.cpp | 800 loadFunctionInfo.loadFunction(width, height, depth, pixelData + srcSkipBytes, srcRowPitch, in setData()
|
/external/lua/src/ |
D | lundump.c | 152 static void loadFunction(LoadState *S, Proto *f, TString *psource); 201 loadFunction(S, f->p[i], f->source); in loadProtos() 256 static void loadFunction (LoadState *S, Proto *f, TString *psource) { in loadFunction() function 328 loadFunction(&S, cl->p, NULL); in luaU_undump()
|
/external/angle/src/libANGLE/renderer/d3d/d3d9/ |
D | formatutils9.h | 53 LoadImageFunction loadFunction; member
|
D | formatutils9.cpp | 72 loadFunction(UnreachableLoad) in TextureFormat() 79 LoadImageFunction loadFunction) in InsertD3D9FormatInfo() argument 92 info.loadFunction = loadFunction; in InsertD3D9FormatInfo()
|
D | Image9.cpp | 496 ASSERT(d3dFormatInfo.loadFunction != nullptr); in loadData() 503 d3dFormatInfo.loadFunction(area.width, area.height, area.depth, in loadData() 535 ASSERT(d3d9FormatInfo.loadFunction != nullptr); in loadCompressedData() 542 d3d9FormatInfo.loadFunction(area.width, area.height, area.depth, in loadCompressedData()
|
/external/tensorflow/tensorflow/lite/nnapi/ |
D | NeuralNetworksShim.h | 34 static name##_fn fn = reinterpret_cast<name##_fn>(loadFunction(#name)); 71 inline void* loadFunction(const char* name) { in loadFunction() function
|
/external/angle/src/libANGLE/renderer/metal/ |
D | TextureMtl.mm | 1771 ASSERT(loadFunctionInfo.loadFunction); 1780 loadFunctionInfo.loadFunction(mtlArea.size.width, mtlArea.size.height, 1819 if (loadFunctionInfo.loadFunction) 1821 loadFunctionInfo.loadFunction(mtlRow.size.width, 1, 1, psrc, pixelsRowPitch,
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | vk_helpers.cpp | 5471 loadFunctionInfo.loadFunction = angle::LoadD32ToD32F; in stageSubresourceUpdateImpl() 5476 loadFunctionInfo.loadFunction = angle::LoadD32FS8X24ToD32F; in stageSubresourceUpdateImpl() 5480 loadFunctionInfo.loadFunction = angle::LoadD24S8ToD32F; in stageSubresourceUpdateImpl() 5524 loadFunctionInfo.loadFunction(glExtents.width, glExtents.height, glExtents.depth, source, in stageSubresourceUpdateImpl() 5886 LoadImageFunctionInfo loadFunction = vkFormat.textureLoadFunctions(formatInfo.type); in stageSubresourceUpdateFromFramebuffer() local 5913 if (loadFunction.requiresConversion) in stageSubresourceUpdateFromFramebuffer() 5928 loadFunction.loadFunction(clippedRectangle.width, clippedRectangle.height, 1, in stageSubresourceUpdateFromFramebuffer()
|
D | vk_cache_utils.cpp | 3216 LoadTextureBorderFunctionInfo loadFunction = vkFormat.textureBorderLoadFunctions(); in update() local 3217 loadFunction.loadFunction(mBorderColor); in update()
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmInstructionTests.cpp | 11911 const string loadFunction; in createFloat16VectorExtractSet() member 12085 fragments["testfun"] += StringTemplate(testType.loadFunction).specialize({{"var", "ssbo_src"}}); in createFloat16VectorExtractSet() 12173 const string loadFunction; in createFloat16VectorInsertSet() member 12342 fragments["testfun"] += StringTemplate(testType.loadFunction).specialize({{"var", "ssbo_src"}}); in createFloat16VectorInsertSet() 12496 const string loadFunction; in createFloat16VectorShuffleSet() member 12721 … fragments["testfun"] += StringTemplate(src0Type.loadFunction).specialize({{"var", "ssbo_src0"}}); in createFloat16VectorShuffleSet() 12722 … fragments["testfun"] += StringTemplate(src1Type.loadFunction).specialize({{"var", "ssbo_src1"}}); in createFloat16VectorShuffleSet() 14072 const string loadFunction; in createFloat16CompositeInsertExtractSet() member 14155 …fragments["testfun"] += StringTemplate(typeTestParameters[typeTestNdx].loadFunction).specialize({… in createFloat16CompositeInsertExtractSet() 14158 …fragments["testfun"] += StringTemplate(typeTestParameters[typeTestNdx].loadFunction).specialize({… in createFloat16CompositeInsertExtractSet()
|