Searched defs:offset (Results 26 - 50 of 448) sorted by relevance

1234567891011>>

/frameworks/base/media/tests/omxjpegdecoder/
H A DStreamSource.cpp38 ssize_t StreamSource::readAt(off64_t offset, void *data, size_t size) { argument
42 mStream->skip(offset);
/frameworks/compile/mclinker/include/mcld/LD/
H A DFragmentRef.h52 /// @pNBytes - copies pNBytes from the fragment[offset()+pOffset]
53 /// @pOffset - additional offset.
54 /// the start address offset from fragment[offset()]
64 Offset offset() const function in class:mcld::FragmentRef
/frameworks/compile/mclinker/include/mcld/MC/
H A DMCFragmentRef.h51 /// @pNBytes - copies pNBytes from the fragment[offset()+pOffset]
52 /// @pOffset - additional offset.
53 /// the start address offset from fragment[offset()]
63 Offset offset() const function in class:mcld::MCFragmentRef
/frameworks/ex/photoviewer/src/com/android/ex/photo/util/
H A DExif.java30 int offset = 0;
34 while (offset + 3 < jpeg.length && (jpeg[offset++] & 0xFF) == 0xFF) {
35 int marker = jpeg[offset] & 0xFF;
41 offset++;
53 length = pack(jpeg, offset, 2, false);
54 if (length < 2 || offset + length > jpeg.length) {
61 pack(jpeg, offset + 2, 4, false) == 0x45786966 &&
62 pack(jpeg, offset + 6, 2, false) == 0) {
63 offset
122 pack(byte[] bytes, int offset, int length, boolean littleEndian) argument
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DExif.java30 int offset = 0;
34 while (offset + 3 < jpeg.length && (jpeg[offset++] & 0xFF) == 0xFF) {
35 int marker = jpeg[offset] & 0xFF;
41 offset++;
53 length = pack(jpeg, offset, 2, false);
54 if (length < 2 || offset + length > jpeg.length) {
61 pack(jpeg, offset + 2, 4, false) == 0x45786966 &&
62 pack(jpeg, offset + 6, 2, false) == 0) {
63 offset
122 pack(byte[] bytes, int offset, int length, boolean littleEndian) argument
[all...]
/frameworks/support/v4/java/android/support/v4/util/
H A DLogWriter.java51 @Override public void write(char[] buf, int offset, int count) { argument
53 char c = buf[offset + i];
/frameworks/wilhelm/src/android/
H A Dandroid_AudioToCbRenderer.cpp65 size_t offset = 0; local
66 while (offset < full) {
69 + offset + mDecodeBuffer->range_offset(),
70 mDecodeBuffer->range_length() - offset,
72 offset += consumed;
73 //SL_LOGV("consumed=%u, offset=%u, full=%u", consumed, offset, full);
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
H A DFwdLockEngine.h288 * the output converted data and offset. In this case the
289 * application will ignore the offset information.
298 * the entire data used over a conversion session. This signature must be copied to the offset
305 * the application about the file offset at which this
326 * @param offset Start position of the content
334 int fd, off64_t offset, off64_t length);
338 int fd, int offset, int length);
457 * @param offset Offset with which to update the file position.
467 off64_t offset,
472 off_t offset,
535 off_t offset; member in class:android::FwdLockEngine::DecodeSession
[all...]
/frameworks/av/include/media/stagefright/foundation/
H A DABuffer.h41 size_t offset() const { return mRangeOffset; } function in struct:android::ABuffer
43 void setRange(size_t offset, size_t size);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerFactory.h38 int64_t offset,
56 int64_t offset,
36 scoreFactory(const sp<IMediaPlayer>& client, int fd, int64_t offset, int64_t length, float curScore) argument
H A DMidiMetadataRetriever.cpp50 status_t MidiMetadataRetriever::setDataSource(int fd, int64_t offset, int64_t length) argument
52 ALOGV("setDataSource: fd(%d), offset(%lld), and length(%lld)", fd, offset, length);
58 return mMidiPlayer->setDataSource(fd, offset, length);;
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_seek_synch.cpp208 int32 offset = pVars->inputStream.usedBits + ((numBytes) << 3); local
210 offset >>= INBUF_ARRAY_INDEX_SHIFT;
211 uint8 *pElem = pVars->inputStream.pBuffer + offset;
/frameworks/base/core/java/android/util/
H A DLogWriter.java64 @Override public void write(char[] buf, int offset, int count) { argument
66 char c = buf[offset + i];
/frameworks/base/core/java/android/view/inputmethod/
H A DCorrectionInfo.java33 * @param offset The offset in the edited text where the old and new text start.
37 public CorrectionInfo(int offset, CharSequence oldText, CharSequence newText) { argument
38 mOffset = offset;
50 * Return the offset position of this correction in the text. Both the {@link #getOldText()} and
51 * {@link #getNewText()} start at this offset.
/frameworks/base/core/java/android/webkit/
H A DQuadF.java38 public void offset(float dx, float dy) { method in class:QuadF
39 p1.offset(dx, dy);
40 p2.offset(dx, dy);
41 p3.offset(dx, dy);
42 p4.offset(dx, dy);
/frameworks/base/core/java/com/android/internal/util/
H A DHexDump.java28 public static String dumpHexString(byte[] array, int offset, int length) argument
36 result.append(toHexString(offset));
38 for (int i = offset ; i < offset + length ; i++)
104 public static String toHexString(byte[] array, int offset, int length) argument
109 for (int i = offset ; i < offset + length; i++)
/frameworks/base/media/mca/filterfw/jni/
H A Djni_vertex_frame.cpp72 jint offset,
78 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(bytes + offset),
69 Java_android_filterfw_core_VertexFrame_setNativeData(JNIEnv* env, jobject thiz, jbyteArray data, jint offset, jint length) argument
/frameworks/base/obex/javax/obex/
H A DPrivateInputStream.java106 public synchronized int read(byte[] b, int offset, int length) throws IOException { argument
111 if ((offset | length) < 0 || length > b.length - offset) {
118 int offset1 = offset;
H A DPrivateOutputStream.java97 public synchronized void write(byte[] buffer, int offset, int count) throws IOException { argument
98 int offset1 = offset;
104 if ((offset | count) < 0 || count > buffer.length - offset) {
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DColoredRectsActivity.java65 public RectsView(Context c, float offset, int color) { argument
67 mOffset = offset;
/frameworks/base/tools/aapt/
H A DCrunchCache.cpp42 // and offset our beginning pointer to the length of the sourcePath
48 int offset = 0; local
50 offset = 1;
51 relativePath = String8(rPathPtr + offset);
/frameworks/compile/libbcc/lib/AndroidBitcode/ARM/
H A DARMABCExpandVAArg.cpp70 uint64_t offset = llvm::RoundUpToAlignment(td->getTypeSizeInBits(ty)/8, 4); local
72 llvm::ConstantInt::get(llvm::Type::getInt32Ty(*mContext), offset),
/frameworks/compile/libbcc/lib/AndroidBitcode/X86/
H A DX86ABCExpandVAArg.cpp57 uint64_t offset = llvm::RoundUpToAlignment(td->getTypeSizeInBits(ty)/8, 4); local
59 llvm::ConstantInt::get(llvm::Type::getInt32Ty(*mContext), offset),
/frameworks/compile/linkloader/include/
H A DELFTypes.h122 typedef detail::ELF32Offset offset; typedef in struct:ELFPrimitiveTypes
143 typedef detail::ELF64Offset offset; typedef in struct:ELFPrimitiveTypes
185 typedef typename ELFPrimitiveTypes<BITWIDTH>::offset offset_t; \
203 typedef ELFPrimitiveTypes<BITWIDTH>::offset offset_t; \
/frameworks/compile/mclinker/lib/LD/
H A DFragmentRef.cpp38 uint64_t offset = pLayout.getOutputOffset(pFrag); local
40 uint64_t size = llvm::OffsetToAlignment(offset, align_frag.getAlignment());
96 // check if the offset is still in a legal range.

Completed in 7282 milliseconds

1234567891011>>