HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 1 - 25 of 2864) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/Inputs/
header-with-pragma-optimize-off.h 2 // Open an "off" region in this header.
3 #pragma clang optimize off
5 // Let the "off" region fall through to anything including this header.
  /libcore/ojluni/src/main/java/java/io/
Bits.java 39 static boolean getBoolean(byte[] b, int off) {
40 return b[off] != 0;
43 static char getChar(byte[] b, int off) {
44 return (char) ((b[off + 1] & 0xFF) +
45 (b[off] << 8));
48 static short getShort(byte[] b, int off) {
49 return (short) ((b[off + 1] & 0xFF) +
50 (b[off] << 8));
53 static int getInt(byte[] b, int off) {
54 return ((b[off + 3] & 0xFF) )
    [all...]
OutputStream.java 80 * starting at offset <code>off</code> to this output stream.
81 * The general contract for <code>write(b, off, len)</code> is that
83 * output stream in order; element <code>b[off]</code> is the first
84 * byte written and <code>b[off+len-1]</code> is the last byte written
95 * If <code>off</code> is negative, or <code>len</code> is negative, or
96 * <code>off+len</code> is greater than the length of the array
100 * @param off the start offset in the data.
106 public void write(byte b[], int off, int len) throws IOException {
109 } else if ((off < 0) || (off > b.length) || (len < 0) |
    [all...]
StringBufferInputStream.java 105 * @param off the start offset of the data.
111 public synchronized int read(byte b[], int off, int len) {
114 } else if ((off < 0) || (off > b.length) || (len < 0) ||
115 ((off + len) > b.length) || ((off + len) < 0)) {
130 b[off++] = (byte)s.charAt(pos++);
  /external/dagger2/examples/simple/src/main/java/coffee/
Heater.java 5 void off(); method in interface:Heater
  /development/perftests/panorama/feature_mos/src/mosaic/
Interp.h 52 int off = (int)(xfrac * CTAPS); local
54 tmpf[0] = in[0] * ciTable[off + 40];
55 tmpf[0] += in[1] * ciTable[off];
56 tmpf[0] += in[2] * ciTable[40 - off];
57 tmpf[0] += in[3] * ciTable[80 - off];
59 tmpf[1] = in[0] * ciTable[off + 40];
60 tmpf[1] += in[1] * ciTable[off];
61 tmpf[1] += in[2] * ciTable[40 - off];
62 tmpf[1] += in[3] * ciTable[80 - off];
64 tmpf[2] = in[0] * ciTable[off + 40]
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Interp.h 52 int off = (int)(xfrac * CTAPS); local
54 tmpf[0] = in[0] * ciTable[off + 40];
55 tmpf[0] += in[1] * ciTable[off];
56 tmpf[0] += in[2] * ciTable[40 - off];
57 tmpf[0] += in[3] * ciTable[80 - off];
59 tmpf[1] = in[0] * ciTable[off + 40];
60 tmpf[1] += in[1] * ciTable[off];
61 tmpf[1] += in[2] * ciTable[40 - off];
62 tmpf[1] += in[3] * ciTable[80 - off];
64 tmpf[2] = in[0] * ciTable[off + 40]
    [all...]
  /external/clang/test/PCH/
pragma-optimize.c 18 #pragma clang optimize off
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArray.java 122 * @param off {@code >= 0, < size();} offset to fetch
125 public int getByte(int off) {
126 checkOffsets(off, off + 1);
127 return getByte0(off);
133 * @param off {@code >= 0, < (size() - 1);} offset to fetch
136 public int getShort(int off) {
137 checkOffsets(off, off + 2);
138 return (getByte0(off) << 8) | getUnsignedByte0(off + 1)
    [all...]
  /dalvik/dx/src/com/android/dx/util/
ByteArray.java 122 * @param off {@code >= 0, < size();} offset to fetch
125 public int getByte(int off) {
126 checkOffsets(off, off + 1);
127 return getByte0(off);
133 * @param off {@code >= 0, < (size() - 1);} offset to fetch
136 public int getShort(int off) {
137 checkOffsets(off, off + 2);
138 return (getByte0(off) << 8) | getUnsignedByte0(off + 1)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArray.java 122 * @param off {@code >= 0, < size();} offset to fetch
125 public int getByte(int off) {
126 checkOffsets(off, off + 1);
127 return getByte0(off);
133 * @param off {@code >= 0, < (size() - 1);} offset to fetch
136 public int getShort(int off) {
137 checkOffsets(off, off + 2);
138 return (getByte0(off) << 8) | getUnsignedByte0(off + 1)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
Pack.java 8 public static int bigEndianToInt(byte[] bs, int off)
10 int n = bs[ off] << 24;
11 n |= (bs[++off] & 0xff) << 16;
12 n |= (bs[++off] & 0xff) << 8;
13 n |= (bs[++off] & 0xff);
17 public static void bigEndianToInt(byte[] bs, int off, int[] ns)
21 ns[i] = bigEndianToInt(bs, off);
22 off += 4;
33 public static void intToBigEndian(int n, byte[] bs, int off)
35 bs[ off] = (byte)(n >>> 24)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Pack.java 8 public static int bigEndianToInt(byte[] bs, int off)
10 int n = bs[ off] << 24;
11 n |= (bs[++off] & 0xff) << 16;
12 n |= (bs[++off] & 0xff) << 8;
13 n |= (bs[++off] & 0xff);
17 public static void bigEndianToInt(byte[] bs, int off, int[] ns)
21 ns[i] = bigEndianToInt(bs, off);
22 off += 4;
33 public static void intToBigEndian(int n, byte[] bs, int off)
35 bs[ off] = (byte)(n >>> 24)
    [all...]
  /external/elfutils/libdwfl/
dwfl_module_addrname.c 34 GElf_Off off; local
36 return INTUSE(dwfl_module_addrinfo) (mod, addr, &off, &sym,
  /external/libchrome/base/debug/
alias.cc 12 #pragma optimize("", off)
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/
SimpleFilter.java 13 int code(byte[] buf, int off, int len);
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;
  /libcore/ojluni/src/main/java/sun/nio/cs/
ArrayDecoder.java 34 int decode(byte[] src, int off, int len, char[] dst);
ArrayEncoder.java 34 int encode(char[] src, int off, int len, byte[] dst);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/delta/
DeltaDecoder.java 17 public void decode(byte[] buf, int off, int len) {
18 int end = off + len;
19 for (int i = off; i < end; ++i) {
  /libcore/ojluni/src/main/java/java/util/zip/
CRC32.java 58 public void update(byte[] b, int off, int len) {
62 if (off < 0 || len < 0 || off > b.length - len) {
65 crc = updateBytes(crc, b, off, len);
92 private native static int updateBytes(int crc, byte[] b, int off, int len);
Inflater.java 81 private int off, len; field in class:Inflater
119 * @param off the start offset of the input data
123 public void setInput(byte[] b, int off, int len) {
127 if (off < 0 || len < 0 || off > b.length - len) {
132 this.off = off;
154 * @param off the start offset of the data
159 public void setDictionary(byte[] b, int off, int len) {
163 if (off < 0 || len < 0 || off > b.length - len)
168 setDictionary(zsRef.address(), b, off, len); local
    [all...]
  /external/compiler-rt/test/tsan/
unaligned_race.cc 48 template<int off, int off2>
50 p += off;
64 template<int off>
68 access3<off, 0>(main, sz1, rw, obj);
70 access3<off, 1>(main, sz1, rw, obj);
72 access3<off, 2>(main, sz1, rw, obj);
74 access3<off, 3>(main, sz1, rw, obj);
76 access3<off, 4>(main, sz1, rw, obj);
78 access3<off, 5>(main, sz1, rw, obj);
80 access3<off, 6>(main, sz1, rw, obj)
    [all...]
  /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.25/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);

Completed in 2039 milliseconds

1 2 3 4 5 6 7 8 91011>>