Searched refs:oldCode (Results 1 – 6 of 6) sorted by relevance
/external/proguard/src/proguard/optimize/ |
D | ChangedCodePrinter.java | 293 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/ |
D | GifDecoder.java | 529 …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/ |
D | LanguageCodeConverter.java | 184 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()
|
D | AddPopulationData.java | 98 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/ |
D | CodeAttributeEditor.java | 598 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/ |
D | dng_read_image.cpp | 643 int32 oldCode = code; in Expand() local 673 code = oldCode; in Expand() 793 AddTable (oldCode, code); in Expand() 797 oldCode = inCode; in Expand()
|