HomeSort by relevance Sort by last modified time
    Searched refs:offset (Results 151 - 175 of 9687) sorted by null

1 2 3 4 5 67 8 91011>>

  /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/chromium_org/third_party/WebKit/Source/core/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);
SplitTextNodeCommand.h 37 static PassRefPtr<SplitTextNodeCommand> create(PassRefPtr<Text> node, int offset)
39 return adoptRef(new SplitTextNodeCommand(node, offset));
43 SplitTextNodeCommand(PassRefPtr<Text>, int 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...]
  /libcore/luni/src/main/java/java/text/
RuleBasedBreakIterator.java 42 @Override public int following(int offset) {
43 checkOffset(offset);
44 return wrapped.following(offset);
47 private void checkOffset(int offset) {
52 if (offset < it.getBeginIndex() || offset > it.getEndIndex()) {
86 @Override public boolean isBoundary(int offset) {
87 checkOffset(offset);
88 return wrapped.isBoundary(offset);
91 @Override public int preceding(int offset) {
    [all...]
  /art/compiler/
vector_output_stream.cc 26 off_t VectorOutputStream::Seek(off_t offset, Whence whence) {
31 new_offset = offset;
35 new_offset = offset_ + offset;
39 new_offset = vector_.size() + offset;
  /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/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/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimationElement.idl 35 void beginElementAt([Default=Undefined] optional float offset);
37 void endElementAt([Default=Undefined] optional float offset);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_batch.h 44 #define OUT_RELOC(buf, usage, offset) \
45 i915_winsys_batchbuffer_reloc(i915->batch, buf, usage, offset, false)
47 #define OUT_RELOC_FENCED(buf, usage, offset) \
48 i915_winsys_batchbuffer_reloc(i915->batch, buf, usage, offset, true)
i915_debug_private.h 36 unsigned offset; /* current gtt offset */ member in struct:debug_stream
37 char *ptr; /* pointer to gtt offset zero */
38 char *end; /* pointer to gtt offset zero */
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_scratch.c 32 * and 'offset' will point to the returned memory.
36 struct nouveau_bo **bo, unsigned *offset)
43 if (scratch->buf && size <= NOUVEAU_SCRATCH_SIZE - scratch->offset) {
46 buf = scratch->buf + scratch->offset;
47 *offset = scratch->offset;
48 scratch->offset += size;
57 *offset = 0;
58 scratch->offset = size;
67 *offset = 0
    [all...]
  /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/icu4c/tools/toolutil/
flagparser.c 111 int32_t offset=0; local
115 /* Get the offset (i.e. position after the '=') */
116 offset = getFlagOffset(buffer, bufferSize);
117 pBuffer = buffer+offset;
140 if (flagNames != NULL && offset>0) {
141 offset--; /* Move offset back 1 because of '='*/
143 if (uprv_strncmp(buffer, flagNames[i], offset) == 0) {
157 int32_t offset = 0; local
159 for (offset = 0; offset < bufferSize;offset++)
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_batch.h 44 #define OUT_RELOC(buf, usage, offset) \
45 i915_winsys_batchbuffer_reloc(i915->batch, buf, usage, offset, false)
47 #define OUT_RELOC_FENCED(buf, usage, offset) \
48 i915_winsys_batchbuffer_reloc(i915->batch, buf, usage, offset, true)
i915_debug_private.h 36 unsigned offset; /* current gtt offset */ member in struct:debug_stream
37 char *ptr; /* pointer to gtt offset zero */
38 char *end; /* pointer to gtt offset zero */
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_scratch.c 32 * and 'offset' will point to the returned memory.
36 struct nouveau_bo **bo, unsigned *offset)
43 if (scratch->buf && size <= NOUVEAU_SCRATCH_SIZE - scratch->offset) {
46 buf = scratch->buf + scratch->offset;
47 *offset = scratch->offset;
48 scratch->offset += size;
57 *offset = 0;
58 scratch->offset = size;
67 *offset = 0
    [all...]
  /external/oprofile/libabi/
op_abi.h 19 /// offset or size of the named entry
20 int offset; member in struct:op_abi_entry
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
Section.java 56 * The offset of this section within the <code>DexFile</code>
58 protected int offset = 0; field in class:Section
82 * Finalize the location of all items, and place them starting at the given offset
83 * @param offset The offset where this section should be placed
84 * @return the offset of the byte immediate after the last item in this section
86 protected int placeAt(int offset) {
88 offset = AlignmentUtils.alignOffset(offset, ItemType.ItemAlignment);
89 assert !DexFile.getInplace() || offset == this.offset
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
s_mp3bits.h 94 uint32 offset; member in struct:__anon29724
  /frameworks/av/media/libstagefright/foundation/
hexdump.cpp 45 size_t offset = 0; local
46 while (offset < size) {
52 sprintf(tmp, "%08lx: ", (unsigned long)offset);
60 if (offset + i >= size) {
63 sprintf(tmp, "%02x ", data[offset + i]);
71 if (offset + i >= size) {
75 if (isprint(data[offset + i])) {
76 line.append((char)data[offset + i]);
89 offset += 16;
  /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);

Completed in 701 milliseconds

1 2 3 4 5 67 8 91011>>