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

1 2 3 4 5 6 7 8 91011>>

  /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/Camera/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...]
  /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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
Pack.java 5 public static int bigEndianToInt(byte[] bs, int off)
7 int n = bs[ off] << 24;
8 n |= (bs[++off] & 0xff) << 16;
9 n |= (bs[++off] & 0xff) << 8;
10 n |= (bs[++off] & 0xff);
14 public static void bigEndianToInt(byte[] bs, int off, int[] ns)
18 ns[i] = bigEndianToInt(bs, off);
19 off += 4;
30 public static void intToBigEndian(int n, byte[] bs, int off)
32 bs[ off] = (byte)(n >>> 24)
    [all...]
  /external/oprofile/module/ia64/
IA64entry.h 24 #define PT_REGS_SAVES(off) \
26 .fframe IA64_PT_REGS_SIZE+16+(off); \
27 .spillsp rp, PT(CR_IIP)+16+(off); \
28 .spillsp ar.pfs, PT(CR_IFS)+16+(off); \
29 .spillsp ar.unat, PT(AR_UNAT)+16+(off); \
30 .spillsp ar.fpsr, PT(AR_FPSR)+16+(off); \
31 .spillsp pr, PT(PR)+16+(off);
33 #define PT_REGS_UNWIND_INFO(off) \
35 PT_REGS_SAVES(off); \
38 #define SWITCH_STACK_SAVES(off) \
    [all...]
  /external/clang/test/PCH/
pragma-optimize.c 12 #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/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
negequ.asm 2 off equ -4 define
5 mov [ebp+off], eax
7 mov [ebp-off], eax
  /external/chromium_org/base/debug/
alias.cc 12 #pragma optimize("", off)
  /external/compiler-rt/test/tsan/
unaligned_race.cc 51 template<int off, int off2>
53 p += off;
67 template<int off>
71 access3<off, 0>(main, sz1, rw, obj);
73 access3<off, 1>(main, sz1, rw, obj);
75 access3<off, 2>(main, sz1, rw, obj);
77 access3<off, 3>(main, sz1, rw, obj);
79 access3<off, 4>(main, sz1, rw, obj);
81 access3<off, 5>(main, sz1, rw, obj);
83 access3<off, 6>(main, sz1, rw, obj)
    [all...]
  /external/elfutils/0.153/libdw/
dwarf_addrdie.c 66 Dwarf_Off off; local
71 NULL, NULL, &off) != 0)
74 return INTUSE(dwarf_offdie) (dbg, off, result);
dwarf_formstring.c 81 uint64_t off; local
83 attrp->cu->offset_size, &off, IDX_debug_str, 1))
86 return (const char *) dbg->sectiondata[IDX_debug_str]->d_buf + off;
  /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
  /libcore/luni/src/main/java/java/util/zip/
Checksum.java 43 * @param off
48 public void update(byte[] buf, int off, int nbytes);
  /frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp 116 const unsigned int off = 0xffffffff; local
119 on, off, on, off, on, off, on, off,
120 off, on, off, on, off, on, off, on,
121 on, off, on, off, on, off, on, off
    [all...]
  /frameworks/native/opengl/tests/tritex/
tritex.cpp 209 const unsigned int off = 0xffffffff; local
212 on, off, on, off, on, off, on, off,
213 off, on, off, on, off, on, off, on,
214 on, off, on, off, on, off, on, 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/chromium_org/third_party/angle/src/
copy_compiler_dll.bat 1 @echo off
  /libcore/dex/src/main/java/com/android/dex/
TableOfContents.java 70 readMap(dex.open(mapList.off));
95 mapList.off = headerIn.readInt();
96 if (mapList.off == 0) {
100 stringIds.off = headerIn.readInt();
102 typeIds.off = headerIn.readInt();
104 protoIds.off = headerIn.readInt();
106 fieldIds.off = headerIn.readInt();
108 methodIds.off = headerIn.readInt();
110 classDefs.off = headerIn.readInt();
126 || (section.off != -1 && section.off != offset))
214 public int off = -1; field in class:TableOfContents.Section
    [all...]
  /external/apache-http/src/org/apache/http/util/
ByteArrayBuffer.java 62 public void append(final byte[] b, int off, int len) {
66 if ((off < 0) || (off > b.length) || (len < 0) ||
67 ((off + len) < 0) || ((off + len) > b.length)) {
77 System.arraycopy(b, off, this.buffer, this.len, len);
90 public void append(final char[] b, int off, int len) {
94 if ((off < 0) || (off > b.length) || (len < 0) ||
95 ((off + len) < 0) || ((off + len) > b.length))
116 append(b.buffer(), off, len); local
    [all...]
  /packages/apps/Gallery2/jni/filters/
fx.c 19 __inline__ int interp(unsigned char *src, int p , int *off ,float dr,float dg, float db){
21 float fr00 = (src[p+off[0]])*(1-dr)+(src[p+off[1]])*dr;
22 float fr01 = (src[p+off[2]])*(1-dr)+(src[p+off[3]])*dr;
23 float fr10 = (src[p+off[4]])*(1-dr)+(src[p+off[5]])*dr;
24 float fr11 = (src[p+off[6]])*(1-dr)+(src[p+off[7]])*dr;
47 int off[8] = local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
getdelim.c 49 size_t len, newlen, off; local
64 off = 0;
81 newlen = off + len;
83 if (newlen < off || newlen > SSIZE_MAX) {
113 (void)memcpy((*buf + off), fp->_p, len);
117 off += len;
123 if (off == 0)
127 *(*buf + off) = '\0';
128 return off;
  /external/chromium_org/third_party/libevent/
buffer.c 96 (x)->off = (y)->off; \
105 if (outbuf->off == 0) {
107 size_t oldoff = inbuf->off;
119 if (inbuf->off != oldoff && inbuf->cb != NULL)
120 (*inbuf->cb)(inbuf, oldoff, inbuf->off, inbuf->cbarg);
127 res = evbuffer_add(outbuf, inbuf->buffer, inbuf->off);
130 evbuffer_drain(inbuf, inbuf->off);
141 size_t oldoff = buf->off;
148 size_t used = buf->misalign + buf->off;
    [all...]

Completed in 1189 milliseconds

1 2 3 4 5 6 7 8 91011>>