HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 351 - 375 of 3992) sorted by null

<<11121314151617181920>>

  /libcore/ojluni/src/main/java/java/io/
DataInput.java 217 * If {@code off} is negative, or {@code len}
218 * is negative, or {@code off+len} is
224 * byte read is stored into element {@code b[off]},
225 * the next one into {@code b[off+1]},
230 * @param off an int specifying the offset into the data.
236 void readFully(byte b[], int off, int len) throws IOException;
LineNumberReader.java 151 * @param off
164 public int read(char cbuf[], int off, int len) throws IOException {
166 int n = super.read(cbuf, off, len);
168 for (int i = off; i < off + n; i++) {
  /libcore/ojluni/src/main/native/
java_util_zip_CRC32.c 50 jarray b, jint off, jint len)
54 crc = crc32(crc, buf + off, len);
68 jlong address, jint off, jint len)
72 crc = crc32(crc, buf + off, len);
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Pyramid.cpp 115 int off, off2, height, h, w; local
119 off = pyr->border - left;
120 off2 = pyr->width + off + pyr->border - right - 1;
123 base = pyr->ptr[-h] - off;
152 int off = in->border / 2; local
155 for (j = -off; j < in->height + off; j++) {
167 for (i = -off; i < scr->width + off; i++) {
211 int off = scr->border - 2 local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/tc_act/
tc_pedit.h 20 __u32 off; /*offset */ member in struct:tc_pedit_key
  /prebuilts/go/darwin-x86/src/runtime/pprof/
elf.go 76 var off, size int64
79 off = int64(byteOrder.Uint32(buf[16:]))
83 off = int64(byteOrder.Uint64(buf[24:]))
86 size += off
87 for off < size {
88 if _, err := f.ReadAt(buf[:16], off); err != nil { // room for header + name GNU\x00
94 descOff := off + int64(12+(nameSize+3)&^3)
95 off = descOff + int64((descSize+3)&^3)
  /prebuilts/go/linux-x86/src/runtime/pprof/
elf.go 76 var off, size int64
79 off = int64(byteOrder.Uint32(buf[16:]))
83 off = int64(byteOrder.Uint64(buf[24:]))
86 size += off
87 for off < size {
88 if _, err := f.ReadAt(buf[:16], off); err != nil { // room for header + name GNU\x00
94 descOff := off + int64(12+(nameSize+3)&^3)
95 off = descOff + int64((descSize+3)&^3)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
option-pic-1.s 7 .option pic0 # Switch off!
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
attr-gnu-4-0-n32-ph.d 8 0x70000003 off 0x000000.. vaddr 0x100000.. paddr 0x100000.. align 2\*\*3
11 LOAD off 0x00000000 vaddr 0x10000000 paddr 0x10000000 align 2\*\*16
attr-gnu-4-0-n64-ph.d 8 0x70000003 off 0x00000000000000b0 vaddr 0x00000001200000b0 paddr 0x00000001200000b0 align 2\*\*3
10 LOAD off 0x0000000000000000 vaddr 0x0000000120000000 paddr 0x0000000120000000 align 2\*\*16
attr-gnu-4-1-n32-ph.d 8 0x70000003 off 0x000000.. vaddr 0x100000.. paddr 0x100000.. align 2\*\*3
11 LOAD off 0x00000000 vaddr 0x10000000 paddr 0x10000000 align 2\*\*16
attr-gnu-4-1-n64-ph.d 8 0x70000003 off 0x00000000000000b0 vaddr 0x00000001200000b0 paddr 0x00000001200000b0 align 2\*\*3
10 LOAD off 0x0000000000000000 vaddr 0x0000000120000000 paddr 0x0000000120000000 align 2\*\*16
attr-gnu-4-2-n32-ph.d 8 0x70000003 off 0x000000.. vaddr 0x100000.. paddr 0x100000.. align 2\*\*3
11 LOAD off 0x00000000 vaddr 0x10000000 paddr 0x10000000 align 2\*\*16
attr-gnu-4-2-n64-ph.d 8 0x70000003 off 0x00000000000000b0 vaddr 0x00000001200000b0 paddr 0x00000001200000b0 align 2\*\*3
10 LOAD off 0x0000000000000000 vaddr 0x0000000120000000 paddr 0x0000000120000000 align 2\*\*16
attr-gnu-4-3-n32-ph.d 8 0x70000003 off 0x000000.. vaddr 0x100000.. paddr 0x100000.. align 2\*\*3
11 LOAD off 0x00000000 vaddr 0x10000000 paddr 0x10000000 align 2\*\*16
attr-gnu-4-3-n64-ph.d 8 0x70000003 off 0x00000000000000b0 vaddr 0x00000001200000b0 paddr 0x00000001200000b0 align 2\*\*3
10 LOAD off 0x0000000000000000 vaddr 0x0000000120000000 paddr 0x0000000120000000 align 2\*\*16
  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionOutputBuffer.java 70 public void write(byte[] b, int off, int len) throws IOException {
71 this.out.write(b, off, len);
73 this.wire.output(b, off, len);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BEROctetStringGenerator.java 97 public void write(byte[] b, int off, int len) throws IOException
102 System.arraycopy(b, off, _buf, _off, numToCopy);
113 off += numToCopy;
  /external/brotli/java/org/brotli/wrapper/enc/
BrotliOutputStream.java 73 public void write(byte[] b, int off, int len) throws IOException {
82 encoder.inputBuffer.put(b, off, limit);
83 off += limit;
  /external/bsdiff/
extents_unittest.cc 14 return lhs.off == rhs.off && lhs.len == rhs.len;
19 *os << extent.off << ":" << extent.len;
  /external/clang/test/SemaCXX/
pragma-optimize.cpp 5 #pragma clang optimize off
108 // Test that we can re-open and re-close an "off" region after the first one,
111 #pragma clang optimize off
126 // Test that we can re-open an "off" region by including a header with the
127 // pragma and that this works as expected (i.e. the off region "falls through"
130 #include <header-with-pragma-optimize-off.h>
  /external/guava/guava/src/com/google/common/hash/
HashingInputStream.java 39 * <p>The {@link InputStream} should not be read from before or after the hand-off.
64 public int read(byte[] bytes, int off, int len) throws IOException {
65 int numOfBytesRead = in.read(bytes, off, len);
67 hasher.putBytes(bytes, off, numOfBytesRead);
  /external/guava/guava/src/com/google/common/io/
MultiInputStream.java 93 @Override public int read(@Nullable byte[] b, int off, int len) throws IOException {
97 int result = in.read(b, off, len);
100 return read(b, off, len);
MultiReader.java 52 @Override public int read(@Nullable char cbuf[], int off, int len) throws IOException {
56 int result = current.read(cbuf, off, len);
59 return read(cbuf, off, len);
  /external/iproute2/tc/
p_eth.c 44 tkey->off = 12;
51 tkey->off = 0;
58 tkey->off = 6;

Completed in 314 milliseconds

<<11121314151617181920>>