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

<<11121314151617181920>>

  /libcore/ojluni/src/main/java/java/nio/
ByteBufferAsLongBuffer.java 38 int off, ByteOrder order) {
47 // the position of parent buffer. Therefore, value of "off" will be equal to parent buffer's
50 this.address = bb.address + off;
54 offset = off;
62 int off = (pos << 3) + offset; local
63 assert (off >= 0);
64 return new ByteBufferAsLongBuffer(bb, -1, 0, rem, rem, off, order);
ByteBufferAsShortBuffer.java 38 int off, ByteOrder order) {
47 // the position of parent buffer. Therefore, value of "off" will be equal to parent buffer's
50 this.address = bb.address + off;
54 offset = off;
62 int off = (pos << 1) + offset; local
63 assert (off >= 0);
64 return new ByteBufferAsShortBuffer(bb, -1, 0, rem, rem, off, order);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/s390x/
ggen.go 20 func zerorange(pp *gc.Progs, p *obj.Prog, off, cnt int64, _ *uint32) *obj.Prog {
26 off += gc.Ctxt.FixedFrameSize()
29 // If the off cannot fit in a 12-bit unsigned displacement then we
32 if off < 0 || off > 4096-clearLoopCutoff || cnt > clearLoopCutoff {
33 p = pp.Appendpp(p, s390x.AADD, obj.TYPE_CONST, 0, off, obj.TYPE_REG, s390x.REGRT1, 0)
36 off = 0
43 p = pp.Appendpp(p, s390x.AADD, obj.TYPE_CONST, 0, off+n, obj.TYPE_REG, end, 0)
45 p = pp.Appendpp(p, s390x.ACLEAR, obj.TYPE_CONST, 0, 256, obj.TYPE_MEM, reg, off)
76 p = pp.Appendpp(p, ins, obj.TYPE_CONST, 0, 0, obj.TYPE_MEM, reg, off)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/s390x/
ggen.go 20 func zerorange(pp *gc.Progs, p *obj.Prog, off, cnt int64, _ *uint32) *obj.Prog {
26 off += gc.Ctxt.FixedFrameSize()
29 // If the off cannot fit in a 12-bit unsigned displacement then we
32 if off < 0 || off > 4096-clearLoopCutoff || cnt > clearLoopCutoff {
33 p = pp.Appendpp(p, s390x.AADD, obj.TYPE_CONST, 0, off, obj.TYPE_REG, s390x.REGRT1, 0)
36 off = 0
43 p = pp.Appendpp(p, s390x.AADD, obj.TYPE_CONST, 0, off+n, obj.TYPE_REG, end, 0)
45 p = pp.Appendpp(p, s390x.ACLEAR, obj.TYPE_CONST, 0, 256, obj.TYPE_MEM, reg, off)
76 p = pp.Appendpp(p, ins, obj.TYPE_CONST, 0, 0, obj.TYPE_MEM, reg, off)
    [all...]
  /system/extras/libpagemap/
pm_kernel.c 117 off64_t off; local
122 off = lseek64(ker->kpagecount_fd, pfn * sizeof(uint64_t), SEEK_SET);
123 if (off == (off_t)-1)
133 off64_t off; local
138 off = lseek64(ker->kpageflags_fd, pfn * sizeof(uint64_t), SEEK_SET);
139 if (off == (off_t)-1)
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
decodesym.go 32 func decodeReloc(s *sym.Symbol, off int32) *sym.Reloc {
34 if s.R[i].Off == off {
41 func decodeRelocSym(s *sym.Symbol, off int32) *sym.Symbol {
42 r := decodeReloc(s, off)
218 off := commonsize(arch) + 4*arch.PtrSize
220 off += uncommonSize()
222 off += i * structfieldSize(arch)
223 return off
236 func decodetypeName(s *sym.Symbol, off int) string
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
decodesym.go 32 func decodeReloc(s *sym.Symbol, off int32) *sym.Reloc {
34 if s.R[i].Off == off {
41 func decodeRelocSym(s *sym.Symbol, off int32) *sym.Symbol {
42 r := decodeReloc(s, off)
218 off := commonsize(arch) + 4*arch.PtrSize
220 off += uncommonSize()
222 off += i * structfieldSize(arch)
223 return off
236 func decodetypeName(s *sym.Symbol, off int) string
    [all...]
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_l4lb.c 236 static __always_inline int parse_icmpv6(void *data, void *data_end, __u64 off,
242 icmp_hdr = data + off;
247 off += sizeof(struct icmp6hdr);
248 ip6h = data + off;
258 static __always_inline int parse_icmp(void *data, void *data_end, __u64 off,
264 icmp_hdr = data + off;
270 off += sizeof(struct icmphdr);
271 iph = data + off;
283 static __always_inline bool parse_udp(void *data, __u64 off, void *data_end,
287 udp = data + off;
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
obj.go 301 func duintxx(s *obj.LSym, off int, v uint64, wid int) int {
302 if off&(wid-1) != 0 {
303 Fatalf("duintxxLSym: misaligned: v=%d wid=%d off=%d", v, wid, off)
305 s.WriteInt(Ctxt, int64(off), wid, int64(v))
306 return off + wid
309 func duint8(s *obj.LSym, off int, v uint8) int {
310 return duintxx(s, off, uint64(v), 1)
313 func duint16(s *obj.LSym, off int, v uint16) int {
314 return duintxx(s, off, uint64(v), 2
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
obj.go 301 func duintxx(s *obj.LSym, off int, v uint64, wid int) int {
302 if off&(wid-1) != 0 {
303 Fatalf("duintxxLSym: misaligned: v=%d wid=%d off=%d", v, wid, off)
305 s.WriteInt(Ctxt, int64(off), wid, int64(v))
306 return off + wid
309 func duint8(s *obj.LSym, off int, v uint8) int {
310 return duintxx(s, off, uint64(v), 1)
313 func duint16(s *obj.LSym, off int, v uint16) int {
314 return duintxx(s, off, uint64(v), 2
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
AlteredCharSequenceTest.java 69 int off = 1; local
73 mAlteredCharSequence.getChars(start, end, dest, off);
76 for (int i = off; i < end - start + off; i++) {
83 mAlteredCharSequence.getChars(start, end, dest, off);
84 for (int i = off; i < end - start + off; i++) {
89 mAlteredCharSequence.getChars(start, end, dest, off);
  /device/linaro/bootloader/arm-trusted-firmware/plat/nvidia/tegra/common/drivers/smmu/
smmu.c 22 static uint32_t tegra_smmu_read_32(uint32_t smmu_id, uint32_t off)
26 return mmio_read_32(TEGRA_SMMU0_BASE + off);
31 return mmio_read_32(TEGRA_SMMU1_BASE + off);
36 return mmio_read_32(TEGRA_SMMU2_BASE + off);
43 uint32_t off, uint32_t val)
47 mmio_write_32(TEGRA_SMMU0_BASE + off, val);
52 mmio_write_32(TEGRA_SMMU1_BASE + off, val);
57 mmio_write_32(TEGRA_SMMU2_BASE + off, val);
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/commons/
AdviceAdapterTest2.class 
  /external/apache-http/src/org/apache/http/impl/io/
IdentityOutputStream.java 87 public void write(byte[] b, int off, int len) throws IOException {
91 this.out.write(b, off, len);
  /external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
LimitedInputStream.java 62 public int read(byte[] b, int off, int len) throws IOException {
67 int numRead = in.read(b, off, maxRead);
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
RandomAccessFileOutputStream.java 72 public void write(byte[] b, int off, int len) throws IOException {
73 raf.write(b, off, len);
  /external/curl/docs/cmdline-opts/
tcp-nodelay.d 9 switch it off if you don't want it on.
  /external/f2fs-tools/scripts/
dumpf2fs.sh 56 let off=$addr-$BASE_MAIN
57 let off=$off%0x200000/0x1000
58 echo $segno, $off
  /external/guava/guava/src/com/google/common/io/
CharStreams.java 201 public void write(char[] cbuf, int off, int len) {
202 checkPositionIndexes(off, off + len, cbuf.length);
211 public void write(String str, int off, int len) {
212 checkPositionIndexes(off, off + len, str.length());
272 public int read(char[] cbuf, int off, int len) throws IOException {
273 return read(CharBuffer.wrap(cbuf, off, len));
CountingOutputStream.java 52 @Override public void write(byte[] b, int off, int len) throws IOException {
53 out.write(b, off, len);
  /external/guava/guava-tests/test/com/google/common/io/
LineBufferTest.java 91 int off = 0; local
92 while (off < chars.length) {
93 int len = Math.min(chars.length, off + chunk) - off;
94 lineBuf.add(chars, off, len);
95 off += len;
140 @Override public int read(char[] cbuf, int off, int len)
142 return super.read(cbuf, off, Math.min(chunk, len));
  /external/iproute2/tc/
p_udp.c 44 tkey->off = 0;
51 tkey->off = 2;
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.seeks/
tellp.pass.cpp 32 seekoff(typename base::off_type off, std::ios_base::seekdir way, std::ios_base::openmode which)
34 assert(off == 0);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SeekableFileInputStream.java 68 * randomAccessFile.read(buf, off, len)}.
70 public int read(byte[] buf, int off, int len) throws IOException {
71 return randomAccessFile.read(buf, off, len);
XZOutputStream.java 253 * @param off start offset in <code>buf</code>
268 public void write(byte[] buf, int off, int len) throws IOException {
269 if (off < 0 || len < 0 || off + len < 0 || off + len > buf.length)
282 blockEncoder.write(buf, off, len);
461 private void encodeStreamFlags(byte[] buf, int off) {
462 buf[off] = 0x00;
463 buf[off + 1] = (byte)streamFlags.checkType;

Completed in 678 milliseconds

<<11121314151617181920>>