Searched defs:dest (Results 1 - 4 of 4) sorted by relevance

/libcore/support/src/test/java/tests/support/
H A DSupport_ASimpleReader.java56 public int read(char[] dest, int offset, int count) throws IOException { argument
63 System.arraycopy(buf, pos, dest, offset, readable);
/libcore/support/src/test/java/tests/support/resource/
H A DSupport_Resources.java110 File dest = new File(f.toString() + "/" + file);
115 copyLocalFileto(dest, in);
124 return dest;
131 public static void copyLocalFileto(File dest, InputStream in) throws IOException { argument
132 if (!dest.exists()) {
133 FileOutputStream out = new FileOutputStream(dest);
136 dest.deleteOnExit();
/libcore/crypto/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp725 static bool arrayToBignum(JNIEnv* env, jbyteArray source, BIGNUM** dest) { argument
726 JNI_TRACE("arrayToBignum(%p, %p)", source, *dest);
733 *dest = BN_bin2bn(reinterpret_cast<const unsigned char*>(sourceBytes.get()),
736 if (*dest == NULL) {
742 JNI_TRACE("arrayToBignum(%p) => %p", source, *dest);
6963 static void hex_string(char **dest, unsigned char* input, int len) argument
6965 *dest = (char*) malloc(len * 2 + 1);
6966 char *output = *dest;
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 324 milliseconds