Searched refs:off (Results 176 - 200 of 803) sorted by relevance

1234567891011>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
H A DMemoryDataStore.java38 @Override public void write(byte[] b, int off, int len) throws IOException {
40 System.arraycopy(b, off, buf, position, len);
77 @Override public int read(byte[] b, int off, int len) throws IOException {
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMySignature2.java58 protected void engineUpdate(byte[] b, int off, int len) argument
/external/chromium_org/content/app/
H A Dstartup_helper_win.cc18 #pragma optimize("", off)
/external/chromium_org/net/base/
H A Dwinsock_util.cc18 #pragma optimize( "", off )
/external/chromium_org/tools/measure_page_load_time/ie_bho/
H A DMeasurePageLoadTime.cpp23 #pragma managed(push, off)
/external/clang/test/CodeGen/
H A Dms_struct-bitfield-1.c28 #pragma ms_struct off
/external/clang/test/SemaCXX/
H A Dpragma-optimize.cpp3 #pragma clang optimize off
/external/elfutils/0.153/src/
H A Darlib.h96 const char *membername, off_t off);
/external/fio/os/windows/posix/include/sys/
H A Dmman.h30 int fildes, off_t off);
/external/fsck_msdos/
H A Ddir.c311 loff_t off; local
322 off = startcl * boot->SecPerClust + boot->ClusterOffset;
323 off *= boot->BytesPerSec;
324 if (lseek64(f, off, SEEK_SET) != off) {
325 printf("off = %llu\n", off);
337 if (lseek64(f, off, SEEK_SET) != off) {
338 printf("off
446 loff_t off; local
530 loff_t off; local
[all...]
/external/guava/guava/src/com/google/common/hash/
H A DAbstractStreamingHashFunction.java52 @Override public HashCode hashBytes(byte[] input, int off, int len) { argument
53 return newHasher().putBytes(input, off, len).hash();
141 public final Hasher putBytes(byte[] bytes, int off, int len) { argument
142 return putBytes(ByteBuffer.wrap(bytes, off, len).order(ByteOrder.LITTLE_ENDIAN));
H A DHasher.java33 @Override Hasher putBytes(byte[] bytes, int off, int len); argument
H A DMessageDigestHashFunction.java84 @Override public Hasher putBytes(byte[] bytes, int off, int len) { argument
86 checkPositionIndexes(off, off + len, bytes.length);
87 digest.update(bytes, off, len);
H A DSink.java46 * Puts a chunk of an array of bytes into this sink. {@code bytes[off]} is the first byte written,
47 * {@code bytes[off + len - 1]} is the last.
50 * @param off the start offset in the array
53 * @throws IndexOutOfBoundsException if {@code off < 0} or {@code off + len > bytes.length} or
56 Sink putBytes(byte[] bytes, int off, int len); argument
/external/guava/guava/src/com/google/common/io/
H A DByteArrayDataOutput.java32 @Override void write(byte b[], int off, int len); argument
/external/guava/guava-tests/test/com/google/common/io/
H A DFileBackedOutputStreamTest.java115 OutputStream out, byte[] b, int off, int len, boolean singleByte)
118 for (int i = off; i < off + len; i++) {
122 out.write(b, off, len);
114 write( OutputStream out, byte[] b, int off, int len, boolean singleByte) argument
/external/kernel-headers/original/uapi/linux/
H A Dptrace.h59 __u64 off; /* from which siginfo to start */ member in struct:ptrace_peeksiginfo_args
/external/libmtp/src/
H A Dgphoto2-endian-ppc.h95 #define be64atoh_x(x,off,shift) (((uint64_t)((x)[off]))<<shift)
100 #define le64atoh_x(x,off,shift) (((uint64_t)(x)[off])<<shift)
/external/libvorbis/include/vorbis/
H A Dvorbisfile.h53 static int _ov_header_fseek_wrap(FILE *f,ogg_int64_t off,int whence){ argument
57 return fseeko64(f,off,whence);
59 return _fseeki64(f,off,whence);
61 return fseek(f,off,whence);
/external/llvm/test/Object/Inputs/
H A Delfver.S6 # Also, strip off non-dynamic symbols:
/external/objenesis/main/src/org/objenesis/instantiator/basic/
H A DObjectInputStreamInstantiator.java132 public int read(byte[] b, int off, int len) throws IOException { argument
137 System.arraycopy(data, pointer, b, off, remaining);
138 off += remaining;
144 System.arraycopy(data, pointer, b, off, left);
/external/opencv/otherlibs/highgui/
H A Dcvcap.cpp49 #pragma optimize("",off)
/external/tremolo/Tremolo/
H A Dcodebook.h83 long off,int ch,
/external/apache-http/src/org/apache/http/conn/
H A DEofSensorInputStream.java159 public int read(byte[] b, int off, int len) throws IOException { argument
164 l = wrappedStream.read(b, off, len);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
H A DJcaDigestCalculatorProviderBuilder.java91 public void write(byte[] bytes, int off, int len) argument
94 dig.update(bytes, off, len);

Completed in 8724 milliseconds

1234567891011>>