HomeSort by relevance Sort by last modified time
    Searched refs:offset (Results 101 - 125 of 4718) sorted by null

1 2 3 45 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/cf/iface/
ParseObserver.java 38 * @param offset offset into {@code bytes} for the start of the
43 public void startParsingMember(ByteArray bytes, int offset, String name,
50 * @param offset offset into {@code bytes} for the end of the
56 public void endParsingMember(ByteArray bytes, int offset, String name,
63 * @param offset offset into {@code bytes} for what was parsed
67 public void parsed(ByteArray bytes, int offset, int len, String human);
  /dalvik/vm/native/
org_apache_harmony_dalvik_ddmc_DdmServer.cpp 26 * int offset, int length)
35 int offset = args[2]; local
38 assert(offset+length <= (int)data->length);
40 dvmDbgDdmSendChunk(type, length, (const u1*)data->contents + offset);
  /external/emma/core/java12/com/vladium/jcd/cls/
IMethodCollection.java 30 * Returns {@link Method_info} descriptor at a given offset.
32 * @param offset method offset [must be in [0, size()) range; input not checked]
35 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
37 Method_info get (int offset);
77 * Replaces the Method_info descriptor at a given offset. No duplicate
82 * @param offset method offset [must be in [0, size()) range; input not checked]
84 * @return previous method descriptor at this offset [never null]
86 * @throws IndexOutOfBoundsException if 'offset' is outside of valid rang
    [all...]
  /external/llvm/include/llvm/CodeGen/
BinaryObject.h 194 inline void fixByte(uint8_t B, uint32_t offset) {
195 Data[offset] = B;
200 inline void fixWord16(uint16_t W, uint32_t offset) {
202 fixWord16LE(W, offset);
204 fixWord16BE(W, offset);
209 inline void fixWord16LE(uint16_t W, uint32_t offset) {
210 Data[offset] = (uint8_t)(W >> 0);
211 Data[++offset] = (uint8_t)(W >> 8);
216 inline void fixWord16BE(uint16_t W, uint32_t offset) {
217 Data[offset] = (uint8_t)(W >> 8)
    [all...]
  /external/webkit/Source/WebCore/editing/
DeleteFromTextNodeCommand.h 37 static PassRefPtr<DeleteFromTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, unsigned count)
39 return adoptRef(new DeleteFromTextNodeCommand(node, offset, count));
43 DeleteFromTextNodeCommand(PassRefPtr<Text>, unsigned offset, unsigned count);
InsertIntoTextNodeCommand.h 37 static PassRefPtr<InsertIntoTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, const String& text)
39 return adoptRef(new InsertIntoTextNodeCommand(node, offset, text));
43 InsertIntoTextNodeCommand(PassRefPtr<Text> node, unsigned offset, const String& text);
  /external/webkit/Source/WebCore/svg/
SVGTextContentElement.idl 43 float getSubStringLength(in [IsIndex] unsigned long offset,
46 SVGPoint getStartPositionOfChar(in [IsIndex] unsigned long offset)
48 SVGPoint getEndPositionOfChar(in [IsIndex] unsigned long offset)
50 SVGRect getExtentOfChar(in [IsIndex] unsigned long offset)
52 float getRotationOfChar(in [IsIndex] unsigned long offset)
55 void selectSubString(in [IsIndex] unsigned long offset,
  /cts/apps/CtsVerifier/jni/audioquality/
OverflowCheck.h 28 the tone endpoints are returned in onset and offset. The maximum
29 and minimum found in the signal located between onset and offset are
33 float* duration, int* numDeltas, int* onset, int* offset,
  /dalvik/vm/mterp/c/
OP_FILL_ARRAY_DATA.cpp 4 s4 offset; local
9 offset = FETCH(1) | (((s4) FETCH(2)) << 16);
10 ILOGV("|fill-array-data v%d +0x%04x", vsrc1, offset);
11 arrayData = pc + offset; // offset in 16-bit units
  /external/chromium/chrome/browser/ui/cocoa/
browser_frame_view.h 51 offset:(NSPoint)offset
  /external/e2fsprogs/ext2ed/
disk.c 34 int low_read (unsigned char *buffer,unsigned long length,unsigned long offset)
52 if (offset > file_system_info.file_system_size) { /* Check that the offset is within limits */
53 sprintf (temp,"Seek offset %ld is out of range",offset);
60 if ( (fseek (device_handle,offset,SEEK_SET))==-1) { /* Seek to the required offset */
61 wprintw (command_win,"Error - Failed to seek to offset %ld in device %s\n",offset,device_name);
67 wprintw (command_win,"Error - Failed to read from offset %ld in device %s\n",offset,device_name)
    [all...]
  /external/emma/core/java12/com/vladium/jcd/opcodes/
IOpcodeVisitor.java 20 void visit (int opcode, boolean wide, int offset, Object ctx);
  /external/oprofile/libabi/
op_abi.h 19 /// offset or size of the named entry
20 int offset; member in struct:op_abi_entry
  /frameworks/base/core/java/android/bluetooth/
BluetoothInputStream.java 70 * the byte array {@code b} starting at {@code offset}.
74 * @param offset
82 * if {@code offset < 0} or {@code length < 0}, or if
83 * {@code offset + length} is greater than the length of
89 public int read(byte[] b, int offset, int length) throws IOException {
93 if ((offset | length) < 0 || length > b.length - offset) {
94 throw new ArrayIndexOutOfBoundsException("invalid offset or length");
96 return mSocket.read(b, offset, length);
BluetoothOutputStream.java 61 * at position {@code offset} to this stream.
65 * @param offset
73 * if {@code offset < 0} or {@code count < 0}, or if
74 * {@code offset + count} is bigger than the length of
78 public void write(byte[] b, int offset, int count) throws IOException {
82 if ((offset | count) < 0 || count > b.length - offset) {
83 throw new IndexOutOfBoundsException("invalid offset or length");
85 mSocket.write(b, offset, count);
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
s_mp3bits.h 94 uint32 offset; member in struct:__anon15204
  /libcore/luni/src/main/java/java/io/
OutputStream.java 87 * position {@code offset} to this stream.
91 * @param offset
99 * if {@code offset < 0} or {@code count < 0}, or if
100 * {@code offset + count} is bigger than the length of
103 public void write(byte[] buffer, int offset, int count) throws IOException {
104 Arrays.checkOffsetAndCount(buffer.length, offset, count);
105 for (int i = offset; i < offset + count; i++) {
  /libcore/luni/src/main/java/java/lang/
StringIndexOutOfBoundsException.java 78 public StringIndexOutOfBoundsException(String s, int offset, int count) {
79 this(s.length(), offset, count);
86 public StringIndexOutOfBoundsException(int sourceLength, int offset,
88 super("length=" + sourceLength + "; regionStart=" + offset
  /libcore/luni/src/main/java/java/util/zip/
Adler32.java 70 * starting from {@code offset} and reading {@code byteCount} bytes of data.
72 public void update(byte[] buf, int offset, int byteCount) {
73 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
74 adler = updateImpl(buf, offset, byteCount, adler);
77 private native long updateImpl(byte[] buf, int offset, int byteCount, long adler1);
CRC32.java 71 * starting from {@code offset} and reading {@code byteCount} bytes of data.
73 public void update(byte[] buf, int offset, int byteCount) {
74 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
76 crc = updateImpl(buf, offset, byteCount, crc);
79 private native long updateImpl(byte[] buf, int offset, int byteCount, long crc1);
  /bionic/libc/stdlib/
setenv.c 34 char *__findenv(const char *name, int *offset);
48 int l_value, offset; local
53 if ((C = __findenv(name, &offset))) { /* find if already exists */
74 offset = cnt;
79 if (!(environ[offset] = /* name + `=' + value */
82 for (C = environ[offset]; (*C = *name++) && *C != '='; ++C)
97 int offset; local
99 while (__findenv(name, &offset)) /* if set multiple times */
100 for (P = &environ[offset];; ++P)
  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 56 * {@code non-null, sparse;} for each instruction offset to a branch of
62 * {@code non-null, sparse;} for each instruction offset to a throwing
67 /** offset of the previously parsed bytecode */
122 public void visitInvalid(int opcode, int offset, int length) {
123 visitCommon(offset, length, true);
127 public void visitNoArgs(int opcode, int offset, int length, Type type) {
131 visitCommon(offset, length, false);
132 targetLists[offset] = IntList.EMPTY;
136 visitCommon(offset, length, false);
137 visitThrowing(offset, length, false)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
compiler.h 650 xf86ReadMmio8(__volatile__ void *base, const unsigned long offset)
652 unsigned long addr = ((unsigned long)base) + offset;
662 xf86ReadMmio16Be(__volatile__ void *base, const unsigned long offset)
664 unsigned long addr = ((unsigned long)base) + offset;
674 xf86ReadMmio16Le(__volatile__ void *base, const unsigned long offset)
676 unsigned long addr = ((unsigned long)base) + offset;
686 xf86ReadMmio32Be(__volatile__ void *base, const unsigned long offset)
688 unsigned long addr = ((unsigned long)base) + offset;
698 xf86ReadMmio32Le(__volatile__ void *base, const unsigned long offset)
700 unsigned long addr = ((unsigned long)base) + offset;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
WOFFFileFormat.cpp 68 static bool readUInt32(SharedBuffer* buffer, size_t& offset, uint32_t& value)
70 ASSERT_ARG(offset, offset <= buffer->size());
71 if (buffer->size() - offset < sizeof(value))
74 value = ntohl(*reinterpret_cast<const uint32_t*>(buffer->data() + offset));
75 offset += sizeof(value);
80 static bool readUInt16(SharedBuffer* buffer, size_t& offset, uint16_t& value)
82 ASSERT_ARG(offset, offset <= buffer->size());
83 if (buffer->size() - offset < sizeof(value)
108 size_t offset = 0; local
118 size_t offset = 0; local
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
ARMAssembler.cpp 265 void ARMAssembler::dataTransfer32(bool isLoad, RegisterID srcDst, RegisterID base, int32_t offset, bool bytes)
268 if (offset >= 0) {
269 if (offset <= 0xfff)
270 dtr_u(isLoad, srcDst, base, offset | transferFlag);
271 else if (offset <= 0xfffff) {
272 add_r(ARMRegisters::S0, base, OP2_IMM | (offset >> 12) | (10 << 8));
273 dtr_u(isLoad, srcDst, ARMRegisters::S0, (offset & 0xfff) | transferFlag);
275 moveImm(offset, ARMRegisters::S0);
279 offset = -offset;
    [all...]

Completed in 367 milliseconds

1 2 3 45 6 7 8 91011>>