Searched refs:copyCode (Results 1 – 5 of 5) sorted by relevance
/external/javassist/src/main/javassist/bytecode/ |
D | CodeAttribute.java | 94 info = src.copyCode(cp, classnames, exceptions, this); in CodeAttribute() 353 private byte[] copyCode(ConstPool destCp, Map<String,String> classnames, in copyCode() method in CodeAttribute 360 LdcEntry ldc = copyCode(this.info, 0, len, this.getConstPool(), in copyCode() 365 private static LdcEntry copyCode(byte[] code, int beginPos, int endPos, in copyCode() method in CodeAttribute
|
/external/proguard/src/proguard/optimize/peephole/ |
D | MethodInliner.java | 196 copyCode(clazz, method, codeAttribute); in visitCodeAttribute0() 240 copyCode(clazz, method, codeAttribute); in visitCodeAttribute0() 336 private void copyCode(Clazz clazz, Method method, CodeAttribute codeAttribute) in copyCode() method in MethodInliner
|
/external/brotli/java/org/brotli/dec/ |
D | Decode.java | 187 int copyCode = (((0x26244 >>> (rangeIdx * 2)) & 0x3) << 3) | (cmdCode & 7); in unpackCommandLookupTable() local 188 short copyLengthOffset = copyLengthOffsets[copyCode]; in unpackCommandLookupTable() 193 (short) (INSERT_LENGTH_N_BITS[insertCode] | (COPY_LENGTH_N_BITS[copyCode] << 8)); in unpackCommandLookupTable() 195 cmdLookup[index + 2] = copyLengthOffsets[copyCode]; in unpackCommandLookupTable()
|
/external/brotli/js/ |
D | decode.js | 100 var /** number */ copyCode = (((0x26244 >>> (rangeIdx * 2)) & 0x3) << 3) | (cmdCode & 7); 101 var /** number */ copyLengthOffset = copyLengthOffsets[copyCode]; 104 … cmdLookup[index + 0] = (INSERT_LENGTH_N_BITS[insertCode] | (COPY_LENGTH_N_BITS[copyCode] << 8)); 106 cmdLookup[index + 2] = copyLengthOffsets[copyCode];
|
/external/brotli/csharp/org/brotli/dec/ |
D | Decode.cs | 723 int copyCode = Org.Brotli.Dec.Prefix.CopyRangeLut[rangeIdx] + (cmdCode & 7); in Decompress() 725 …Dec.Prefix.CopyLengthOffset[copyCode] + Org.Brotli.Dec.BitReader.ReadBits(br, Org.Brotli.Dec.Prefi… in Decompress()
|