Searched defs:byteOffset (Results 1 - 21 of 21) sorted by relevance

/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLBIOSource.java84 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
87 source.get(buffer, byteOffset, toRead);
/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DExceptionCatchingInputStream.java83 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
86 read = wrapped.read(buffer, byteOffset, byteCount);
/external/aac/libFDK/src/
H A DFDK_bitbuffer.cpp160 UINT byteOffset = hBitBuf->BitNdx >> 3 ; local
169 UINT tx = (hBitBuf->Buffer [ byteOffset & byteMask] << 24) |
170 (hBitBuf->Buffer [(byteOffset+1) & byteMask] << 16) |
171 (hBitBuf->Buffer [(byteOffset+2) & byteMask] << 8) |
172 hBitBuf->Buffer [(byteOffset+3) & byteMask];
177 tx |= hBitBuf->Buffer [(byteOffset+4) & byteMask] >> (8-bitOffset);
192 UINT byteOffset = (BitNdx-1) >> 3; local
193 UINT cache = (hBitBuf->Buffer[(byteOffset-3)] << 24) |
194 (hBitBuf->Buffer[(byteOffset-2)] << 16) |
195 (hBitBuf->Buffer[(byteOffset
216 UINT byteOffset = hBitBuf->BitNdx >> 3 ; local
252 UINT byteOffset = hBitBuf->BitNdx >> 3 ; local
278 UINT byteOffset = hBitBuf->BitNdx >> 3 ; local
399 UINT byteOffset = h_BitBufSrc->BitNdx >> 3 ; local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DArrayBoundCheckerV2.cpp47 SVal byteOffset; member in class:__anon1625::RegionRawOffsetV2
50 : baseRegion(nullptr), byteOffset(UnknownVal()) {}
54 : baseRegion(base), byteOffset(offset) {}
56 NonLoc getByteOffset() const { return byteOffset.castAs<NonLoc>(); }
107 // CHECK LOWER BOUND: Is byteOffset < extent begin?
138 // CHECK UPPER BOUND: Is byteOffset >= extent(baseRegion)? If so,
/external/deqp/framework/referencerenderer/
H A DrrVertexAttrib.cpp497 const int byteOffset = elementNdx*stride; local
500 readFloat(dst, vertexAttrib.type, vertexAttrib.size, (const deUint8*)vertexAttrib.pointer + byteOffset);
517 const int byteOffset = elementNdx*stride; local
520 readInt(dst, vertexAttrib.type, vertexAttrib.size, (const deUint8*)vertexAttrib.pointer + byteOffset);
537 const int byteOffset = elementNdx*stride; local
540 readUint(dst, vertexAttrib.type, vertexAttrib.size, (const deUint8*)vertexAttrib.pointer + byteOffset);
/external/skia/include/private/
H A DSkTemplates.h40 * Returns a pointer to a D which comes byteOffset bytes after S.
42 template <typename D, typename S> static D* SkTAddOffset(S* ptr, size_t byteOffset) { argument
45 return reinterpret_cast<D*>(reinterpret_cast<sknonstd::same_cv_t<char, D>*>(ptr) + byteOffset);
/external/skia/src/core/
H A DSkConvolver.cpp205 int byteOffset = outX * 4; local
211 accum[0] += curFilter * sourceDataRows[filterY][byteOffset + 0];
212 accum[1] += curFilter * sourceDataRows[filterY][byteOffset + 1];
213 accum[2] += curFilter * sourceDataRows[filterY][byteOffset + 2];
215 accum[3] += curFilter * sourceDataRows[filterY][byteOffset + 3];
229 outRow[byteOffset + 0] = ClampTo8(accum[0]);
230 outRow[byteOffset + 1] = ClampTo8(accum[1]);
231 outRow[byteOffset + 2] = ClampTo8(accum[2]);
242 int maxColorChannel = SkTMax(outRow[byteOffset + 0],
243 SkTMax(outRow[byteOffset
[all...]
/external/icu/icu4c/source/tools/genrb/
H A Dreslist.cpp641 StringBaseResource::handlePreWrite(uint32_t *byteOffset) { argument
643 fRes = URES_MAKE_RESOURCE(fType, *byteOffset >> 2);
644 *byteOffset += 4 + (length() + 1) * U_SIZEOF_UCHAR;
648 IntVectorResource::handlePreWrite(uint32_t *byteOffset) { argument
653 fRes = URES_MAKE_RESOURCE(URES_INT_VECTOR, *byteOffset >> 2);
654 *byteOffset += (1 + fCount) * 4;
659 BinaryResource::handlePreWrite(uint32_t *byteOffset) { argument
661 uint32_t dataStart = *byteOffset + sizeof(fLength);
665 *byteOffset += pad; /* pad == 4 or 8 or 12 */
667 fRes = URES_MAKE_RESOURCE(URES_BINARY, *byteOffset >>
672 preWriteAllRes(uint32_t *byteOffset) argument
679 handlePreWrite(uint32_t *byteOffset) argument
686 handlePreWrite(uint32_t *byteOffset) argument
700 preWrite(uint32_t *byteOffset) argument
724 handleWrite(UNewDataMemory *mem, uint32_t *byteOffset) argument
734 writeAllRes(UNewDataMemory *mem, uint32_t *byteOffset) argument
743 writeAllRes32(UNewDataMemory *mem, uint32_t *byteOffset) argument
751 handleWrite(UNewDataMemory *mem, uint32_t *byteOffset) argument
759 handleWrite(UNewDataMemory *mem, uint32_t *byteOffset) argument
768 handleWrite(UNewDataMemory *mem, uint32_t *byteOffset) argument
786 handleWrite(UNewDataMemory *mem, uint32_t *byteOffset) argument
810 write(UNewDataMemory *mem, uint32_t *byteOffset) argument
833 uint32_t byteOffset = 0; local
[all...]
/external/v8/test/cctest/
H A Dtest-api.cc3488 "%s.byteLength == 0 && %s.byteOffset == 0 && %s.length == 0",
3499 int byteOffset, int length) {
3500 v8::Local<TypedArray> ta = TypedArray::New(ab, byteOffset, length);
3502 CHECK_EQ(byteOffset, static_cast<int>(ta->ByteOffset()));
3597 CHECK(CompileRun("dv.byteLength == 0 && dv.byteOffset == 0")->IsTrue());
3498 CreateAndCheck(Local<v8::ArrayBuffer> ab, int byteOffset, int length) argument
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/guice/extensions/persist/lib/
H A Ddb4o-6.4.14.8131-java5.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/db4o/ com/db4o/activation/ com/db4o/cluster/ com/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 3366 milliseconds