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

1 2 34 5 6 7 8 91011>>

  /external/libvpx/libvpx/vpx_dsp/
bitwriter_buffer.c 22 const int off = (int)wb->bit_offset; local
23 const int p = off / CHAR_BIT;
24 const int q = CHAR_BIT - 1 - off % CHAR_BIT;
31 wb->bit_offset = off + 1;
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/check/
CRC64.java 37 public void update(byte[] buf, int off, int len) {
38 int end = off + len;
40 while (off < end)
41 crc = crcTable[(buf[off++] ^ (int)crc) & 0xFF] ^ (crc >>> 8);
None.java 18 public void update(byte[] buf, int off, int len) {}
CRC32.java 20 public void update(byte[] buf, int off, int len) {
21 state.update(buf, off, len);
SHA256.java 21 public void update(byte[] buf, int off, int len) {
22 sha256.update(buf, off, len);
  /external/syslinux/com32/gplinclude/disk/
common.h 28 uint16_t off; member in struct:ebios_dapa
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
RootInputStream.java 90 public int read(byte[] b, int off, int len) throws IOException {
95 int n = is.read(b, off, len);
96 for (int i = off; i < off + n; i++) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/tc_ematch/
tc_em_nbyte.h 8 __u16 off; member in struct:tcf_em_nbyte
  /external/libunwind/include/
remote.h 54 unw_word_t val, aligned_addr = *addr & -WSIZE, off = *addr - aligned_addr; local
62 val >>= 8*off; local
64 val >>= 8*(WSIZE - 1 - off);
74 unw_word_t val, aligned_addr = *addr & -WSIZE, off = *addr - aligned_addr; local
77 assert ((off & 0x1) == 0);
84 val >>= 8*off; local
86 val >>= 8*(WSIZE - 2 - off);
96 unw_word_t val, aligned_addr = *addr & -WSIZE, off = *addr - aligned_addr; local
99 assert ((off & 0x3) == 0);
106 val >>= 8*off; local
    [all...]
  /libcore/ojluni/src/main/java/java/io/
BufferedWriter.java 168 * @param off Offset from which to start reading characters
173 public void write(char cbuf[], int off, int len) throws IOException {
176 if ((off < 0) || (off > cbuf.length) || (len < 0) ||
177 ((off + len) > cbuf.length) || ((off + len) < 0)) {
188 out.write(cbuf, off, len);
192 int b = off, t = off + len;
214 * @param off Offset from which to start reading character
    [all...]
PipedOutputStream.java 127 * starting at offset <code>off</code> to this piped output stream.
132 * @param off the start offset in the data.
138 public void write(byte b[], int off, int len) throws IOException {
143 } else if ((off < 0) || (off > b.length) || (len < 0) ||
144 ((off + len) > b.length) || ((off + len) < 0)) {
149 sink.receive(b, off, len);
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)) {
133 b[off++] = (byte)s.charAt(pos++);
StringReader.java 80 * @param off Offset at which to start writing characters
88 public int read(char cbuf[], int off, int len) throws IOException {
91 if ((off < 0) || (off > cbuf.length) || (len < 0) ||
92 ((off + len) > cbuf.length) || ((off + len) < 0)) {
100 str.getChars(next, next + n, cbuf, off);
  /libcore/ojluni/src/main/java/java/net/
SocketInputStream.java 90 * @param off the start offset of the data
98 byte b[], int off, int len,
108 * @param off the start offset of the data
116 byte b[], int off, int len,
119 return socketRead0(fd, b, off, len, timeout);
134 * Reads into a byte array <i>b</i> at offset <i>off</i>,
137 * @param off the start offset of the data
143 public int read(byte b[], int off, int length) throws IOException {
144 return read(b, off, length, impl.getTimeout());
147 int read(byte b[], int off, int length, int timeout) throws IOException
    [all...]
SocketOutputStream.java 87 * @param off the start offset in the data
91 private native void socketWrite0(FileDescriptor fd, byte[] b, int off,
98 * @param off the start offset in the data
102 private void socketWrite(byte b[], int off, int len) throws IOException {
105 if (len <= 0 || off < 0 || len > b.length - off) {
110 + " off == " + off + " buffer length == " + b.length);
117 socketWrite0(fd, b, off, len);
156 * @param off the start offset in the dat
    [all...]
  /dalvik/dx/src/com/android/dex/
TableOfContents.java 73 readMap(dex.open(mapList.off));
103 mapList.off = headerIn.readInt();
104 if (mapList.off == 0) {
108 stringIds.off = headerIn.readInt();
110 typeIds.off = headerIn.readInt();
112 protoIds.off = headerIn.readInt();
114 fieldIds.off = headerIn.readInt();
116 methodIds.off = headerIn.readInt();
118 classDefs.off = headerIn.readInt();
134 || (section.off != -1 && section.off != offset))
222 public int off = -1; field in class:TableOfContents.Section
    [all...]
  /external/clang/test/Parser/
pragma-optimize-diagnostics.cpp 3 #pragma clang optimize off
11 #pragma clang optimize something_wrong // expected-error {{unexpected argument 'something_wrong' to '#pragma clang optimize'; expected 'on' or 'off'}}
14 #pragma clang optimize // expected-error {{missing argument to '#pragma clang optimize'; expected 'on' or 'off'}}
17 #define OFF off
19 #pragma clang optimize OFF
25 #define OPT_OFF _Pragma("clang optimize off")
  /external/ltp/tools/pounder21/test_scripts/
screen_noblank 24 setterm -blank 0 -msg on -msglevel 8 -powersave off -powerdown 0 > $i
  /external/robolectric/v1/
find-android.bat 1 @echo off
  /external/v8/tools/mb/
mb.bat 1 @echo off
  /external/ltp/testcases/kernel/syscalls/lseek/
lseek01.c 36 off_t off; member in struct:tcase
59 TEST(lseek(fd, tc->off, tc->whence));
62 tc->off, tc->wname);
68 TFILE, tc->off, tc->wname, TEST_RETURN, tc->exp_off);
76 TFILE, tc->off, tc->wname);
79 TFILE, tc->off, tc->wname);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/
ARMThumb.java 22 public int code(byte[] buf, int off, int len) {
23 int end = off + len - 4;
26 for (i = off; i <= end; i += 2) {
36 dest = src + (pos + i - off);
38 dest = src - (pos + i - off);
49 i -= off;
IA64.java 28 public int code(byte[] buf, int off, int len) {
29 int end = off + len - 16;
32 for (i = off; i <= end; i += 16) {
59 dest = src + (pos + i - off);
61 dest = src - (pos + i - off);
77 i -= off;
PowerPC.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;
SPARC.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) {
37 dest = src + (pos + i - off);
39 dest = src - (pos + i - off);
52 i -= off;

Completed in 280 milliseconds

1 2 34 5 6 7 8 91011>>