Searched defs:offset (Results 201 - 225 of 447) sorted by relevance

1234567891011>>

/frameworks/base/core/jni/
H A Dandroid_media_JetPlayer.cpp165 jobject fileDescriptor, jlong offset, jlong length)
179 (long long)offset, (long long)length); // cast params to types used by EAS_FILE
164 android_media_JetPlayer_loadFromFileD(JNIEnv *env, jobject thiz, jobject fileDescriptor, jlong offset, jlong length) argument
H A Dandroid_opengl_GLES10Ext.cpp66 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset) argument
86 *offset = _env->CallStaticIntMethod(nioAccessClass,
H A Dandroid_view_GLES20DisplayList.cpp174 jobject clazz, DisplayList* displayList, int offset) {
175 displayList->offsetLeftRight(offset);
179 jobject clazz, DisplayList* displayList, int offset) {
180 displayList->offsetTopBottom(offset);
173 android_view_GLES20DisplayList_offsetLeftRight(JNIEnv* env, jobject clazz, DisplayList* displayList, int offset) argument
178 android_view_GLES20DisplayList_offsetTopBottom(JNIEnv* env, jobject clazz, DisplayList* displayList, int offset) argument
/frameworks/base/graphics/java/android/graphics/
H A DBitmapFactory.java415 * @param offset offset into imageData for where the decoder should begin
417 * @param length the number of bytes, beginning at offset, to parse
424 public static Bitmap decodeByteArray(byte[] data, int offset, int length, Options opts) { argument
425 if ((offset | length) < 0 || data.length < offset + length) {
428 Bitmap bm = nativeDecodeByteArray(data, offset, length, opts);
440 * @param offset offset into imageData for where the decoder should begin
442 * @param length the number of bytes, beginning at offset, t
445 decodeByteArray(byte[] data, int offset, int length) argument
658 nativeDecodeByteArray(byte[] data, int offset, int length, Options opts) argument
[all...]
H A DRect.java274 public void offset(int dx, int dy) { method in class:Rect
H A DRectF.java238 public void offset(float dx, float dy) { method in class:RectF
/frameworks/base/include/androidfw/
H A DCursorWindow.h44 * an offset to the next chunk in a linked-list of additional chunk of RowSlots in case
46 * FieldSlot per column, which has the size, offset, and type of the data for that field.
73 uint32_t offset; member in struct:android::CursorWindow::FieldSlot::__anon1012::__anon1013
131 return static_cast<char*>(offsetToPtr(fieldSlot->data.buffer.offset));
136 return offsetToPtr(fieldSlot->data.buffer.offset);
154 uint32_t offset; member in struct:android::CursorWindow::RowSlot
169 inline void* offsetToPtr(uint32_t offset) { argument
170 return static_cast<uint8_t*>(mData) + offset;
178 * Allocate a portion of the window. Returns the offset
/frameworks/base/libs/androidfw/
H A DCursorWindow.cpp183 LOG_WINDOW("Allocated row %u, rowSlot is at offset %u, fieldDir is %d bytes at offset %u\n",
185 rowSlot->offset = fieldDirOffset;
209 uint32_t offset = mHeader->freeOffset + padding; local
210 uint32_t nextFreeOffset = offset + size;
219 return offset;
268 FieldSlot* fieldDir = static_cast<FieldSlot*>(offsetToPtr(rowSlot->offset));
292 uint32_t offset = alloc(size); local
293 if (!offset) {
297 memcpy(offsetToPtr(offset), valu
[all...]
/frameworks/base/media/java/android/drm/mobile1/
H A DDrmRawContent.java254 * The offset of this DRM content to be reset.
256 private int offset; field in class:DrmRawContent.DrmInputStream
275 offset = 0;
293 int availableLen = len - offset;
335 len = nativeReadContent(b, off, len, offset);
342 offset += len;
420 * @param bufOff the offset of the buffer to start to save data.
422 * @param mediaOff the offset of the media content data to start to read.
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java120 public boolean move(int offset) { argument
/frameworks/base/tests/BrowserTestPlugin/jni/
H A Dmain.cpp45 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len,
207 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer) argument
/frameworks/base/tools/aapt/
H A DZipEntry.h75 * Return the offset of the local file header.
80 * Return the absolute file offset of the start of the compressed or
194 * Set the offset of the local file header, relative to the start of
197 void setLFHOffset(off_t offset) { argument
198 mCDE.mLocalHeaderRelOffset = (long) offset;
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFSegment.h88 uint64_t offset() const function in class:mcld::ELFSegment
152 uint64_t m_Offset; // File offset where segment is located, in bytes
H A DLDSection.h70 /// offset - An integer specifying the offset of this section in the file.
71 /// Before layouting, output's LDSection::offset() should return zero.
72 uint64_t offset() const function in class:mcld::LDSection
77 /// Before layouting, output's LDSection::offset() should return zero.
/frameworks/compile/mclinker/lib/LD/
H A DGNUArchiveReader.cpp113 // bypass if another symbol with the same object file offset is included
131 // use the file offset in current archive to find out the member we
190 /// @param pFileOffset - file offset of the member header in the archive
209 // parse the member name and nested offset if any
222 // parse the name offset
226 // there is a nested offset
320 // set up the pointers for file offset and name offset
342 size_t offset = Archive::MAGIC_LEN + local
346 if (0x0 != (offset
[all...]
H A DLayout.cpp94 /// setFragmentLayoutOffset - set the fragment's layout offset. This function
96 /// If the offset of the fragment was set before, return immediately.
102 // find the most-recent fragment whose offset was set.
112 uint64_t offset = 0; local
115 offset = 0;
119 offset = first->getOffset();
120 offset += computeFragmentSize(*this, *first);
125 frag_not_set->setOffset(offset);
126 offset += computeFragmentSize(*this, *frag_not_set);
134 /// 2. compute the layout offset o
619 uint64_t offset = pBackend.sectionStartOffset(); local
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMPLT.cpp154 uint32_t offset = 0; local
157 offset = got_base - (plt_base + 16);
159 offset = (plt_base + 16) - got_base;
175 data[4] = offset;
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86PLT.cpp33 0x68, 0, 0, 0, 0, // pushl $offset
45 0x68, 0, 0, 0, 0, // pushl $offset
168 uint32_t *offset = reinterpret_cast<uint32_t*>(data + 2); local
169 *offset = got_base + 4;
170 offset = reinterpret_cast<uint32_t*>(data + 8);
171 *offset = got_base + 8;
213 uint32_t* offset; local
215 offset = reinterpret_cast<uint32_t*>(data + 2);
217 *offset = GOTEntryOffset;
220 *offset
[all...]
/frameworks/native/libs/utils/
H A DDebug.cpp183 size_t offset; local
223 for (offset = 0; ; offset += bytesPerLine, pos += bytesPerLine) {
228 sprintf(c, "0x%08x: ", (int)offset);
/frameworks/native/opengl/tools/glgen/src/
H A DJniCodeEmitter.java201 "offset", "_remaining", iii);
205 String offset, String remaining, String iii) {
217 (isBuffer ? "remaining()" : "length - " + offset) +
352 boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) {
364 offset, remaining, iii);
391 offset) + " < " + checks[index + 2] +
430 boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) {
810 // (JNIEnv *_env, jobject this, jint plane, jfloatArray equation_ref, jint offset) {
1008 String offset = "offset";
204 printIfcheckPostamble(PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
351 emitNativeBoundsChecks(CFunc cfunc, String cname, PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
429 emitSentinelCheck(CFunc cfunc, String cname, PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
[all...]
/frameworks/rs/
H A DrsFileA3D.cpp329 uint32_t offset = (uint32_t)mWriteIndex[i]->mOffset; local
330 headerStream.addU32(offset);
331 offset = (uint32_t)mWriteIndex[i]->mLength;
332 headerStream.addU32(offset);
H A DrsMesh.cpp233 uint32_t offset = bufferElem->getFieldOffsetBytes(ct); local
237 posPtr = (float*)(bp + offset);
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DDiskBasedCache.java434 public int read(byte[] buffer, int offset, int count) throws IOException { argument
435 int result = super.read(buffer, offset, count);
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL_Android.h165 XAAint64 offset; member in struct:XADataLocator_AndroidFD_
/frameworks/wilhelm/src/android/
H A DMediaPlayer_to_android.cpp436 int64_t offset = (int64_t)mp->mDataSource.mLocator.mFD.offset; local
439 offset == SL_DATALOCATOR_ANDROIDFD_USE_FILE_SIZE ?
440 (int64_t)PLAYER_FD_FIND_FILE_SIZE : offset,

Completed in 232 milliseconds

1234567891011>>