Home
last modified time | relevance | path

Searched refs:byteOffset (Results 1 – 25 of 26) sorted by relevance

12

/external/aac/libFDK/src/
DFDK_bitbuffer.cpp158 UINT byteOffset = hBitBuf->BitNdx >> 3; in FDK_get() local
166 UINT tx = (hBitBuf->Buffer[byteOffset & byteMask] << 24) | in FDK_get()
167 (hBitBuf->Buffer[(byteOffset + 1) & byteMask] << 16) | in FDK_get()
168 (hBitBuf->Buffer[(byteOffset + 2) & byteMask] << 8) | in FDK_get()
169 hBitBuf->Buffer[(byteOffset + 3) & byteMask]; in FDK_get()
173 tx |= hBitBuf->Buffer[(byteOffset + 4) & byteMask] >> (8 - bitOffset); in FDK_get()
186 UINT byteOffset = (BitNdx - 1) >> 3; in FDK_get32() local
188 UINT cache = (hBitBuf->Buffer[(byteOffset - 3)] << 24) | in FDK_get32()
189 (hBitBuf->Buffer[(byteOffset - 2)] << 16) | in FDK_get32()
190 (hBitBuf->Buffer[(byteOffset - 1)] << 8) | in FDK_get32()
[all …]
/external/icu/icu4c/source/tools/genrb/
Dreslist.cpp643 StringBaseResource::handlePreWrite(uint32_t *byteOffset) { in handlePreWrite() argument
645 fRes = URES_MAKE_RESOURCE(fType, *byteOffset >> 2); in handlePreWrite()
646 *byteOffset += 4 + (length() + 1) * U_SIZEOF_UCHAR; in handlePreWrite()
650 IntVectorResource::handlePreWrite(uint32_t *byteOffset) { in handlePreWrite() argument
655 fRes = URES_MAKE_RESOURCE(URES_INT_VECTOR, *byteOffset >> 2); in handlePreWrite()
656 *byteOffset += (1 + fCount) * 4; in handlePreWrite()
661 BinaryResource::handlePreWrite(uint32_t *byteOffset) { in handlePreWrite() argument
663 uint32_t dataStart = *byteOffset + sizeof(fLength); in handlePreWrite()
667 *byteOffset += pad; /* pad == 4 or 8 or 12 */ in handlePreWrite()
669 fRes = URES_MAKE_RESOURCE(URES_BINARY, *byteOffset >> 2); in handlePreWrite()
[all …]
Dreslist.h205 void preWrite(uint32_t *byteOffset);
206 virtual void handlePreWrite(uint32_t *byteOffset);
212 void write(UNewDataMemory *mem, uint32_t *byteOffset);
213 virtual void handleWrite(UNewDataMemory *mem, uint32_t *byteOffset);
237 void preWriteAllRes(uint32_t *byteOffset);
238 void writeAllRes(UNewDataMemory *mem, uint32_t *byteOffset);
239 void writeAllRes32(UNewDataMemory *mem, uint32_t *byteOffset);
258 virtual void handlePreWrite(uint32_t *byteOffset);
259 virtual void handleWrite(UNewDataMemory *mem, uint32_t *byteOffset);
276 virtual void handlePreWrite(uint32_t *byteOffset);
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DArrayBoundCheckerV2.cpp47 SVal byteOffset; member in __anone6deaeed0111::RegionRawOffsetV2
50 : baseRegion(nullptr), byteOffset(UnknownVal()) {} in RegionRawOffsetV2()
54 : baseRegion(base), byteOffset(offset) {} in RegionRawOffsetV2()
56 NonLoc getByteOffset() const { return byteOffset.castAs<NonLoc>(); } in getByteOffset()
/external/deqp/framework/opengl/
DgluDefs.hpp46 DE_INLINE void* BufferOffsetAsPointer (uintptr_t byteOffset) in BufferOffsetAsPointer() argument
48 return reinterpret_cast<void*>(byteOffset); in BufferOffsetAsPointer()
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLBIOSource.java87 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() argument
90 source.get(buffer, byteOffset, toRead); in read()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DOpenSSLBIOSource.java88 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() argument
91 source.get(buffer, byteOffset, toRead); in read()
/external/glide/library/src/main/java/com/bumptech/glide/util/
DExceptionCatchingInputStream.java83 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() argument
86 read = wrapped.read(buffer, byteOffset, byteCount); in read()
/external/brotli/csharp/org/brotli/dec/
DBitReader.cs103 int byteOffset = (br.intOffset << 2) + ((br.bitOffset + 7) >> 3) - 8; in CheckHealth()
104 if (byteOffset > br.tailBytes) in CheckHealth()
108 if (endOfStream && (byteOffset != br.tailBytes)) in CheckHealth()
/external/deqp/framework/referencerenderer/
DrrVertexAttrib.cpp500 const int byteOffset = elementNdx*stride; in readVertexAttrib() local
503 …loat(dst, vertexAttrib.type, vertexAttrib.size, (const deUint8*)vertexAttrib.pointer + byteOffset); in readVertexAttrib()
520 const int byteOffset = elementNdx*stride; in readVertexAttrib() local
523 …dInt(dst, vertexAttrib.type, vertexAttrib.size, (const deUint8*)vertexAttrib.pointer + byteOffset); in readVertexAttrib()
540 const int byteOffset = elementNdx*stride; in readVertexAttrib() local
543 …Uint(dst, vertexAttrib.type, vertexAttrib.size, (const deUint8*)vertexAttrib.pointer + byteOffset); in readVertexAttrib()
/external/brotli/java/org/brotli/dec/
DBitReader.java83 int byteOffset = (s.halfOffset << LOG_HALF_SIZE) + ((s.bitOffset + 7) >> 3) - BYTENESS; in checkHealth() local
84 if (byteOffset > s.tailBytes) { in checkHealth()
87 if ((endOfStream != 0) && (byteOffset != s.tailBytes)) { in checkHealth()
/external/libchrome/base/android/jni_generator/
DtestInputStream.javap37 const #31 = Asciz byteOffset;
185 0 10 2 byteOffset I
/external/skqp/include/private/
DSkTemplates.h43 template <typename D, typename S> static D* SkTAddOffset(S* ptr, size_t byteOffset) { in SkTAddOffset() argument
46 return reinterpret_cast<D*>(reinterpret_cast<sknonstd::same_cv_t<char, D>*>(ptr) + byteOffset); in SkTAddOffset()
/external/skia/include/private/
DSkTemplates.h43 template <typename D, typename S> static D* SkTAddOffset(S* ptr, size_t byteOffset) { in SkTAddOffset() argument
46 return reinterpret_cast<D*>(reinterpret_cast<sknonstd::same_cv_t<char, D>*>(ptr) + byteOffset); in SkTAddOffset()
/external/flatbuffers/tests/
Dmonster_test_generated.ts894 …return offset ? new Uint8Array(this.bb!.bytes().buffer, this.bb!.bytes().byteOffset + this.bb!.__v…
1042 …return offset ? new Uint8Array(this.bb!.bytes().buffer, this.bb!.bytes().byteOffset + this.bb!.__v…
1283 …return offset ? new Int8Array(this.bb!.bytes().buffer, this.bb!.bytes().byteOffset + this.bb!.__ve…
1415 …return offset ? new Uint8Array(this.bb!.bytes().buffer, this.bb!.bytes().byteOffset + this.bb!.__v…
1475 …return offset ? new Float64Array(this.bb!.bytes().buffer, this.bb!.bytes().byteOffset + this.bb!._…
1729 …return offset ? new Int8Array(this.bb!.bytes().buffer, this.bb!.bytes().byteOffset + this.bb!.__ve…
2805 …return offset ? new Int8Array(this.bb!.bytes().buffer, this.bb!.bytes().byteOffset + this.bb!.__ve…
2830 …return offset ? new Float64Array(this.bb!.bytes().buffer, this.bb!.bytes().byteOffset + this.bb!._…
Dmonster_test_generated.js987 …return offset ? new Uint8Array(this.bb.bytes().buffer, this.bb.bytes().byteOffset + this.bb.__vect…
1133 …return offset ? new Uint8Array(this.bb.bytes().buffer, this.bb.bytes().byteOffset + this.bb.__vect…
1374 …return offset ? new Int8Array(this.bb.bytes().buffer, this.bb.bytes().byteOffset + this.bb.__vecto…
1504 …return offset ? new Uint8Array(this.bb.bytes().buffer, this.bb.bytes().byteOffset + this.bb.__vect…
1564 …return offset ? new Float64Array(this.bb.bytes().buffer, this.bb.bytes().byteOffset + this.bb.__ve…
1818 …return offset ? new Int8Array(this.bb.bytes().buffer, this.bb.bytes().byteOffset + this.bb.__vecto…
2951 …return offset ? new Int8Array(this.bb.bytes().buffer, this.bb.bytes().byteOffset + this.bb.__vecto…
2976 …return offset ? new Float64Array(this.bb.bytes().buffer, this.bb.bytes().byteOffset + this.bb.__ve…
/external/fonttools/Lib/fontTools/ttLib/tables/
DE_B_D_T_.py588 byteOffset = row * rowBytes
589 return (byteOffset, byteOffset+rowBytes)
/external/deqp/external/vulkancts/modules/vulkan/texture/
DvktSampleVerifierUtil.cpp758 const int byteOffset, in readChannel() argument
761 const deUint8* cPtr = (const deUint8*) ptr + byteOffset; in readChannel()
/external/flatbuffers/tests/union_vector/
Dunion_vector_generated.js324 …return offset ? new Uint8Array(this.bb.bytes().buffer, this.bb.bytes().byteOffset + this.bb.__vect…
Dunion_vector_generated.ts289 …return offset ? new Uint8Array(this.bb!.bytes().buffer, this.bb!.bytes().byteOffset + this.bb!.__v…
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/Generic/
D2010-05-03-OriginDIE.ll72 !19 = !DILocalVariable(name: "byteOffset", line: 94, arg: 3, scope: !16, file: !10, type: !20)
/external/llvm/test/DebugInfo/Generic/
D2010-05-03-OriginDIE.ll72 !19 = !DILocalVariable(name: "byteOffset", line: 94, arg: 3, scope: !16, file: !10, type: !20)
/external/swiftshader/third_party/LLVM/test/DebugInfo/
D2010-05-03-OriginDIE.ll70 !19 = metadata !{i32 524545, metadata !16, metadata !"byteOffset", metadata !10, i32 94, metadata !…
/external/brotli/js/
Ddecode.js1277 var /** !number */ byteOffset = (s.halfOffset << 1) + ((s.bitOffset + 7) >> 3) - 4;
1278 if (byteOffset > s.tailBytes) {
1281 if ((endOfStream != 0) && (byteOffset != s.tailBytes)) {
/external/v8/src/builtins/
Ddata-view.tq103 // ES6 section 24.2.4.3 get DataView.prototype.byteOffset

12