HomeSort by relevance Sort by last modified time
    Searched full:copycode (Results 1 - 25 of 29) sorted by null

1 2

  /external/brotli/c/enc/
command.h 62 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) {
64 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3));
65 if (use_last_distance && inscode < 8 && copycode < 16) {
66 return (copycode < 8) ? bits64 : (bits64 | 64);
70 int offset = 2 * ((copycode >> 3) + 3 * (inscode >> 3));
86 uint16_t copycode = GetCopyLengthCode(copylen); local
87 *code = CombineLengthCodes(inscode, copycode, use_last_distance);
98 static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) {
99 return kCopyBase[copycode];
102 static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) {
    [all...]
backward_references_hq.c 449 const uint16_t copycode = GetCopyLengthCode(l); local
451 CombineLengthCodes(inscode, copycode, j == 0);
453 (float)GetCopyExtra(copycode) +
501 const uint16_t copycode = GetCopyLengthCode(len_code); local
502 const uint16_t cmdcode = CombineLengthCodes(inscode, copycode, 0);
503 const float cost = dist_cost + (float)GetCopyExtra(copycode) +
brotli_bit_stream.c 104 uint16_t copycode = GetCopyLengthCode(copylen_code); local
107 uint64_t copyextraval = copylen_code - GetCopyBase(copycode);
110 insnumextra + GetCopyExtra(copycode), bits, storage_ix, storage);
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeAttribute.java 93 info = src.copyCode(cp, classnames, exceptions, this);
340 private byte[] copyCode(ConstPool destCp, Map classnames,
347 LdcEntry ldc = copyCode(this.info, 0, len, this.getConstPool(),
352 private static LdcEntry copyCode(byte[] code, int beginPos, int endPos,
  /external/proguard/src/proguard/optimize/peephole/
MethodInliner.java 196 copyCode(clazz, method, codeAttribute);
240 copyCode(clazz, method, codeAttribute);
336 private void copyCode(Clazz clazz, Method method, CodeAttribute codeAttribute)
  /hardware/intel/img/psb_video/src/mrst/
pvr2d.h 309 PVR2D_ULONG CopyCode; /* rop code */
443 // CopyCode field of PVR2DBLTINFO structure:
444 // the CopyCode field of the PVR2DBLTINFO structure should contain a rop3 or rop4 code.
452 // CopyCode is taken to be a rop4 when pMaskMemInfo is non zero, otherwise it is assumed to be a rop3
    [all...]
  /external/v8/src/snapshot/
serializer.h 208 Code* CopyCode(Code* code);
serializer.cc 323 Code* Serializer::CopyCode(Code* code) {
741 code = serializer_->CopyCode(code);
  /external/brotli/java/org/brotli/dec/
Decode.java 769 int copyCode = COPY_RANGE_LUT[rangeIdx] + (cmdCode & 7);
771 int copyBits = COPY_LENGTH_N_BITS[copyCode];
773 s.copyLength = COPY_LENGTH_OFFSET[copyCode] + copyExtra;
    [all...]
  /external/brotli/csharp/org/brotli/dec/
Decode.cs 723 int copyCode = Org.Brotli.Dec.Prefix.CopyRangeLut[rangeIdx] + (cmdCode & 7);
725 state.copyLength = Org.Brotli.Dec.Prefix.CopyLengthOffset[copyCode] + Org.Brotli.Dec.BitReader.ReadBits(br, Org.Brotli.Dec.Prefix.CopyLengthNBits[copyCode]);
    [all...]
  /external/v8/src/
factory.h 649 Handle<Code> CopyCode(Handle<Code> code);
    [all...]
factory.cc     [all...]
code-stubs.cc 112 ic = isolate()->factory()->CopyCode(ic);
    [all...]
objects-inl.h     [all...]
  /external/v8/src/wasm/
wasm-module.cc 177 Handle<Code> code = isolate->factory()->CopyCode(code_cache_[cached_idx]);
    [all...]
  /external/brotli/js/
decode.js 806 var /** !number */ copyCode = COPY_RANGE_LUT[rangeIdx] + (cmdCode & 7);
811 var /** !number */ copyBits = COPY_LENGTH_N_BITS[copyCode];
813 s.copyLength = COPY_LENGTH_OFFSET[copyCode] + copyExtra;
    [all...]
  /external/annotation-tools/asmx/
javassist.jar 
  /external/annotation-tools/asmx/test/lib/
javassist.jar 
  /external/guice/extensions/persist/lib/
javassist.jar 
  /external/guice/extensions/struts2/lib/
javassist.jar 
  /external/robolectric/v1/lib/main/
javassist-3.14.0-GA.jar 
  /external/v8/src/heap/
heap.h     [all...]
heap.cc     [all...]
  /prebuilts/tools/common/m2/repository/org/javassist/javassist/3.19.0-GA/
javassist-3.19.0-GA.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.1/
proguard-base-5.1.jar 

Completed in 547 milliseconds

1 2