Home
last modified time | relevance | path

Searched refs:copyCode (Results 1 – 5 of 5) sorted by relevance

/external/javassist/src/main/javassist/bytecode/
DCodeAttribute.java94 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/
DMethodInliner.java196 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/
DDecode.java187 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/
Ddecode.js100 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/
DDecode.cs723 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()