Searched refs:halfOffset (Results 1 – 8 of 8) sorted by relevance
/external/brotli/java/org/brotli/dec/ |
D | BitReader.java | 47 if (s.halfOffset > HALF_WATERLINE) { in readMoreInput() 59 int readOffset = s.halfOffset << LOG_HALF_SIZE; in doReadMoreInput() 63 s.halfOffset = 0; in doReadMoreInput() 83 int byteOffset = (s.halfOffset << LOG_HALF_SIZE) + ((s.bitOffset + 7) >> 3) - BYTENESS; in checkHealth() 96 s.accumulator64 = ((long) s.intBuffer[s.halfOffset++] << HALF_BITNESS) in fillBitWindow() 99 s.accumulator32 = ((int) s.shortBuffer[s.halfOffset++] << HALF_BITNESS) in fillBitWindow() 108 s.accumulator64 = ((long) s.intBuffer[s.halfOffset++] << HALF_BITNESS) in doFillBitWindow() 111 s.accumulator32 = ((int) s.shortBuffer[s.halfOffset++] << HALF_BITNESS) in doFillBitWindow() 155 s.halfOffset = HALVES_CAPACITY; in initBitReader() 188 return limit - s.halfOffset; in halfAvailable() [all …]
|
D | State.java | 34 int halfOffset; // BitReader: offset of next item in intBuffer/shortBuffer. field in State
|
/external/brotli/js/ |
D | decode.js | 45 s.accumulator32 = (s.shortBuffer[s.halfOffset++] << 16) | (s.accumulator32 >>> 16); 104 s.accumulator32 = (s.shortBuffer[s.halfOffset++] << 16) | (s.accumulator32 >>> 16); 123 s.accumulator32 = (s.shortBuffer[s.halfOffset++] << 16) | (s.accumulator32 >>> 16); 145 s.accumulator32 = (s.shortBuffer[s.halfOffset++] << 16) | (s.accumulator32 >>> 16); 157 s.accumulator32 = (s.shortBuffer[s.halfOffset++] << 16) | (s.accumulator32 >>> 16); 201 s.accumulator32 = (s.shortBuffer[s.halfOffset++] << 16) | (s.accumulator32 >>> 16); 207 s.accumulator32 = (s.shortBuffer[s.halfOffset++] << 16) | (s.accumulator32 >>> 16); 272 if (s.halfOffset > 2030) { 276 s.accumulator32 = (s.shortBuffer[s.halfOffset++] << 16) | (s.accumulator32 >>> 16); 305 s.accumulator32 = (s.shortBuffer[s.halfOffset++] << 16) | (s.accumulator32 >>> 16); [all …]
|
D | decode.min.js | 1 …halfOffset++]<<16|e.accumulator32>>>16;e.bitOffset-=16}if(ee(e,1)==0){return 16}var t=ee(e,3);if(t…
|
/external/swiftshader/src/Pipeline/ |
D | SamplerCore.hpp | 62 …Short4 offsetSample(Short4 &uvw, Pointer<Byte> &mipmap, int halfOffset, bool wrap, int count, Floa…
|
D | SamplerCore.cpp | 438 …Short4 SamplerCore::offsetSample(Short4 &uvw, Pointer<Byte> &mipmap, int halfOffset, bool wrap, in… in offsetSample() argument 440 Short4 offset = *Pointer<Short4>(mipmap + halfOffset); in offsetSample()
|
/external/swiftshader/src/Shader/ |
D | SamplerCore.hpp | 62 …Short4 offsetSample(Short4 &uvw, Pointer<Byte> &mipmap, int halfOffset, bool wrap, int count, Floa…
|
D | SamplerCore.cpp | 529 …Short4 SamplerCore::offsetSample(Short4 &uvw, Pointer<Byte> &mipmap, int halfOffset, bool wrap, in… in offsetSample() argument 531 Short4 offset = *Pointer<Short4>(mipmap + halfOffset); in offsetSample()
|