/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/strace/ |
chmod.c | 4 decode_chmod(struct tcb *tcp, const int offset) 6 printpath(tcp, tcp->u_arg[offset]); 7 tprintf(", %#lo", tcp->u_arg[offset + 1]);
|
lseek.c | 41 * fs/read_write.c::SYSCALL_DEFINE3(lseek, unsigned, fd, off_t, offset, unsigned, origin) 44 * which means that on x32 we need to use tcp->ext_arg[N] to get offset argument. 50 long long offset; local 57 offset = tcp->u_arg[1]; 60 offset = tcp->ext_arg[1]; 63 tprintf(", %llu, ", offset); 65 tprintf(", %lld, ", offset); 73 long offset; local 77 offset = tcp->u_arg[1]; 80 tprintf(", %lu, ", offset); [all...] |
/external/v8/src/ic/ia32/ |
stub-cache-ia32.cc | 22 Register offset, Register extra) { 35 __ lea(offset, Operand(offset, offset, times_2, 0)); 39 __ mov(extra, Operand::StaticArray(offset, times_1, value_offset)); 42 __ cmp(name, Operand::StaticArray(offset, times_1, key_offset)); 46 __ mov(offset, Operand::StaticArray(offset, times_1, map_offset)); 47 __ cmp(offset, FieldOperand(receiver, HeapObject::kMapOffset)); 51 __ mov(offset, FieldOperand(extra, Code::kFlagsOffset)) 130 __ mov(Operand::StaticVariable(virtual_register), offset); local 171 Register offset = scratch; local 192 ProbeTable(isolate(), masm, ic_kind, flags, kPrimary, name, receiver, offset, local 206 offset, extra); local [all...] |
/external/v8/src/ic/x87/ |
stub-cache-x87.cc | 22 Register offset, Register extra) { 35 __ lea(offset, Operand(offset, offset, times_2, 0)); 39 __ mov(extra, Operand::StaticArray(offset, times_1, value_offset)); 42 __ cmp(name, Operand::StaticArray(offset, times_1, key_offset)); 46 __ mov(offset, Operand::StaticArray(offset, times_1, map_offset)); 47 __ cmp(offset, FieldOperand(receiver, HeapObject::kMapOffset)); 51 __ mov(offset, FieldOperand(extra, Code::kFlagsOffset)) 130 __ mov(Operand::StaticVariable(virtual_register), offset); local 171 Register offset = scratch; local 192 ProbeTable(isolate(), masm, ic_kind, flags, kPrimary, name, receiver, offset, local 206 offset, extra); local [all...] |
/libcore/ojluni/src/main/java/java/text/ |
IcuIteratorWrapper.java | 267 * (i.e., the CharacterIterator's starting offset). 269 * @return The offset of the beginning of the text. 277 * (i.e., the CharacterIterator's ending offset). 279 * @return The text's past-the-end offset. 292 * @return The character offset of the boundary position n boundaries away from 318 * Throw IllegalArgumentException unless begin <= offset < end. 320 protected static final void checkOffset(int offset, CharacterIterator text) { 321 if (offset < text.getBeginIndex() || offset > text.getEndIndex()) { 322 throw new IllegalArgumentException("offset out of bounds") [all...] |
/libcore/ojluni/src/main/java/javax/crypto/spec/ |
IvParameterSpec.java | 58 * bytes in <code>iv</code>, beginning at <code>offset</code> 62 * <code>iv[offset]</code> and <code>iv[offset+len-1]</code> inclusive. 65 * bytes of the buffer beginning at <code>offset</code> inclusive 67 * @param offset the offset in <code>iv</code> where the IV 71 * or <code>(iv.length - offset < len)</code> 72 * @throws ArrayIndexOutOfBoundsException is thrown if <code>offset</code> 75 public IvParameterSpec(byte[] iv, int offset, int len) { 79 if (iv.length - offset < len) [all...] |
/art/compiler/linker/ |
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;
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/ |
BitmapComparer.java | 28 * @param offset where in the bitmaps to start 34 public abstract boolean verifySame(int[] ideal, int[] given, int offset, int stride, int width, 43 Allocation given, int offset, int stride, int width, int height, 51 protected static int indexFromXAndY(int x, int y, int stride, int offset) { 52 return x + (y * stride) + offset;
|
PassComparer.java | 23 public boolean verifySame(int[] ideal, int[] given, int offset, int stride, int width,
|
/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/elfutils/libdw/ |
dwarf_getstring.c | 39 dwarf_getstring (Dwarf *dbg, Dwarf_Off offset, size_t *lenp) 45 || offset >= dbg->sectiondata[IDX_debug_str]->d_size) 53 + offset); 55 dbg->sectiondata[IDX_debug_str]->d_size - offset);
|
/external/emma/core/java12/com/vladium/jcd/opcodes/ |
IOpcodeVisitor.java | 20 void visit (int opcode, boolean wide, int offset, Object ctx);
|
/external/fio/ |
helpers.c | 13 int fallocate(int fd, int mode, off_t offset, off_t len) 21 int posix_fallocate(int fd, off_t offset, off_t len) 28 int sync_file_range(int fd, off64_t offset, off64_t nbytes, unsigned int flags) 36 int posix_fadvise(int fd, off_t offset, off_t len, int advice)
|
/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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/ |
FileDataStore.java | 17 @Nonnull @Override public OutputStream outputAt(int offset) { 18 return new RandomAccessFileOutputStream(raf, offset); 21 @Nonnull @Override public InputStream readAt(int offset) { 22 return new RandomAccessFileInputStream(raf, offset);
|
/external/vboot_reference/firmware/lib/ |
region-init.c | 21 enum vb_firmware_region region, uint32_t offset, 26 if (offset + size > cparams->gbb_size) 28 Memcpy(buf, cparams->gbb_data + offset, size); 34 ret = VbExRegionRead(cparams, region, offset, size, buf);
|
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
s_mp3bits.h | 94 uint32 offset; member in struct:__anon28207
|
/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);
|
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/core/java/android/content/pm/ |
LimitedLengthInputStream.java | 22 * Current offset in the stream. 28 * @param offset offset into stream where data starts 29 * @param length length of data at offset 32 public LimitedLengthInputStream(InputStream in, long offset, long length) throws IOException { 39 if (offset < 0) { 40 throw new IOException("offset < 0"); 47 if (length > Long.MAX_VALUE - offset) { 48 throw new IOException("offset + length > Long.MAX_VALUE"); 51 mEnd = offset + length [all...] |
/frameworks/compile/mclinker/lib/Target/ |
GOT.cpp | 32 uint32_t offset = 0; local 35 frag->setOffset(offset); 36 offset += frag->size(); 39 m_Section.setSize(offset);
|