Lines Matching refs:i

99         for (int i = 0; i < arr_len; i++) {  in testAllocation_Byte3_1D()
100 if (inArray[i] != outArray[i]) { in testAllocation_Byte3_1D()
102 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Byte3_1D()
131 for (int i = 0; i < arr_len; i++) { in testAllocation_Byte3_2D()
132 if (inArray[i] != outArray[i]) { in testAllocation_Byte3_2D()
134 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Byte3_2D()
164 for (int i = 0; i < arr_len; i++) { in testAllocation_Byte3_3D()
165 if (inArray[i] != outArray[i]) { in testAllocation_Byte3_3D()
167 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Byte3_3D()
186 for (int i = 0; i < arr_len; i++) { in testAllocation_Short3_1D()
187 inArray[i] = (short)random.nextInt(); in testAllocation_Short3_1D()
198 for (int i = 0; i < arr_len; i++) { in testAllocation_Short3_1D()
199 if (inArray[i] != outArray[i]) { in testAllocation_Short3_1D()
201 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Short3_1D()
221 for (int i = 0; i < arr_len; i++) { in testAllocation_Short3_2D()
222 inArray[i] = (short)random.nextInt(); in testAllocation_Short3_2D()
233 for (int i = 0; i < arr_len; i++) { in testAllocation_Short3_2D()
234 if (inArray[i] != outArray[i]) { in testAllocation_Short3_2D()
236 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Short3_2D()
257 for (int i = 0; i < arr_len; i++) { in testAllocation_Short3_3D()
258 inArray[i] = (short)random.nextInt(); in testAllocation_Short3_3D()
269 for (int i = 0; i < arr_len; i++) { in testAllocation_Short3_3D()
270 if (inArray[i] != outArray[i]) { in testAllocation_Short3_3D()
272 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Short3_3D()
291 for (int i = 0; i < arr_len; i++) { in testAllocation_Int3_1D()
292 inArray[i] = random.nextInt(); in testAllocation_Int3_1D()
303 for (int i = 0; i < arr_len; i++) { in testAllocation_Int3_1D()
304 if (inArray[i] != outArray[i]) { in testAllocation_Int3_1D()
306 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Int3_1D()
326 for (int i = 0; i < arr_len; i++) { in testAllocation_Int3_2D()
327 inArray[i] = random.nextInt(); in testAllocation_Int3_2D()
338 for (int i = 0; i < arr_len; i++) { in testAllocation_Int3_2D()
339 if (inArray[i] != outArray[i]) { in testAllocation_Int3_2D()
341 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Int3_2D()
362 for (int i = 0; i < arr_len; i++) { in testAllocation_Int3_3D()
363 inArray[i] = random.nextInt(); in testAllocation_Int3_3D()
374 for (int i = 0; i < arr_len; i++) { in testAllocation_Int3_3D()
375 if (inArray[i] != outArray[i]) { in testAllocation_Int3_3D()
377 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Int3_3D()
396 for (int i = 0; i < arr_len; i++) { in testAllocation_Float3_1D()
397 inArray[i] = random.nextFloat(); in testAllocation_Float3_1D()
408 for (int i = 0; i < arr_len; i++) { in testAllocation_Float3_1D()
409 if (inArray[i] != outArray[i]) { in testAllocation_Float3_1D()
411 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Float3_1D()
430 for (int i = 0; i < arr_len; i++) { in testAllocation_Float3_2D()
431 inArray[i] = random.nextFloat(); in testAllocation_Float3_2D()
442 for (int i = 0; i < arr_len; i++) { in testAllocation_Float3_2D()
443 if (inArray[i] != outArray[i]) { in testAllocation_Float3_2D()
445 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Float3_2D()
465 for (int i = 0; i < arr_len; i++) { in testAllocation_Float3_3D()
466 inArray[i] = random.nextFloat(); in testAllocation_Float3_3D()
477 for (int i = 0; i < arr_len; i++) { in testAllocation_Float3_3D()
478 if (inArray[i] != outArray[i]) { in testAllocation_Float3_3D()
480 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Float3_3D()
499 for (int i = 0; i < arr_len; i++) { in testAllocation_Double3_1D()
500 inArray[i] = (double)random.nextFloat(); in testAllocation_Double3_1D()
511 for (int i = 0; i < arr_len; i++) { in testAllocation_Double3_1D()
512 if (inArray[i] != outArray[i]) { in testAllocation_Double3_1D()
514 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Double3_1D()
533 for (int i = 0; i < arr_len; i++) { in testAllocation_Double3_2D()
534 inArray[i] = (double)random.nextFloat(); in testAllocation_Double3_2D()
545 for (int i = 0; i < arr_len; i++) { in testAllocation_Double3_2D()
546 if (inArray[i] != outArray[i]) { in testAllocation_Double3_2D()
548 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Double3_2D()
568 for (int i = 0; i < arr_len; i++) { in testAllocation_Double3_3D()
569 inArray[i] = (double)random.nextFloat(); in testAllocation_Double3_3D()
580 for (int i = 0; i < arr_len; i++) { in testAllocation_Double3_3D()
581 if (inArray[i] != outArray[i]) { in testAllocation_Double3_3D()
583 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Double3_3D()
602 for (int i = 0; i < arr_len; i++) { in testAllocation_Long3_1D()
603 inArray[i] = random.nextLong(); in testAllocation_Long3_1D()
614 for (int i = 0; i < arr_len; i++) { in testAllocation_Long3_1D()
615 if (inArray[i] != outArray[i]) { in testAllocation_Long3_1D()
617 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Long3_1D()
637 for (int i = 0; i < arr_len; i++) { in testAllocation_Long3_2D()
638 inArray[i] = random.nextLong(); in testAllocation_Long3_2D()
649 for (int i = 0; i < arr_len; i++) { in testAllocation_Long3_2D()
650 if (inArray[i] != outArray[i]) { in testAllocation_Long3_2D()
652 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Long3_2D()
673 for (int i = 0; i < arr_len; i++) { in testAllocation_Long3_3D()
674 inArray[i] = random.nextLong(); in testAllocation_Long3_3D()
685 for (int i = 0; i < arr_len; i++) { in testAllocation_Long3_3D()
686 if (inArray[i] != outArray[i]) { in testAllocation_Long3_3D()
688 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Long3_3D()
719 for (int i = 0; i < count * 3; i++) { in testAllocation_copy1DRangeTo_Byte3()
720 if (inArray[i] != outArray[i]) { in testAllocation_copy1DRangeTo_Byte3()
722 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeTo_Byte3()
726 for (int i = count * 3; i < arr_len; i++) { in testAllocation_copy1DRangeTo_Byte3()
727 if (outArray[i] != 0) { in testAllocation_copy1DRangeTo_Byte3()
729 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeTo_Byte3()
748 for (int i = 0; i < arr_len; i++) { in testAllocation_copy1DRangeTo_Short3()
749 inArray[i] = (short)random.nextInt(); in testAllocation_copy1DRangeTo_Short3()
762 for (int i = 0; i < count * 3; i++) { in testAllocation_copy1DRangeTo_Short3()
763 if (inArray[i] != outArray[i]) { in testAllocation_copy1DRangeTo_Short3()
765 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeTo_Short3()
769 for (int i = count * 3; i < arr_len; i++) { in testAllocation_copy1DRangeTo_Short3()
770 if (outArray[i] != 0) { in testAllocation_copy1DRangeTo_Short3()
772 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeTo_Short3()
791 for (int i = 0; i < arr_len; i++) { in testAllocation_copy1DRangeTo_Int3()
792 inArray[i] = random.nextInt(); in testAllocation_copy1DRangeTo_Int3()
805 for (int i = 0; i < count * 3; i++) { in testAllocation_copy1DRangeTo_Int3()
806 if (inArray[i] != outArray[i]) { in testAllocation_copy1DRangeTo_Int3()
808 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeTo_Int3()
812 for (int i = count * 3; i < arr_len; i++) { in testAllocation_copy1DRangeTo_Int3()
813 if (outArray[i] != 0) { in testAllocation_copy1DRangeTo_Int3()
815 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeTo_Int3()
834 for (int i = 0; i < arr_len; i++) { in testAllocation_copy1DRangeTo_Float3()
835 inArray[i] = random.nextFloat(); in testAllocation_copy1DRangeTo_Float3()
848 for (int i = 0; i < count * 3; i++) { in testAllocation_copy1DRangeTo_Float3()
849 if (inArray[i] != outArray[i]) { in testAllocation_copy1DRangeTo_Float3()
851 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeTo_Float3()
855 for (int i = count * 3; i < arr_len; i++) { in testAllocation_copy1DRangeTo_Float3()
856 if (outArray[i] != 0f) { in testAllocation_copy1DRangeTo_Float3()
858 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeTo_Float3()
877 for (int i = 0; i < arr_len; i++) { in testAllocation_copy1DRangeTo_Long3()
878 inArray[i] = random.nextLong(); in testAllocation_copy1DRangeTo_Long3()
891 for (int i = 0; i < count * 3; i++) { in testAllocation_copy1DRangeTo_Long3()
892 if (inArray[i] != outArray[i]) { in testAllocation_copy1DRangeTo_Long3()
894 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeTo_Long3()
898 for (int i = count * 3; i < arr_len; i++) { in testAllocation_copy1DRangeTo_Long3()
899 if (outArray[i] != 0) { in testAllocation_copy1DRangeTo_Long3()
901 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeTo_Long3()
934 for (int i = 0; i < arr_len; i++) { in testAllocation_copy2DRangeTo_Byte3()
935 if (inArray[i] != outArray[i]) { in testAllocation_copy2DRangeTo_Byte3()
937 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy2DRangeTo_Byte3()
961 for (int i = 0; i < arr_len; i++) { in testAllocation_copy2DRangeTo_Short3()
962 inArray[i] = (short)random.nextInt(); in testAllocation_copy2DRangeTo_Short3()
973 for (int i = 0; i < arr_len; i++) { in testAllocation_copy2DRangeTo_Short3()
974 if (inArray[i] != outArray[i]) { in testAllocation_copy2DRangeTo_Short3()
976 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy2DRangeTo_Short3()
1000 for (int i = 0; i < arr_len; i++) { in testAllocation_copy2DRangeTo_Int3()
1001 inArray[i] = random.nextInt(); in testAllocation_copy2DRangeTo_Int3()
1012 for (int i = 0; i < arr_len; i++) { in testAllocation_copy2DRangeTo_Int3()
1013 if (inArray[i] != outArray[i]) { in testAllocation_copy2DRangeTo_Int3()
1015 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy2DRangeTo_Int3()
1039 for (int i = 0; i < arr_len; i++) { in testAllocation_copy2DRangeTo_Float3()
1040 inArray[i] = random.nextFloat(); in testAllocation_copy2DRangeTo_Float3()
1051 for (int i = 0; i < arr_len; i++) { in testAllocation_copy2DRangeTo_Float3()
1052 if (inArray[i] != outArray[i]) { in testAllocation_copy2DRangeTo_Float3()
1054 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy2DRangeTo_Float3()
1078 for (int i = 0; i < arr_len; i++) { in testAllocation_copy2DRangeTo_Long3()
1079 inArray[i] = random.nextLong(); in testAllocation_copy2DRangeTo_Long3()
1090 for (int i = 0; i < arr_len; i++) { in testAllocation_copy2DRangeTo_Long3()
1091 if (inArray[i] != outArray[i]) { in testAllocation_copy2DRangeTo_Long3()
1093 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy2DRangeTo_Long3()
1124 for (int i = 0; i < count * 3; i++) { in testAllocation_copy1DRangeToUnchecked_Byte3()
1125 if (inArray[i] != outArray[i]) { in testAllocation_copy1DRangeToUnchecked_Byte3()
1127 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeToUnchecked_Byte3()
1131 for (int i = count * 3; i < arr_len; i++) { in testAllocation_copy1DRangeToUnchecked_Byte3()
1132 if (outArray[i] != 0) { in testAllocation_copy1DRangeToUnchecked_Byte3()
1134 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeToUnchecked_Byte3()
1153 for (int i = 0; i < arr_len; i++) { in testAllocation_copy1DRangeToUnchecked_Short3()
1154 inArray[i] = (short)random.nextInt(); in testAllocation_copy1DRangeToUnchecked_Short3()
1167 for (int i = 0; i < count * 3; i++) { in testAllocation_copy1DRangeToUnchecked_Short3()
1168 if (inArray[i] != outArray[i]) { in testAllocation_copy1DRangeToUnchecked_Short3()
1170 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeToUnchecked_Short3()
1174 for (int i = count * 3; i < arr_len; i++) { in testAllocation_copy1DRangeToUnchecked_Short3()
1175 if (outArray[i] != 0) { in testAllocation_copy1DRangeToUnchecked_Short3()
1177 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeToUnchecked_Short3()
1196 for (int i = 0; i < arr_len; i++) { in testAllocation_copy1DRangeToUnchecked_Int3()
1197 inArray[i] = random.nextInt(); in testAllocation_copy1DRangeToUnchecked_Int3()
1210 for (int i = 0; i < count * 3; i++) { in testAllocation_copy1DRangeToUnchecked_Int3()
1211 if (inArray[i] != outArray[i]) { in testAllocation_copy1DRangeToUnchecked_Int3()
1213 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeToUnchecked_Int3()
1217 for (int i = count * 3; i < arr_len; i++) { in testAllocation_copy1DRangeToUnchecked_Int3()
1218 if (outArray[i] != 0) { in testAllocation_copy1DRangeToUnchecked_Int3()
1220 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeToUnchecked_Int3()
1239 for (int i = 0; i < arr_len; i++) { in testAllocation_copy1DRangeToUnchecked_Float3()
1240 inArray[i] = random.nextFloat(); in testAllocation_copy1DRangeToUnchecked_Float3()
1253 for (int i = 0; i < count * 3; i++) { in testAllocation_copy1DRangeToUnchecked_Float3()
1254 if (inArray[i] != outArray[i]) { in testAllocation_copy1DRangeToUnchecked_Float3()
1256 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeToUnchecked_Float3()
1260 for (int i = count * 3; i < arr_len; i++) { in testAllocation_copy1DRangeToUnchecked_Float3()
1261 if (outArray[i] != 0f) { in testAllocation_copy1DRangeToUnchecked_Float3()
1263 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeToUnchecked_Float3()
1282 for (int i = 0; i < arr_len; i++) { in testAllocation_copy1DRangeToUnchecked_Long3()
1283 inArray[i] = random.nextLong(); in testAllocation_copy1DRangeToUnchecked_Long3()
1296 for (int i = 0; i < count * 3; i++) { in testAllocation_copy1DRangeToUnchecked_Long3()
1297 if (inArray[i] != outArray[i]) { in testAllocation_copy1DRangeToUnchecked_Long3()
1299 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeToUnchecked_Long3()
1303 for (int i = count * 3; i < arr_len; i++) { in testAllocation_copy1DRangeToUnchecked_Long3()
1304 if (outArray[i] != 0) { in testAllocation_copy1DRangeToUnchecked_Long3()
1306 … android.util.Log.v("Alloc Padding Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_copy1DRangeToUnchecked_Long3()