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

12 3 4 5 6 7 8 91011>>

  /external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/
ARM.java 22 public int code(byte[] buf, int off, int len) {
23 int end = off + len - 4;
26 for (i = off; i <= end; i += 4) {
35 dest = src + (pos + i - off);
37 dest = src - (pos + i - off);
46 i -= off;
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreMachineFunctionInfo.h 51 void setVarArgsFrameIndex(int off) { VarArgsFrameIndex = off; }
57 void setLRSpillSlot(int off) { LRSpillSlot = off; }
60 void setFPSpillSlot(int off) { FPSpillSlot = off; }
  /libcore/ojluni/src/main/java/sun/net/
TelnetInputStream.java 133 * Read into a byte array at offset <i>off</i> for length <i>length</i>
136 public int read(byte bytes[], int off, int length) throws IOException {
138 return super.read(bytes, off, length);
141 int offStart = off;
147 bytes[off++] = (byte)c;
149 return (off > offStart) ? off - offStart : -1;
  /toolchain/binutils/binutils-2.27/bfd/
elfxx-ia64.h 28 bfd_boolean ia64_elf_relax_br (bfd_byte *contents, bfd_vma off);
29 void ia64_elf_relax_brl (bfd_byte *contents, bfd_vma off);
30 void ia64_elf_relax_ldxmov (bfd_byte *contents, bfd_vma off);
  /external/elfutils/libdw/
dwarf_addrdie.c 42 Dwarf_Off off; local
47 NULL, NULL, &off) != 0)
50 return INTUSE(dwarf_offdie) (dbg, off, result);
  /packages/apps/TV/tuner/src/com/android/tv/tuner/util/
ByteArrayBuffer.java 57 public void append(final byte[] b, int off, int len) {
61 if ((off < 0)
62 || (off > b.length)
64 || ((off + len) < 0)
65 || ((off + len) > b.length)) {
75 System.arraycopy(b, off, this.buffer, this.len, len);
88 public void append(final char[] b, int off, int len) {
92 if ((off < 0)
93 || (off > b.length)
95 || ((off + len) < 0
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mach-o/
dysymtab-1-64.d 10 table of content: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
11 module table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
12 external reference table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
13 indirect symbol table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
14 external relocation table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
15 local relocation table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
dysymtab-1.d 10 table of content: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
11 module table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
12 external reference table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
13 indirect symbol table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
14 external relocation table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
15 local relocation table: off: 0x00000000 num: 0.*\(endoff: 0x00000000\)
  /art/test/667-checker-simd-alignment/src/
Main.java 169 /// CHECK-DAG: <<Off:i\d+>> ParameterValue loop:none
173 /// CHECK-DAG: <<Nrm:i\d+>> Add [<<Off>>,<<Phi>>] loop:<<Loop>> outer_loop:none
181 /// CHECK-DAG: <<Off:i\d+>> ParameterValue loop:none
186 /// CHECK-DAG: <<NrmP:i\d+>> Add [<<PhiP>>,<<Off>>] loop:<<Peel>> outer_loop:none
193 /// CHECK-DAG: <<Nrm:i\d+>> Add [<<Phi>>,<<Off>>] loop:<<Loop>> outer_loop:none
199 /// CHECK-DAG: <<NrmC:i\d+>> Add [<<PhiC>>,<<Off>>] loop:<<Clean>> outer_loop:none
204 static void staticallyUnknownAligned(int[] a, int off) {
205 // Starts at an unknown offset due to parameter off.
208 a[off + i] += 1;
214 /// CHECK-DAG: <<Off:i\d+>> ParameterValue loop:non
    [all...]
  /external/e2fsprogs/ext2ed/
ext2ed.conf.in 37 # AllowChanges off will not allow ext2ed to do any changes to the
58 ForceExt2 off
77 ForceDefault off
  /external/syslinux/gpxe/src/arch/i386/include/
libkir.h 98 #define put_real_kir_const_off( var, seg, off ) \
104 : "r,r" ( var ), "rm,rm" ( seg ), "i,!r" ( off ) \
107 #define put_real_kir_nonconst_off( var, seg, off ) \
113 : "r" ( var ), "rm" ( seg ), "r" ( off ) \
116 #define put_real_kir( var, seg, off ) \
118 if ( __builtin_constant_p ( off ) ) \
119 put_real_kir_const_off ( var, seg, off ); \
121 put_real_kir_nonconst_off ( var, seg, off ); \
124 #define get_real_kir_const_off( var, seg, off ) \
130 : "rm,rm" ( seg ), "i,!r" ( off ) \
    [all...]
  /libcore/ojluni/src/main/java/java/io/
FilterWriter.java 72 * @param off Offset from which to start reading characters
77 public void write(char cbuf[], int off, int len) throws IOException {
78 out.write(cbuf, off, len);
85 * @param off Offset from which to start reading characters
90 public void write(String str, int off, int len) throws IOException {
91 out.write(str, off, len);
StringWriter.java 84 * @param off Offset from which to start writing characters
87 public void write(char cbuf[], int off, int len) {
88 if ((off < 0) || (off > cbuf.length) || (len < 0) ||
89 ((off + len) > cbuf.length) || ((off + len) < 0)) {
94 buf.append(cbuf, off, len);
108 * @param off Offset from which to start writing characters
111 public void write(String str, int off, int len) {
112 buf.append(str.substring(off, off + len))
    [all...]
FilterOutputStream.java 102 * <code>byte</code> array starting at offset <code>off</code> to
115 * @param off the start offset in the data.
120 public void write(byte b[], int off, int len) throws IOException {
121 if ((off | len | (b.length - (len + off)) | (off + len)) < 0)
125 write(b[off + i]);
  /libcore/ojluni/src/main/java/java/util/zip/
Checksum.java 45 * @param off the start offset of the data
48 public void update(byte[] b, int off, int len);
  /toolchain/binutils/binutils-2.27/binutils/
resres.c 80 rc_uint_type off, flen; local
96 off = 0;
101 skip_null_resource (&wrbfd, &off, flen);
103 while (read_resource_entry (&wrbfd, &off, flen))
165 read_resource_entry (windres_bfd *wrbfd, rc_uint_type *off, rc_uint_type omax)
176 off[0] = (off[0] + 3) & ~3;
179 if ((off[0] + 8) > omax)
181 read_res_data_hdr (wrbfd, off, omax, &reshdr);
184 read_res_id (wrbfd, off, omax, &type)
576 rc_uint_type off; local
    [all...]
  /external/honggfuzz/
mangle.c 39 static inline void mangle_Overwrite(run_t* run, const uint8_t* src, size_t off, size_t sz) {
40 size_t maxToCopy = run->dynamicFileSz - off;
45 memmove(&run->dynamicFile[off], src, sz);
69 static void mangle_Inflate(run_t* run, size_t off, size_t len) {
78 mangle_Move(run, off, off + len, run->dynamicFileSz);
90 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
91 run->dynamicFile[off] = (uint8_t)util_rnd64();
95 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
100 mangle_Overwrite(run, (uint8_t*)&val, off, toCopy)
104 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
120 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
123 mangle_Overwrite(run, (uint8_t*)str->s, off, str->len); local
132 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
140 mangle_Overwrite(run, (uint8_t*)str->s, off, str->len); local
381 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
387 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
395 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
401 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
471 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
476 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
481 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
499 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
512 size_t off = util_rndGet(0, len); local
519 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
530 size_t off = util_rndGet(0, run->dynamicFileSz - 1); local
    [all...]
  /frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp 121 const unsigned int off = 0xffffffff; local
124 on, off, on, off, on, off, on, off,
125 off, on, off, on, off, on, off, on,
126 on, off, on, off, on, off, on, off
    [all...]
  /frameworks/native/opengl/tests/tritex/
tritex.cpp 205 const unsigned int off = 0xffffffff; local
208 on, off, on, off, on, off, on, off,
209 off, on, off, on, off, on, off, on,
210 on, off, on, off, on, off, on, off
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
LineBreakBufferedWriter.java 118 public void write(char[] buf, int off, int len) {
125 if (buf[off + i] == '\n') {
136 appendToBuffer(buf, off, nextNewLine);
140 off += nextNewLine + 1;
150 appendToBuffer(buf, off, rest);
153 off += rest;
161 appendToBuffer(buf, off, len);
163 if (buf[off + i] == '\n') {
172 public void write(String s, int off, int len) {
179 if (s.charAt(off + i) == '\n')
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/attrs/
StackMapTableAttribute.java 445 int off,
475 size = cr.readInt(off);
476 off += 4;
478 size = cr.readUnsignedShort(off);
479 off += 2;
483 int tag = cr.readByte(off); // & 0xff;
484 off++;
502 off = readType(stack, isExtCodeSize, cr, off, labels, buf);
506 offsetDelta = cr.readInt(off);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Encoder.java 12 int encode(byte[] data, int off, int length, OutputStream out) throws IOException;
14 int decode(byte[] data, int off, int length, OutputStream out) throws IOException;
  /external/elfutils/tests/
typeiter.c 37 Dwarf_Off off = 0; local
41 while (dwarf_nextcu (dbg, off, &noff, &cuhl, NULL, NULL, NULL) == 0)
44 Dwarf_Die *die = dwarf_offdie (dbg, off + cuhl, &die_mem);
65 off = noff;
68 off = 0;
71 while (dwarf_next_unit (dbg, off, &noff, &cuhl, NULL, NULL, NULL,
75 Dwarf_Die *die = dwarf_offdie_types (dbg, off + cuhl, &die_mem);
82 off = noff;
typeiter2.c 38 Dwarf_Off off = 0; local
43 while (dwarf_next_unit (dbg, off, &noff, &cuhl, NULL, NULL, NULL,
47 dwarf_offdie_types (dbg, off + cuhl, &die_mem);
48 off = noff;
51 off = 0;
53 while (dwarf_nextcu (dbg, off, &noff, &cuhl, NULL, NULL, NULL) == 0)
56 Dwarf_Die *die = dwarf_offdie (dbg, off + cuhl, &die_mem);
83 off = noff;
  /external/apache-http/src/org/apache/http/util/
ByteArrayBuffer.java 67 public void append(final byte[] b, int off, int len) {
71 if ((off < 0) || (off > b.length) || (len < 0) ||
72 ((off + len) < 0) || ((off + len) > b.length)) {
82 System.arraycopy(b, off, this.buffer, this.len, len);
95 public void append(final char[] b, int off, int len) {
99 if ((off < 0) || (off > b.length) || (len < 0) ||
100 ((off + len) < 0) || ((off + len) > b.length))
121 append(b.buffer(), off, len); local
    [all...]

Completed in 2975 milliseconds

12 3 4 5 6 7 8 91011>>