HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 451 - 475 of 3492) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
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
  /device/google/dragon/recovery/updater/
flash_device.h 44 int flash_read(struct flash_device *dev, off_t off, void *buff, size_t len);
45 int flash_write(struct flash_device *dev, off_t off, void *buff, size_t len);
46 int flash_erase(struct flash_device *dev, off_t off, size_t len);
  /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 67 public void write(byte[] b, int off, int len) throws IOException
72 System.arraycopy(b, off, _buf, _off, numToCopy);
83 off += numToCopy;
  /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/jetty/src/java/org/eclipse/jetty/io/
WriterOutputStream.java 82 public void write(byte[] b, int off, int len)
86 _writer.write(new String(b,off,len));
88 _writer.write(new String(b,off,len,_encoding));
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
DeltaInputStream.java 76 * This calls <code>in.read(buf, off, len)</code> and defilters the
80 * @param off start offset in <code>buf</code>
91 public int read(byte[] buf, int off, int len) throws IOException {
103 size = in.read(buf, off, len);
112 delta.decode(buf, off, size);
  /libcore/ojluni/src/main/java/java/io/
Console.java 423 int off = offset; local
451 if (off - offset == 0)
453 return off - offset;
465 c = cbuf[off++] = cb[nextChar];
468 return off - offset;
470 if (off == end) {
480 return off - offset;
488 * that it got cut off during last round reading
495 cbuf[off++] = '\n';
498 return off - offset
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
HexDumpEncoder.java 91 protected void encodeAtom(OutputStream o, byte buf[], int off, int len) throws IOException {
92 thisLine[currentByte] = buf[off];
93 hexDigit(pStream, buf[off]);
  /prebuilts/go/darwin-x86/src/compress/flate/
token.go 92 func offsetCode(off uint32) uint32 {
95 case off < n:
96 return offsetCodes[off]
97 case off>>7 < n:
98 return offsetCodes[off>>7] + 14
100 return offsetCodes[off>>14] + 28
  /prebuilts/go/darwin-x86/src/runtime/
memmove_linux_amd64_test.go 39 for off := uintptr(0); off < 3<<30; off += 65536 {
41 base+off, 65536, syscall.PROT_READ|syscall.PROT_WRITE, syscall.MAP_SHARED|syscall.MAP_FIXED, tmp.Fd(), 0)
43 t.Fatalf("could not map a page at requested 0x%x: %s", base+off, errno)
45 defer syscall.Syscall(syscall.SYS_MUNMAP, base+off, 65536, 0)
  /prebuilts/go/linux-x86/src/compress/flate/
token.go 92 func offsetCode(off uint32) uint32 {
95 case off < n:
96 return offsetCodes[off]
97 case off>>7 < n:
98 return offsetCodes[off>>7] + 14
100 return offsetCodes[off>>14] + 28
  /prebuilts/go/linux-x86/src/runtime/
memmove_linux_amd64_test.go 39 for off := uintptr(0); off < 3<<30; off += 65536 {
41 base+off, 65536, syscall.PROT_READ|syscall.PROT_WRITE, syscall.MAP_SHARED|syscall.MAP_FIXED, tmp.Fd(), 0)
43 t.Fatalf("could not map a page at requested 0x%x: %s", base+off, errno)
45 defer syscall.Syscall(syscall.SYS_MUNMAP, base+off, 65536, 0)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mach-o/
dysymtab-2.d 11 ( )+table of content: off: 0x00000000( )+num: 0( )+\(endoff: 0x00000000\)
12 ( )+module table: off: 0x00000000( )+num: 0( )+\(endoff: 0x00000000\)
13 ( )+external reference table: off: 0x00000000( )+num: 0( )+\(endoff: 0x00000000\)
14 ( )+indirect symbol table: off: 0x00000428( )+num: 25( )+\(endoff: 0x0000048c\)
15 ( )+external relocation table: off: 0x00000000( )+num: 0( )+\(endoff: 0x00000000\)
16 ( )+local relocation table: off: 0x00000000( )+num: 0( )+\(endoff: 0x00000000\)
  /libcore/ojluni/src/main/java/java/nio/
HeapByteBuffer.java 58 HeapByteBuffer(byte[] buf, int off, int len) { // package-private
59 this(buf, off, len, false);
62 HeapByteBuffer(byte[] buf, int off, int len, boolean isReadOnly) { // package-private
63 super(-1, off, off + len, buf.length, buf, 0);
69 int off) {
70 this(buf, mark, pos, lim, cap, off, false);
75 int off, boolean isReadOnly) {
76 super(mark, pos, lim, cap, buf, off);
230 int off = position() local
282 int off = position(); local
334 int off = position(); local
387 int off = position(); local
439 int off = position(); local
491 int off = position(); local
    [all...]
  /external/chromium-trace/catapult/third_party/graphy/graphy/
line_chart_test.py 45 self.assertEqual(series.style.off, line_chart.LineStyle.solid().off)
74 self.assertEqual(0, line_chart.LineStyle.solid().off)
75 self.assert_(line_chart.LineStyle.dashed().off > 0)
93 self.assertEqual(0, series.style.off)
  /external/elfutils/libelf/
elf_getphdrnum.c 88 Elf64_Off off = (elf->class == ELFCLASS32 local
91 if (unlikely (off == 0))
97 if (unlikely (off >= elf->maximum_size))
113 if (unlikely (elf->maximum_size - off < *dst * phdr_size))
114 *dst = (elf->maximum_size - off) / phdr_size;
  /external/libavc/encoder/
ih264e_bitstream.h 130 #define PUTBYTE_EPB(ptr,off,byte,zero_run) \
134 ptr[off] = EPB_BYTE; \
135 off++; \
139 ptr[off] = byte; \
140 off++; \

Completed in 2415 milliseconds

<<11121314151617181920>>