| /third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
| D | ShaderModuleVk.cpp | 28 spirv_cross::Compiler compiler(descriptor->code, descriptor->codeSize); in ShaderModule() 35 createInfo.codeSize = descriptor->codeSize * sizeof(uint32_t); in ShaderModule()
|
| /third_party/mesa3d/src/virtio/venus-protocol/ |
| D | vn_protocol_driver_shader_module.h | 29 size += vn_sizeof_size_t(&val->codeSize); in vn_sizeof_VkShaderModuleCreateInfo_self() 31 size += vn_sizeof_array_size(val->codeSize / 4); in vn_sizeof_VkShaderModuleCreateInfo_self() 32 size += vn_sizeof_uint32_t_array(val->pCode, val->codeSize / 4); in vn_sizeof_VkShaderModuleCreateInfo_self() 63 vn_encode_size_t(enc, &val->codeSize); in vn_encode_VkShaderModuleCreateInfo_self() 65 vn_encode_array_size(enc, val->codeSize / 4); in vn_encode_VkShaderModuleCreateInfo_self() 66 vn_encode_uint32_t_array(enc, val->pCode, val->codeSize / 4); in vn_encode_VkShaderModuleCreateInfo_self()
|
| /third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
| D | GlyfEncoder.java | 90 int codeSize = glyph.instructionSize(); in writeInstructions() local 92 write255UShort(glyfStream, codeSize); in writeInstructions() 93 if (codeSize > 0) { in writeInstructions() 296 int codeSize = instrSize - i; in splitPush() local 298 write255UShort(glyfStream, codeSize); in splitPush() 300 if (codeSize > 0) { in splitPush()
|
| /third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
| D | GlyfEncoder.java | 90 int codeSize = glyph.instructionSize(); in writeInstructions() local 92 write255UShort(glyfStream, codeSize); in writeInstructions() 93 if (codeSize > 0) { in writeInstructions() 296 int codeSize = instrSize - i; in splitPush() local 298 write255UShort(glyfStream, codeSize); in splitPush() 300 if (codeSize > 0) { in splitPush()
|
| /third_party/mesa3d/src/nouveau/codegen/ |
| D | nv50_ir_target.cpp | 188 codeSize(0), codeSizeLimit(0), relocInfo(NULL), fixupInfo(NULL) in CodeEmitter() 196 codeSize = 0; in setCodeLocation() 203 uint32_t *bin = code - codeSize / 4; in printBinary() 204 INFO("program binary (%u bytes)", codeSize); in printBinary() 205 for (unsigned int pos = 0; pos < codeSize / 4; ++pos) { in printBinary() 420 relocInfo->entry[n].offset = codeSize + w * 4; in addReloc() 444 fixupInfo->entry[n] = FixupEntry(apply, ipa, reg, codeSize >> 2); in addInterp()
|
| D | nv50_ir_serialize.cpp | 71 blob_write_uint32(blob, info_out->bin.codeSize); in nv50_ir_prog_info_out_serialize() 72 blob_write_bytes(blob, info_out->bin.code, info_out->bin.codeSize); in nv50_ir_prog_info_out_serialize() 172 info_out->bin.codeSize = blob_read_uint32(&reader); in nv50_ir_prog_info_out_deserialize() 173 info_out->bin.code = (uint32_t *)MALLOC(info_out->bin.codeSize); in nv50_ir_prog_info_out_deserialize() 174 blob_copy_bytes(&reader, info_out->bin.code, info_out->bin.codeSize); in nv50_ir_prog_info_out_deserialize()
|
| D | nv50_ir_target.h | 108 inline uint32_t getCodeSize() const { return codeSize; } in getCodeSize() 128 uint32_t codeSize; variable
|
| D | nv50_ir_emit_gm107.cpp | 555 emitField(0x14, 24, pos - (codeSize + 8)); in emitBRA() 577 emitField(0x14, 24, insn->target.bb->binPos - (codeSize + 8)); in emitCAL() 601 emitField(0x14, 24, insn->target.bb->binPos - (codeSize + 8)); in emitPCNT() 623 emitField(0x14, 24, insn->target.bb->binPos - (codeSize + 8)); in emitPBK() 645 emitField(0x14, 24, insn->target.bb->binPos - (codeSize + 8)); in emitPRET() 667 emitField(0x14, 24, insn->target.bb->binPos - (codeSize + 8)); in emitSSY() 3403 const unsigned int size = (writeIssueDelays && !(codeSize & 0x1f)) ? 16 : 8; in emitInstruction() 3412 if (codeSize + size > codeSizeLimit) { in emitInstruction() 3418 int n = ((codeSize & 0x1f) / 8) - 1; in emitInstruction() 3424 codeSize += 8; in emitInstruction() [all …]
|
| D | nv50_ir_emit_gk110.cpp | 1565 int32_t pcRel = f->target.fn->binPos - (codeSize + 8); in emitFlow() 1571 int32_t pcRel = f->target.bb->binPos - (codeSize + 8); in emitFlow() 2476 const unsigned int size = (writeIssueDelays && !(codeSize & 0x3f)) ? 16 : 8; in emitInstruction() 2483 if (codeSize + size > codeSizeLimit) { in emitInstruction() 2489 int id = (codeSize & 0x3f) / 8 - 1; in emitInstruction() 2495 codeSize += 8; in emitInstruction() 2772 codeSize += 8; in emitInstruction() 2801 codeSize = codeSizeLimit = 0; in CodeEmitterGK110()
|
| D | nv50_ir_driver.h | 147 uint32_t codeSize; member
|
| /third_party/mesa3d/src/vulkan/runtime/ |
| D | vk_shader_module.c | 47 sizeof(*module) + pCreateInfo->codeSize, in vk_common_CreateShaderModule() 52 module->size = pCreateInfo->codeSize; in vk_common_CreateShaderModule() 80 _mesa_sha1_compute(pCreateInfo->pCode, pCreateInfo->codeSize, in vk_common_GetShaderModuleCreateInfoIdentifierEXT()
|
| D | vk_pipeline.c | 104 spirv_size = minfo->codeSize; in vk_pipeline_shader_stage_to_nir() 181 _mesa_sha1_compute(minfo->pCode, minfo->codeSize, spirv_sha1); in vk_pipeline_hash_shader_stage()
|
| /third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
| D | VkShaderModule.cpp | 24 : binary(pCreateInfo->pCode, pCreateInfo->codeSize / sizeof(uint32_t)) in ShaderModule()
|
| /third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/ |
| D | ShaderModule.cpp | 62 if (!spirvTools.Validate(descriptor->code, descriptor->codeSize)) { in ValidateShaderModuleDescriptor() 75 mCode(descriptor->code, descriptor->code + descriptor->codeSize), in ShaderModuleBase()
|
| /third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
| D | ShaderModuleD3D12.cpp | 29 mSpirv.assign(descriptor->code, descriptor->code + descriptor->codeSize); in ShaderModule()
|
| /third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
| D | vk_internal_shaders_autogen.cpp | 135 size_t codeSize; member 290 return InitShaderAndSerial(context, &shader.get(), shaderCode.code, shaderCode.codeSize); in GetShader()
|
| /third_party/skia/src/gpu/vk/ |
| D | GrVkUtil.cpp | 124 moduleCreateInfo.codeSize = spirv.size(); in GrInstallVkShaderModule()
|
| /third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
| D | ShaderModuleGL.cpp | 52 spirv_cross::CompilerGLSL compiler(descriptor->code, descriptor->codeSize); in ShaderModule()
|
| /third_party/flutter/skia/third_party/externals/freetype/src/truetype/ |
| D | ttinterp.h | 182 FT_Long codeSize; /* size of current range */ member
|
| /third_party/skia/third_party/externals/dng_sdk/source/ |
| D | dng_read_image.cpp | 530 int32 codeSize = fCodeSize; in GetCodeWord() local 532 code = fBitBuffer >> (32 - codeSize); in GetCodeWord() 534 if (fBitBufferCount >= codeSize) in GetCodeWord() 539 fBitBuffer <<= codeSize; in GetCodeWord() 540 fBitBufferCount -= codeSize; in GetCodeWord() 583 const int32 bitsUsed = codeSize - bitsSoFar; in GetCodeWord()
|
| /third_party/flutter/skia/src/gpu/vk/ |
| D | GrVkUtil.cpp | 160 moduleCreateInfo.codeSize = spirv.size(); in GrInstallVkShaderModule()
|
| /third_party/skia/third_party/externals/freetype/src/truetype/ |
| D | ttinterp.h | 185 FT_Long codeSize; /* size of current range */ member
|
| /third_party/mesa3d/src/gallium/drivers/nouveau/ |
| D | nouveau_compiler.c | 134 *size = info_out.bin.codeSize; in nouveau_codegen()
|
| /third_party/freetype/src/truetype/ |
| D | ttinterp.h | 185 FT_Long codeSize; /* size of current range */ member
|
| /third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
| D | ShaderModuleVk.cpp | 182 createInfo.codeSize = spirv.size() * sizeof(uint32_t); in GetTransformedModuleHandle()
|