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

1 2 3 4 5 6 7 8 91011>>

  /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;
23 public static void intToBigEndian(int n, byte[] bs, int off)
25 bs[ off] = (byte)(n >>> 24)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ByteArray.java 126 * @param off <code>&gt;= 0, &lt; size(); offset to fetch
129 public int getByte(int off) {
130 checkOffsets(off, off + 1);
131 return getByte0(off);
137 * @param off <code>&gt;= 0, &lt; (size() - 1); offset to fetch
140 public int getShort(int off) {
141 checkOffsets(off, off + 2);
142 return (getByte0(off) << 8) | getUnsignedByte0(off + 1)
    [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/Gallery2/jni_mosaic/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/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...]
  /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...]
  /bionic/libc/bionic/
lseek64.c 32 off64_t lseek64(int fd, off64_t off, int whence)
36 if ( __llseek(fd, (unsigned long)(off >> 32),(unsigned long)(off), &result, whence ) < 0 )
  /system/extras/fatblock/
read.c 29 offset_t off, offset_t len)
34 if (off >= buf_len) {
39 if (off + len > buf_len) {
40 memset(out + (buf_len - off), 0, len - (buf_len - off));
41 len = buf_len - off;
44 assert(off < buf_len);
45 assert(off + len <= buf_len);
47 memcpy(out, buf + off, len);
72 static int file_read(struct file *f, char *buf, offset_t off, offset_t len
    [all...]
  /external/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; }
  /external/elfutils/libdw/
dwarf_addrdie.c 66 Dwarf_Off off; local
71 NULL, NULL, &off) != 0)
74 return INTUSE(dwarf_offdie) (dbg, off, result);
dwarf_nextcu.c 60 dwarf_nextcu (dwarf, off, next_off, header_sizep, abbrev_offsetp,
63 Dwarf_Off off;
75 if (off == (Dwarf_Off) -1l
79 || unlikely (off + 4 >= dwarf->sectiondata[IDX_debug_info]->d_size))
87 char *bytes = (char *) dwarf->sectiondata[IDX_debug_info]->d_buf + off;
129 if (unlikely (DIE_OFFSET_FROM_CU_OFFSET (off, offset_size)
167 + off));
171 *next_off = off + 2 * offset_size - 4 + length;
dwarf_formstring.c 82 uint64_t off; local
85 off = read_8ubyte_unaligned (dbg, attrp->valp);
87 off = read_4ubyte_unaligned (dbg, attrp->valp);
89 if (off >= dbg->sectiondata[IDX_debug_str]->d_size)
92 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);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/tc_ematch/
tc_em_nbyte.h 8 __u16 off; member in struct:tcf_em_nbyte
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_ematch/
tc_em_nbyte.h 8 __u16 off; member in struct:tcf_em_nbyte
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_ematch/
tc_em_nbyte.h 8 __u16 off; member in struct:tcf_em_nbyte
  /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 208 const unsigned int off = 0xffffffff; local
211 on, off, on, off, on, off, on, off,
212 off, on, off, on, off, on, off, on,
213 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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
Digest.java 21 public void update(byte b[], int off, int len);
27 public void digest(byte[] out, int off);
  /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...]

Completed in 779 milliseconds

1 2 3 4 5 6 7 8 91011>>