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

<<11121314151617181920>>

  /packages/apps/Messaging/src/com/android/messaging/util/exif/
CountedDataInputStream.java 51 public int read(byte[] b, int off, int len) throws IOException {
52 int r = in.read(b, off, len);
84 public void readOrThrow(byte[] b, int off, int len) throws IOException {
85 int r = read(b, off, len);
  /prebuilts/go/darwin-x86/src/debug/dwarf/
buf.go 20 off Offset
53 func makeBuf(d *Data, format dataFormat, name string, off Offset, data []byte) buf {
54 return buf{d, d.order, format, name, off, data, nil}
64 b.off++
75 b.off += Offset(n)
86 b.off += Offset(i + 1)
126 b.off += Offset(i + 1)
180 b.err = DecodeError{b.name, b.off, s}
  /prebuilts/go/linux-x86/src/debug/dwarf/
buf.go 20 off Offset
53 func makeBuf(d *Data, format dataFormat, name string, off Offset, data []byte) buf {
54 return buf{d, d.order, format, name, off, data, nil}
64 b.off++
75 b.off += Offset(n)
86 b.off += Offset(i + 1)
126 b.off += Offset(i + 1)
180 b.err = DecodeError{b.name, b.off, s}
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-cris/
asneed1.d 21 LOAD off .*
23 LOAD off .*
  /toolchain/binutils/binutils-2.27/gold/
common.cc 313 off_t off = 0; local
342 off = align_address(off, ssym->value());
343 ssym->allocate_common(poc, off);
344 off += ssym->symsize();
349 off = os->allocate(ssym->symsize(), ssym->value());
350 if (off == -1)
354 ssym->allocate_common(os, off);
359 poc->set_current_data_size(off);
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
pcln.go 96 func addpctab(ctxt *Link, ftab *sym.Symbol, off int32, d *sym.Pcdata) int32 {
102 return int32(ftab.SetUint32(ctxt.Arch, int64(off), uint32(start)))
292 off := funcstart
301 off = int32(ftab.SetAddr(ctxt.Arch, int64(off), s))
305 off = int32(ftab.SetUint32(ctxt.Arch, int64(off), uint32(nameoff)))
313 off = int32(ftab.SetUint32(ctxt.Arch, int64(off), args))
320 off = int32(ftab.SetUint32(ctxt.Arch, int64(off), 0x1234567)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
pcln.go 96 func addpctab(ctxt *Link, ftab *sym.Symbol, off int32, d *sym.Pcdata) int32 {
102 return int32(ftab.SetUint32(ctxt.Arch, int64(off), uint32(start)))
292 off := funcstart
301 off = int32(ftab.SetAddr(ctxt.Arch, int64(off), s))
305 off = int32(ftab.SetUint32(ctxt.Arch, int64(off), uint32(nameoff)))
313 off = int32(ftab.SetUint32(ctxt.Arch, int64(off), args))
320 off = int32(ftab.SetUint32(ctxt.Arch, int64(off), 0x1234567)
    [all...]
  /external/libnl/lib/route/cls/
u32.c 220 nl_dump(p, " offset at %u", sel->off);
249 key->offmask ? "nexthdr+" : "", key->off);
535 * @arg off offset, in bytes, to start matching
544 int off, int offmask)
566 sel->keys[sel->nkeys].off = off;
581 * @arg off pointer to store the offset
586 uint32_t *val, uint32_t *mask, int *off, int *offmask)
604 *off = sel->keys[index].off;
    [all...]
  /prebuilts/go/darwin-x86/src/strings/
reader_test.go 20 off int64
28 {seek: io.SeekStart, off: 0, n: 20, want: "0123456789"},
29 {seek: io.SeekStart, off: 1, n: 1, want: "1"},
30 {seek: io.SeekCurrent, off: 1, wantpos: 3, n: 2, want: "34"},
31 {seek: io.SeekStart, off: -1, seekerr: "strings.Reader.Seek: negative position"},
32 {seek: io.SeekStart, off: 1 << 33, wantpos: 1 << 33, readerr: io.EOF},
33 {seek: io.SeekCurrent, off: 1, wantpos: 1<<33 + 1, readerr: io.EOF},
36 {seek: io.SeekEnd, off: -1, n: 1, wantpos: 9, want: "9"},
40 pos, err := r.Seek(tt.off, tt.seek)
78 off int6
    [all...]
  /prebuilts/go/linux-x86/src/strings/
reader_test.go 20 off int64
28 {seek: io.SeekStart, off: 0, n: 20, want: "0123456789"},
29 {seek: io.SeekStart, off: 1, n: 1, want: "1"},
30 {seek: io.SeekCurrent, off: 1, wantpos: 3, n: 2, want: "34"},
31 {seek: io.SeekStart, off: -1, seekerr: "strings.Reader.Seek: negative position"},
32 {seek: io.SeekStart, off: 1 << 33, wantpos: 1 << 33, readerr: io.EOF},
33 {seek: io.SeekCurrent, off: 1, wantpos: 1<<33 + 1, readerr: io.EOF},
36 {seek: io.SeekEnd, off: -1, n: 1, wantpos: 9, want: "9"},
40 pos, err := r.Seek(tt.off, tt.seek)
78 off int6
    [all...]
  /external/libffi/src/sparc/
ffi.c 337 int ffi_v9_layout_struct(ffi_type *arg, int off, char *ret, char *intg, char *flt)
343 if (off & ((*ptr)->alignment - 1))
344 off = ALIGN(off, (*ptr)->alignment);
349 off = ffi_v9_layout_struct(*ptr, off, ret, intg, flt);
350 off = ALIGN(off, FFI_SIZEOF_ARG);
357 memmove(ret + off, flt + off, (*ptr)->size)
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/sparc/
ffi.c 337 int ffi_v9_layout_struct(ffi_type *arg, int off, char *ret, char *intg, char *flt)
343 if (off & ((*ptr)->alignment - 1))
344 off = ALIGN(off, (*ptr)->alignment);
349 off = ffi_v9_layout_struct(*ptr, off, ret, intg, flt);
350 off = ALIGN(off, FFI_SIZEOF_ARG);
357 memmove(ret + off, flt + off, (*ptr)->size)
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi/src/sparc/
ffi.c 337 int ffi_v9_layout_struct(ffi_type *arg, int off, char *ret, char *intg, char *flt)
343 if (off & ((*ptr)->alignment - 1))
344 off = ALIGN(off, (*ptr)->alignment);
349 off = ffi_v9_layout_struct(*ptr, off, ret, intg, flt);
350 off = ALIGN(off, FFI_SIZEOF_ARG);
357 memmove(ret + off, flt + off, (*ptr)->size)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
asmdecl.go 62 off int
176 f.Badf(token.NoPos, "%s:%d: [%s] %s: RET without writing to %d-byte ret+%d(FP)", f.name, line, arch, fnName, v.size, v.off)
297 off := 0
299 off, _ = strconv.Atoi(m[2])
301 if off >= localSize {
303 v := fn.varByOffset[off-localSize]
305 badf("%s should be %s+%d(FP)", m[1], v.name, off-localSize)
309 if off >= localSize+argSize {
322 off, _ := strconv.Atoi(m[2])
323 v := fn.varByOffset[off]
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
asmdecl.go 62 off int
176 f.Badf(token.NoPos, "%s:%d: [%s] %s: RET without writing to %d-byte ret+%d(FP)", f.name, line, arch, fnName, v.size, v.off)
297 off := 0
299 off, _ = strconv.Atoi(m[2])
301 if off >= localSize {
303 v := fn.varByOffset[off-localSize]
305 badf("%s should be %s+%d(FP)", m[1], v.name, off-localSize)
309 if off >= localSize+argSize {
322 off, _ := strconv.Atoi(m[2])
323 v := fn.varByOffset[off]
    [all...]
  /external/tremolo/Tremolo/
mdct.c 488 int n,off; local
493 off = (start<preLap?start:preLap);
495 r -= off;
496 start -= off;
505 n -= off;
514 off = (start<halfLap?start:halfLap);
516 r -= off;
517 l -= off*2;
518 start -= off;
519 wR -= off;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/
libprep.bat 1 @echo off
  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthInputStream.java 40 * Stream that cuts off after a specified number of bytes.
160 * @param off Start filling at this position.
167 public int read (byte[] b, int off, int len) throws java.io.IOException {
179 int count = this.in.read(b, off, len);
ContentLengthOutputStream.java 109 public void write(byte[] b, int off, int len) throws IOException {
118 this.out.write(b, off, len);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
BcDigestCalculatorProvider.java 55 public void write(byte[] bytes, int off, int len)
58 dig.update(bytes, off, len);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ConstructedOctetStream.java 20 public int read(byte[] b, int off, int len) throws IOException
44 int numRead = _currentStream.read(b, off + totalRead, len - totalRead);
DefiniteLengthInputStream.java 65 public int read(byte[] buf, int off, int len)
74 int numRead = _in.read(buf, off, toRead);
  /external/curl/docs/cmdline-opts/
ftp-account.d 8 been provided, this data is sent off using the ACCT command.
globoff.d 5 This option switches off the "URL globbing parser". When you set this option,
  /external/elfutils/tests/
arls.c 90 off_t off = elf_getaroff (subelf); local
99 (unsigned long long int) off,

Completed in 661 milliseconds

<<11121314151617181920>>