Home
last modified time | relevance | path

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

123

/external/swiftshader/src/Reactor/
DDLL.cpp40 codeSize = 0; in DLL()
56 functionList[function] = new Function(codeSize, function, entry, size); in addFunction()
58 codeSize += size; in addFunction()
68 if(codeSize == 0) in emit()
115 int exportsPage = codePage + pageAlign(codeSize); in emit()
137 COFFheader32.OptionalHeader.SizeOfCode = fileAlign(codeSize); in emit()
191 COFFheader64.OptionalHeader.SizeOfCode = fileAlign(codeSize); in emit()
230 textSection.Misc.VirtualSize = pageAlign(codeSize); in emit()
232 textSection.SizeOfRawData = fileAlign(codeSize); in emit()
247 exportsSection.PointerToRawData = textSection.PointerToRawData + fileAlign(codeSize); in emit()
DDLL.hpp83 int codeSize; member in sw::DLL
/external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
DGifDecoder.java529 …int available, clear, codeMask, codeSize, endOfInformation, inCode, oldCode, bits, code, count, i,… in decodeBitmapData() local
552 codeSize = dataSize + 1; in decodeBitmapData()
553 codeMask = (1 << codeSize) - 1; in decodeBitmapData()
579 while (bits >= codeSize) { in decodeBitmapData()
582 datum >>= codeSize; in decodeBitmapData() local
583 bits -= codeSize; in decodeBitmapData()
588 codeSize = dataSize + 1; in decodeBitmapData()
589 codeMask = (1 << codeSize) - 1; in decodeBitmapData()
628 codeSize++; in decodeBitmapData()
/external/swiftshader/src/Renderer/
DRoutineCache.hpp115 int codeSize = routine->getCodeSize(); in ~RoutineCache() local
118 for(int j = 1; j < codeSize - 4; j++) in ~RoutineCache()
134 for(int j = 1; j < codeSize - 4; j++) in ~RoutineCache()
/external/javassist/src/main/javassist/expr/
DNewExpr.java171 int codeSize = canReplace(); in replace() local
172 int end = pos + codeSize; in replace()
207 if (codeSize > 3) // if the original code includes DUP. in replace()
/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_target.cpp149 codeSize = 0; in setCodeLocation()
156 uint32_t *bin = code - codeSize / 4; in printBinary()
157 INFO("program binary (%u bytes)", codeSize); in printBinary()
158 for (unsigned int pos = 0; pos < codeSize / 4; ++pos) { in printBinary()
382 relocInfo->entry[n].offset = codeSize + w * 4; in addReloc()
Dnv50_ir_target.h73 inline uint32_t getCodeSize() const { return codeSize; } in getCodeSize()
90 uint32_t codeSize; variable
Dnv50_ir_driver.h110 uint32_t codeSize; member
Dnv50_ir_emit_nv50.cpp1528 if (codeSize + insn->encSize > codeSizeLimit) { in emitInstruction()
1730 codeSize += insn->encSize; in emitInstruction()
1874 codeSize = codeSizeLimit = 0; in CodeEmitterNV50()
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
DCodeAttribute_info.java196 public void setCode (final byte [] code, final int codeSize) in setCode() argument
199 m_codeSize = codeSize; in setCode()
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DMethodDefinition.java534 … int codeSize = lastInstructionAddress + instructions.get(instructions.size() - 1).getCodeUnits(); in addTries() local
540 if (startAddress >= codeSize) { in addTries()
545 if (endAddress > codeSize) { in addTries()
562 if (handlerAddress >= codeSize) { in addTries()
/external/mesa3d/src/gallium/drivers/nvc0/codegen/
Dnv50_ir_emit_nvc0.cpp1183 int32_t pcRel = f->target.fn->binPos - (codeSize + 8); in emitFlow()
1189 int32_t pcRel = f->target.bb->binPos - (codeSize + 8); in emitFlow()
1538 if (writeIssueDelays && !(codeSize & 0x3f)) in emitInstruction()
1545 if (codeSize + size > codeSizeLimit) { in emitInstruction()
1551 if (!(codeSize & 0x3f)) { in emitInstruction()
1555 codeSize += 8; in emitInstruction()
1557 const unsigned int id = (codeSize & 0x3f) / 8 - 1; in emitInstruction()
1757 codeSize += insn->encSize; in emitInstruction()
2319 codeSize = codeSizeLimit = 0; in CodeEmitterNVC0()
/external/pdfium/third_party/freetype/src/truetype/
Dttinterp.h181 FT_Long codeSize; /* size of current range */ member
Dttinterp.c157 exec->codeSize = coderange->size; in TT_Goto_CodeRange()
1663 exc->codeSize = range->size; in Ins_Goto_CodeRange()
3328 if ( exc->IP < exc->codeSize ) in SkipCode()
3335 if ( exc->IP + 1 >= exc->codeSize ) in SkipCode()
3340 if ( exc->IP + exc->length <= exc->codeSize ) in SkipCode()
7576 if ( exc->IP + 1 >= exc->codeSize ) in TT_RunIns()
7582 if ( exc->IP + exc->length > exc->codeSize ) in TT_RunIns()
8237 if ( exc->IP >= exc->codeSize ) in TT_RunIns()
/external/freetype/src/truetype/
Dttinterp.h182 FT_Long codeSize; /* size of current range */ member
Dttinterp.c141 exec->codeSize = coderange->size; in TT_Goto_CodeRange()
1633 exc->codeSize = range->size; in Ins_Goto_CodeRange()
3268 if ( exc->IP < exc->codeSize ) in SkipCode()
3275 if ( exc->IP + 1 >= exc->codeSize ) in SkipCode()
3280 if ( exc->IP + exc->length <= exc->codeSize ) in SkipCode()
7693 if ( exc->IP + 1 >= exc->codeSize ) in TT_RunIns()
7699 if ( exc->IP + exc->length > exc->codeSize ) in TT_RunIns()
8391 if ( exc->IP >= exc->codeSize ) in TT_RunIns()
/external/skia/src/gpu/vk/
DGrVkUtil.cpp297 moduleCreateInfo.codeSize = code.size(); in GrCompileVkShaderModule()
/external/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()
/external/emma/core/java12/com/vladium/emma/instr/
DInstrVisitor.java711 final int codeSize = attribute.getCodeSize (); in visit() local
713 …race2) m_log.trace2 ("visit", "code attribute for method #" + m_methodID + ": size = " + codeSize); in visit()
743 for (int ip = 0; ip < codeSize; ) in visit()
950 _leaders [blockCount] = codeSize; in visit()
1116 int newcodeCapacity = codeSize << 1; in visit()
/external/dexmaker/lib/
Ddalvik-dx-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/ ...
/external/vulkan-validation-layers/demos/smoke/
DSmoke.cpp224 sh_info.codeSize = sizeof(Smoke_push_constant_vert); in create_shader_modules()
228 sh_info.codeSize = sizeof(Smoke_vert); in create_shader_modules()
234 sh_info.codeSize = sizeof(Smoke_frag); in create_shader_modules()
/external/vulkan-validation-layers/tests/
Dvkrenderframework.cpp1092 moduleCreateInfo.codeSize = 3 * sizeof(uint32_t) + shader_len + 1; in VkShaderObj()
1093 moduleCreateInfo.pCode = (uint32_t *)malloc(moduleCreateInfo.codeSize); in VkShaderObj()
1107 moduleCreateInfo.codeSize = spv.size() * sizeof(unsigned int); in VkShaderObj()
/external/mesa3d/src/gallium/drivers/nv50/
Dnv50_program.c350 prog->code_size = info->bin.codeSize; in nv50_program_translate()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineCacheTests.cpp194 …deUint32 codeSize = (deUint32)m_context.getBinaryCollection().get(sourceName).getS… in bindShaderStage() local
201codeSize, // deUintptr codeSiz… in bindShaderStage()
/external/mesa3d/src/gallium/drivers/nvc0/
Dnvc0_program.c581 prog->code_size = info->bin.codeSize; in nvc0_program_translate()

123