Home
last modified time | relevance | path

Searched refs:codeSize (Results 1 – 25 of 81) sorted by relevance

1234

/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DShaderModuleVk.cpp28 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/
Dvn_protocol_driver_shader_module.h29 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/
DGlyfEncoder.java90 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/
DGlyfEncoder.java90 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/
Dnv50_ir_target.cpp188 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()
Dnv50_ir_serialize.cpp71 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()
Dnv50_ir_target.h108 inline uint32_t getCodeSize() const { return codeSize; } in getCodeSize()
128 uint32_t codeSize; variable
Dnv50_ir_emit_gm107.cpp555 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 …]
Dnv50_ir_emit_gk110.cpp1565 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()
Dnv50_ir_driver.h147 uint32_t codeSize; member
/third_party/mesa3d/src/vulkan/runtime/
Dvk_shader_module.c47 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()
Dvk_pipeline.c104 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/
DVkShaderModule.cpp24 : binary(pCreateInfo->pCode, pCreateInfo->codeSize / sizeof(uint32_t)) in ShaderModule()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DShaderModule.cpp62 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/
DShaderModuleD3D12.cpp29 mSpirv.assign(descriptor->code, descriptor->code + descriptor->codeSize); in ShaderModule()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_internal_shaders_autogen.cpp135 size_t codeSize; member
290 return InitShaderAndSerial(context, &shader.get(), shaderCode.code, shaderCode.codeSize); in GetShader()
/third_party/skia/src/gpu/vk/
DGrVkUtil.cpp124 moduleCreateInfo.codeSize = spirv.size(); in GrInstallVkShaderModule()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/opengl/
DShaderModuleGL.cpp52 spirv_cross::CompilerGLSL compiler(descriptor->code, descriptor->codeSize); in ShaderModule()
/third_party/flutter/skia/third_party/externals/freetype/src/truetype/
Dttinterp.h182 FT_Long codeSize; /* size of current range */ member
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_read_image.cpp530 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/
DGrVkUtil.cpp160 moduleCreateInfo.codeSize = spirv.size(); in GrInstallVkShaderModule()
/third_party/skia/third_party/externals/freetype/src/truetype/
Dttinterp.h185 FT_Long codeSize; /* size of current range */ member
/third_party/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_compiler.c134 *size = info_out.bin.codeSize; in nouveau_codegen()
/third_party/freetype/src/truetype/
Dttinterp.h185 FT_Long codeSize; /* size of current range */ member
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DShaderModuleVk.cpp182 createInfo.codeSize = spirv.size() * sizeof(uint32_t); in GetTransformedModuleHandle()

1234