Home
last modified time | relevance | path

Searched refs:oldCode (Results 1 – 6 of 6) sorted by relevance

/external/proguard/src/proguard/optimize/
DChangedCodePrinter.java293 byte[] oldCode = new byte[code.length]; in visitCodeAttribute()
296 System.arraycopy(code, 0, oldCode, 0, codeAttribute.u4codeLength); in visitCodeAttribute()
302 if (codeHasChanged(codeAttribute, oldCode)) in visitCodeAttribute()
304 printChangedCode(clazz, method, codeAttribute, oldCode); in visitCodeAttribute()
311 private boolean codeHasChanged(CodeAttribute codeAttribute, byte[] oldCode) in codeHasChanged() argument
313 if (oldCode.length != codeAttribute.u4codeLength) in codeHasChanged()
320 if (oldCode[index] != codeAttribute.code[index]) in codeHasChanged()
333 byte[] oldCode) in printChangedCode() argument
344 (oldCode[index] == codeAttribute.code[index]? " -- ":" => ")+ in printChangedCode()
346 Integer.toHexString(0x100|oldCode[index] &0xff).substring(1)+" "+ in printChangedCode()
/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
551 oldCode = NULL_CODE; in decodeBitmapData()
591 oldCode = NULL_CODE; in decodeBitmapData()
604 if (oldCode == NULL_CODE) { in decodeBitmapData()
606 oldCode = code; in decodeBitmapData()
613 code = oldCode; in decodeBitmapData()
624 prefix[available] = (short) oldCode; in decodeBitmapData()
632 oldCode = inCode; in decodeBitmapData()
/external/cldr/tools/java/org/unicode/cldr/tool/
DLanguageCodeConverter.java184 String oldCode = languageNameToCode.get(name); in addNameToCode() local
185 if (oldCode != null) { in addNameToCode()
186 if (!oldCode.equals(code)) { in addNameToCode()
187 … parseErrors.add("Name Collision! " + type + ": " + name + " <" + oldCode + ", " + code + ">"); in addNameToCode()
DAddPopulationData.java98 String oldCode = ""; in main() local
106 oldCode = ""; in main()
112 if (!code.equals(oldCode)) { in main()
113 oldCode = code; in main()
/external/proguard/src/proguard/classfile/editor/
DCodeAttributeEditor.java598 byte[] oldCode = codeAttribute.code; in updateInstructions()
608 int newLength = mapInstructions(oldCode, in updateInstructions()
624 oldCode, in updateInstructions()
638 private int mapInstructions(byte[] oldCode, int oldLength) in mapInstructions() argument
648 Instruction instruction = InstructionFactory.create(oldCode, oldOffset); in mapInstructions()
720 byte[] oldCode, in moveInstructions() argument
730 Instruction instruction = InstructionFactory.create(oldCode, oldOffset); in moveInstructions()
/external/dng_sdk/source/
Ddng_read_image.cpp643 int32 oldCode = code; in Expand() local
673 code = oldCode; in Expand()
793 AddTable (oldCode, code); in Expand()
797 oldCode = inCode; in Expand()