Searched refs:off (Results 1 - 25 of 803) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
H A DPack.java5 public static int bigEndianToInt(byte[] bs, int off) argument
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) argument
18 ns[i] = bigEndianToInt(bs, off);
19 off += 4;
30 public static void intToBigEndian(int n, byte[] bs, int off) argument
32 bs[ off]
45 intToBigEndian(int[] ns, byte[] bs, int off) argument
54 bigEndianToLong(byte[] bs, int off) argument
61 bigEndianToLong(byte[] bs, int off, long[] ns) argument
77 longToBigEndian(long n, byte[] bs, int off) argument
90 longToBigEndian(long[] ns, byte[] bs, int off) argument
99 littleEndianToInt(byte[] bs, int off) argument
108 littleEndianToInt(byte[] bs, int off, int[] ns) argument
124 intToLittleEndian(int n, byte[] bs, int off) argument
139 intToLittleEndian(int[] ns, byte[] bs, int off) argument
148 littleEndianToLong(byte[] bs, int off) argument
155 littleEndianToLong(byte[] bs, int off, long[] ns) argument
171 longToLittleEndian(long n, byte[] bs, int off) argument
184 longToLittleEndian(long[] ns, byte[] bs, int off) argument
[all...]
/external/oprofile/module/ia64/
H A DIA64entry.h24 #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/
H A Dpragma-optimize.c12 #pragma clang optimize off
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArray.java122 * @param off {@code >= 0, < size();} offset to fetch
125 public int getByte(int off) { argument
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) { argument
137 checkOffsets(off, off + 2);
138 return (getByte0(off) <<
147 getInt(int off) argument
161 getLong(int off) argument
181 getUnsignedByte(int off) argument
192 getUnsignedShort(int off) argument
235 getByte0(int off) argument
246 getUnsignedByte0(int off) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dnegequ.asm2 off equ -4 define
5 mov [ebp+off], eax
7 mov [ebp-off], eax
/external/chromium_org/chrome/browser/resources/options/
H A Deasy_unlock_turn_off_overlay.css5 #easy-unlock-turn-off-overlay {
/external/chromium_org/base/debug/
H A Dalias.cc12 #pragma optimize("", off)
/external/compiler-rt/test/tsan/
H A Dunaligned_race.cc51 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,
89 access1(bool main, int off, int sz1, int off2, bool rw, char *obj) argument
[all...]
H A Dbench_shadow_flush.cc34 for (uptr off = 0; off < mem_size; off += stride)
35 mem[off] = 42;
/external/elfutils/0.153/libdw/
H A Ddwarf_addrdie.c66 Dwarf_Off off; local
71 NULL, NULL, &off) != 0)
74 return INTUSE(dwarf_offdie) (dbg, off, result);
H A Ddwarf_formstring.c81 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;
H A Ddwarf_nextcu.c60 dwarf_next_unit (dwarf, off, next_off, header_sizep, versionp, abbrev_offsetp,
63 Dwarf_Off off;
81 if (off == (Dwarf_Off) -1l
86 || unlikely (off + 4 >= dwarf->sectiondata[sec_idx]->d_size))
95 const unsigned char *bytes = data + off;
138 if (unlikely (DIE_OFFSET_FROM_CU_OFFSET (off, offset_size, debug_types)
172 if (unlikely (type_offset < (size_t) (bytes - (data + off))))
182 *header_sizep = bytes - (data + off);
199 *next_off = off + 2 * offset_size - 4 + length;
206 dwarf_nextcu (dwarf, off, next_of
209 Dwarf_Off off; variable
[all...]
/external/e2fsprogs/ext2ed/
H A Dext2ed.conf.in37 # AllowChanges off will not allow ext2ed to do any changes to the
58 ForceExt2 off
77 ForceDefault off
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_zip.cpp129 int off; local
130 for (off = stat_buf.st_size - sizeof(kEndOfCentralDirectoryMarker);
131 off >= 0; --off) {
132 if (ReadUInt32(mem_bytes, off) == kEndOfCentralDirectoryMarker) {
136 if (off == -1) {
146 mem_bytes, off + kOffsetOfCentralDirLengthInEndOfCentralDirectory);
148 mem_bytes, off + kOffsetOfStartOfCentralDirInEndOfCentralDirectory);
150 if (start_of_central_dir > off) {
157 if (end_of_central_dir > off) {
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DEncoder.java12 int encode(byte[] data, int off, int length, OutputStream out) throws IOException; argument
14 int decode(byte[] data, int off, int length, OutputStream out) throws IOException; argument
/external/chromium_org/third_party/angle/src/
H A Dcopy_compiler_dll.bat1 @echo off
/external/apache-http/src/org/apache/http/util/
H A DByteArrayBuffer.java67 public void append(final byte[] b, int off, int len) { argument
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) { argument
99 if ((off < 0) || (off > b.length) || (len < 0) ||
100 ((off
117 append(final CharArrayBuffer b, int off, int len) argument
[all...]
H A DCharArrayBuffer.java69 public void append(final char[] b, int off, int len) { argument
73 if ((off < 0) || (off > b.length) || (len < 0) ||
74 ((off + len) < 0) || ((off + len) > b.length)) {
84 System.arraycopy(b, off, this.buffer, this.len, len);
101 public void append(final CharArrayBuffer b, int off, int len) { argument
105 append(b.buffer, off, len);
124 public void append(final byte[] b, int off, int len) { argument
128 if ((off <
150 append(final ByteArrayBuffer b, int off, int len) argument
[all...]
/external/chromium_org/third_party/boringssl/src/tool/
H A Dpkcs12.cc68 size_t off = 0; local
70 n = read(fd, &contents[off], size - off);
72 off += static_cast<size_t>(n);
74 } while ((n > 0 && off < size) || (n == -1 && errno == EINTR));
76 if (off != size) {
88 off = 0;
90 n = read(0, &password[off], sizeof(password) - 1 - off);
92 off
[all...]
/external/chromium_org/third_party/libevent/
H A Dbuffer.c96 (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...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DSigner.java24 public void update(byte[] in, int off, int len); argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_read_bit_buffer.c17 const size_t off = rb->bit_offset; local
18 const size_t p = off / CHAR_BIT;
19 const int q = CHAR_BIT - 1 - (int)off % CHAR_BIT;
25 rb->bit_offset = off + 1;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_write_bit_buffer.c19 const int off = (int)wb->bit_offset; local
20 const int p = off / CHAR_BIT;
21 const int q = CHAR_BIT - 1 - off % CHAR_BIT;
28 wb->bit_offset = off + 1;
/external/iproute2/include/linux/tc_ematch/
H A Dtc_em_nbyte.h8 __u16 off; member in struct:tcf_em_nbyte
/external/kernel-headers/original/uapi/linux/tc_ematch/
H A Dtc_em_nbyte.h8 __u16 off; member in struct:tcf_em_nbyte

Completed in 781 milliseconds

1234567891011>>