HomeSort by relevance Sort by last modified time
    Searched refs:javaResult (Results 1 - 2 of 2) sorted by null

  /frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/
UT_reduce.java 196 T javaResult, T rsResult) {
197 final boolean success = javaResult.equals(rsResult);
201 Log.i(TAG, testName + ": java " + javaResult + ", rs " + rsResult + ": " + status);
206 final float[] javaResult, final float[] rsResult) {
207 if (javaResult.length != rsResult.length) {
208 Log.i(TAG, testName + ": java length " + javaResult.length +
212 for (int i = 0; i < javaResult.length; ++i) {
213 if (javaResult[i] != rsResult[i]) {
214 Log.i(TAG, testName + "[" + i + "]: java " + javaResult[i] +
227 final long[] javaResult, final long[] rsResult)
    [all...]
  /libcore/ojluni/src/main/native/
FileSystemPreferences.c 72 jintArray javaResult;
111 javaResult = (*env)->NewIntArray(env,2);
112 (*env)->SetIntArrayRegion(env, javaResult, 0, 2, result);
113 return javaResult;

Completed in 77 milliseconds