Searched refs:off (Results 126 - 150 of 152) sorted by relevance

1234567

/dalvik/libcore/luni/src/main/native/
H A Dorg_apache_harmony_luni_platform_OSFileSystem.cpp260 off_t off = offset; local
262 ssize_t rc = sendfile(socket, fd, &off, count);
H A DcommonDblParce.c404 #pragma optimize("g",off)
H A Dorg_apache_harmony_luni_util_fltparse.c333 #pragma optimize("g",off)
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DBufferedReaderTest.java243 notes = "The test verifies read(char[] cbuf, int off, int len) method.",
306 public int read(char[] buf, int off, int len) throws IOException {
312 System.arraycopy(contents, pos, buf, off, toRead);
338 notes = "The test verifies read(char[] cbuf, int off, int len) method.",
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/
H A DPKCS7SignedData.java447 public void update(byte[] buf, int off, int len) argument
450 sig.update(buf, off, len);
/dalvik/libcore/security/src/test/java/tests/java/security/
H A DSecureClassLoaderTest.java366 public Class define(String name, byte[] b, int off, int len, argument
368 return defineClass(name, b, off, len, cs);
/dalvik/vm/compiler/template/out/
H A DCompilerTemplateAsm-armv5te-vfp.S436 blx r8 @ off to the native code
1390 @ refresh Jit's on/off status
1422 @ refresh Jit's on/off status & test for exception
1469 @ Refresh Jit's on/off status
H A DCompilerTemplateAsm-armv7-a-neon.S436 blx r8 @ off to the native code
1390 @ refresh Jit's on/off status
1422 @ refresh Jit's on/off status & test for exception
1469 @ Refresh Jit's on/off status
H A DCompilerTemplateAsm-armv7-a.S436 blx r8 @ off to the native code
1390 @ refresh Jit's on/off status
1422 @ refresh Jit's on/off status & test for exception
1469 @ Refresh Jit's on/off status
H A DCompilerTemplateAsm-armv5te.S436 blx r8 @ off to the native code
1118 @ refresh Jit's on/off status
1150 @ refresh Jit's on/off status & test for exception
1197 @ Refresh Jit's on/off status
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
H A DAESEngine.java422 int off)
424 int index = off;
449 int off)
451 int index = off;
420 unpackBlock( byte[] bytes, int off) argument
447 packBlock( byte[] bytes, int off) argument
H A DAESFastEngine.java753 int off)
755 int index = off;
780 int off)
782 int index = off;
751 unpackBlock( byte[] bytes, int off) argument
778 packBlock( byte[] bytes, int off) argument
/dalvik/vm/arch/arm/
H A DCallOldABI.S97 @ Rather than keep a count and pop them off after, we just hold on to
102 @ pc on with stmfd and don't pop it off.
H A DCallEABI.S227 * The stack copy is complete. Grab the first two words off of argv
318 @ destined for r2/r3). Pushing them on and popping them off would be
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/cert/
H A DX509CertFactoryImpl.java864 // and turn off the using of buffer
878 public int read(byte[] b, int off, int len) throws IOException { argument
885 b[off+i] = (byte) read_b;
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
H A DHttpURLConnectionImpl.java148 public int read(byte[] b, int off, int len) throws IOException { argument
152 int result = is.read(b, off, len);
157 cacheOut.write(b, off, result);
/dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DZipEntryTest.java42 int off;
H A DZipFileTest.java48 int off;
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DSimpleTimeZoneTest.java702 int off = st1.getRawOffset();
705 st1.setRawOffset(off);
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
H A DSignature2Test.java502 notes = "SignatureException checking missed. Verification of different values off and len missed.",
741 protected void engineUpdate(byte[] b, int off, int len) argument
H A DSignatureTest.java720 protected void engineUpdate(byte[] b, int off, int len) argument
/dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DJarFileTest.java58 int off;
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
H A DHttpURLConnectionTest.java1083 public void write(byte[] b, int off, int len) throws IOException { argument
H A DURLConnectionTest.java339 public void write(byte[] b, int off, int len) throws IOException { argument
/dalvik/libcore/sql/src/main/native/
H A Dsqlite_jni.c4204 Java_SQLite_Blob_write(JNIEnv *env , jobject obj, jbyteArray b, jint off, argument
4223 (*env)->GetByteArrayRegion(env, b, off, len, buf);
4245 Java_SQLite_Blob_read(JNIEnv *env , jobject obj, jbyteArray b, jint off, argument
4270 (*env)->SetByteArrayRegion(env, b, off, len, buf);

Completed in 370 milliseconds

1234567