Searched defs:offset (Results 176 - 200 of 575) sorted by relevance

1234567891011>>

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DSimpleFrame.java110 public void setData(ByteBuffer buffer, int offset, int length) { argument
112 setGenericObjectValue(ByteBuffer.wrap(buffer.array(), offset, length));
H A DVertexFrame.java88 public void setData(ByteBuffer buffer, int offset, int length) { argument
93 } else if (!setNativeData(bytes, offset, length)) {
136 private native boolean setNativeData(byte[] data, int offset, int length); argument
/frameworks/base/rs/java/android/renderscript/
H A DByte2.java380 * @param offset
382 public void copyTo(byte[] data, int offset) { argument
383 data[offset] = x;
384 data[offset + 1] = y;
H A DByte3.java412 * @param offset
414 public void copyTo(byte[] data, int offset) { argument
415 data[offset] = x;
416 data[offset + 1] = y;
417 data[offset + 2] = z;
H A DByte4.java443 * @param offset
445 public void copyTo(byte[] data, int offset) { argument
446 data[offset] = x;
447 data[offset + 1] = y;
448 data[offset + 2] = z;
449 data[offset + 3] = w;
H A DDouble4.java442 * @param offset
444 public void copyTo(double[] data, int offset) { argument
445 data[offset] = x;
446 data[offset + 1] = y;
447 data[offset + 2] = z;
448 data[offset + 3] = w;
H A DFloat4.java442 * @param offset
444 public void copyTo(float[] data, int offset) { argument
445 data[offset] = x;
446 data[offset + 1] = y;
447 data[offset + 2] = z;
448 data[offset + 3] = w;
H A DInt2.java434 * @param offset
436 public void copyTo(int[] data, int offset) { argument
437 data[offset] = (int)(x);
438 data[offset + 1] = (int)(y);
H A DInt3.java470 * @param offset
472 public void copyTo(int[] data, int offset) { argument
473 data[offset] = (int)(x);
474 data[offset + 1] = (int)(y);
475 data[offset + 2] = (int)(z);
H A DInt4.java506 * @param offset
508 public void copyTo(int[] data, int offset) { argument
509 data[offset] = (int)(x);
510 data[offset + 1] = (int)(y);
511 data[offset + 2] = (int)(z);
512 data[offset + 3] = (int)(w);
H A DLong2.java434 * @param offset
436 public void copyTo(long[] data, int offset) { argument
437 data[offset] = (long)(x);
438 data[offset + 1] = (long)(y);
H A DLong3.java470 * @param offset
472 public void copyTo(long[] data, int offset) { argument
473 data[offset] = (long)(x);
474 data[offset + 1] = (long)(y);
475 data[offset + 2] = (long)(z);
H A DLong4.java506 * @param offset
508 public void copyTo(long[] data, int offset) { argument
509 data[offset] = (long)(x);
510 data[offset + 1] = (long)(y);
511 data[offset + 2] = (long)(z);
512 data[offset + 3] = (long)(w);
H A DProgramVertexFixedFunction.java243 private void addToBuffer(int offset, Matrix4f m) { argument
244 mIOBuffer.reset(offset);
H A DShort2.java437 * @param offset
439 public void copyTo(short[] data, int offset) { argument
440 data[offset] = (short)(x);
441 data[offset + 1] = (short)(y);
H A DShort3.java470 * @param offset
472 public void copyTo(short[] data, int offset) { argument
473 data[offset] = (short)(x);
474 data[offset + 1] = (short)(y);
475 data[offset + 2] = (short)(z);
H A DShort4.java506 * @param offset
508 public void copyTo(short[] data, int offset) { argument
509 data[offset] = (short)(x);
510 data[offset + 1] = (short)(y);
511 data[offset + 2] = (short)(z);
512 data[offset + 3] = (short)(w);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiMhlControllerStub.java99 void sendVendorCommand(int portId, int offset, int length, byte[] data) { argument
H A DHdmiUtils.java184 * @param offset offset to the data to convert in the array
187 static int twoBytesToInt(byte[] data, int offset) { argument
188 return ((data[offset] & 0xFF) << 8) | (data[offset + 1] & 0xFF);
/frameworks/base/tools/aapt/
H A DStringPool.h45 entry() : offset(0) { }
46 entry(const String16& _value) : value(_value), offset(0), hasStyles(false) { }
47 entry(const entry& o) : value(o.value), offset(o.offset),
52 size_t offset; member in struct:StringPool::entry
76 entry_style() : offset(0) { }
78 entry_style(const entry_style& o) : offset(o.offset), spans(o.spans) { }
80 size_t offset; member in struct:StringPool::entry_style
126 * Find out an offset i
[all...]
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DStub.h42 DWord offset() const { return m_Offset; } function in class:mcld::Stub::Fixup
/frameworks/compile/mclinker/lib/Fragment/
H A DRelocation.cpp78 m_TargetAddress.assign(*pTargetRef->frag(), pTargetRef->offset()) ;
157 uint32_t offset = m_pSymInfo->outSymbol()->fragRef()->getOutputOffset(); local
158 m_Addend += offset;
/frameworks/compile/mclinker/lib/LD/
H A DELFObjectReader.cpp142 pInput.fileOffset() + (*section)->offset(), (*section)->size());
301 pInput.fileOffset() + symtab_shdr->offset(), symtab_shdr->size());
303 pInput.fileOffset() + strtab_shdr->offset(), strtab_shdr->size());
322 uint32_t offset = pInput.fileOffset() + (*rs)->offset(); local
324 llvm::StringRef region = mem->request(offset, size);
H A DEhFrameHdr.cpp42 MemoryRegion ehframehdr_region = pOutput.request(m_EhFrameHdr.offset(),
45 MemoryRegion ehframe_region = pOutput.request(m_EhFrame.offset(),
87 SizeTraits<32>::Offset offset; local
90 offset = fde.getOffset();
92 fde_addr = m_EhFrame.addr() + offset;
171 const uint8_t* offset = (const uint8_t*) pEhFrameRegion.begin() + local
174 std::memcpy(&pc, offset, pc_size);
/frameworks/compile/mclinker/lib/Object/
H A DObjectBuilder.cpp121 uint64_t offset = pTo.getSection().size(); local
130 align->setOffset(offset);
133 offset += align->size();
142 frag->setOffset(offset);
143 offset += frag->size();
148 pTo.getSection().setSize(offset);
173 // get initial offset.
174 uint64_t offset = 0; local
176 offset = pSD.back().getOffset() + pSD.back().size();
186 align->setOffset(offset);
[all...]

Completed in 233 milliseconds

1234567891011>>