Searched defs:byteOffset (Results 1 - 15 of 15) 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:__anon1289::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/core/
H A DSkTemplates.h59 * Returns a pointer to a D which comes byteOffset bytes after S.
61 template <typename D, typename S> static D* SkTAddOffset(S* ptr, size_t byteOffset) { argument
65 reinterpret_cast<typename SkTConstType<char, SkTIsConst<D>::value>::type*>(ptr) + byteOffset
/external/skia/src/core/
H A DSkConvolver.cpp206 int byteOffset = outX * 4; local
212 accum[0] += curFilter * sourceDataRows[filterY][byteOffset + 0];
213 accum[1] += curFilter * sourceDataRows[filterY][byteOffset + 1];
214 accum[2] += curFilter * sourceDataRows[filterY][byteOffset + 2];
216 accum[3] += curFilter * sourceDataRows[filterY][byteOffset + 3];
230 outRow[byteOffset + 0] = ClampTo8(accum[0]);
231 outRow[byteOffset + 1] = ClampTo8(accum[1]);
232 outRow[byteOffset + 2] = ClampTo8(accum[2]);
243 int maxColorChannel = SkTMax(outRow[byteOffset + 0],
244 SkTMax(outRow[byteOffset
[all...]
/external/icu/icu4c/source/tools/genrb/
H A Dreslist.c130 * type_preWrite() functions calculate ("preflight") and advance the *byteOffset
138 * byteOffset values.
144 res_preWrite(uint32_t *byteOffset,
149 * type_write() functions write their data to mem and update the byteOffset
154 res_write(UNewDataMemory *mem, uint32_t *byteOffset,
473 string_preWrite(uint32_t *byteOffset, argument
477 res->fRes = URES_MAKE_RESOURCE(URES_STRING, *byteOffset >> 2);
478 *byteOffset += 4 + (res->u.fString.fLength + 1) * U_SIZEOF_UCHAR;
482 bin_preWrite(uint32_t *byteOffset, argument
486 uint32_t dataStart = *byteOffset
497 array_preWrite(uint32_t *byteOffset, struct SRBRoot *bundle, struct SResource *res, UErrorCode *status) argument
513 table_preWrite(uint32_t *byteOffset, struct SRBRoot *bundle, struct SResource *res, UErrorCode *status) argument
536 res_preWrite(uint32_t *byteOffset, struct SRBRoot *bundle, struct SResource *res, UErrorCode *status) argument
590 string_write(UNewDataMemory *mem, uint32_t *byteOffset, struct SRBRoot *bundle, struct SResource *res, UErrorCode *status) argument
601 alias_write(UNewDataMemory *mem, uint32_t *byteOffset, struct SRBRoot *bundle, struct SResource *res, UErrorCode *status) argument
610 array_write(UNewDataMemory *mem, uint32_t *byteOffset, struct SRBRoot *bundle, struct SResource *res, UErrorCode *status) argument
632 intvector_write(UNewDataMemory *mem, uint32_t *byteOffset, struct SRBRoot *bundle, struct SResource *res, UErrorCode *status) argument
643 bin_write(UNewDataMemory *mem, uint32_t *byteOffset, struct SRBRoot *bundle, struct SResource *res, UErrorCode *status) argument
662 table_write(UNewDataMemory *mem, uint32_t *byteOffset, struct SRBRoot *bundle, struct SResource *res, UErrorCode *status) argument
701 res_write(UNewDataMemory *mem, uint32_t *byteOffset, struct SRBRoot *bundle, struct SResource *res, UErrorCode *status) argument
751 uint32_t byteOffset = 0; local
[all...]
/external/skia/src/ports/
H A DSkFontHost_mac.cpp1232 template <typename T> T* SkTAddByteOffset(T* ptr, size_t byteOffset) { argument
1233 return (T*)((char*)ptr + byteOffset);
/external/v8/test/cctest/
H A Dtest-api.cc3214 "%s.byteLength == 0 && %s.byteOffset == 0 && %s.length == 0",
3225 int byteOffset,
3227 v8::Handle<TypedArray> ta = TypedArray::New(ab, byteOffset, length);
3229 CHECK_EQ(byteOffset, static_cast<int>(ta->ByteOffset()));
3325 CHECK(CompileRun("dv.byteLength == 0 && dv.byteOffset == 0")->IsTrue());
3224 CreateAndCheck(Handle<v8::ArrayBuffer> ab, int byteOffset, int length) argument
/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/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 656 milliseconds