/aosp12/frameworks/rs/driver/runtime/arch/ |
H A D | generic.c | 231 extern char __attribute__((overloadable)) max(char v1, char v2) { in max() 235 extern char2 __attribute__((overloadable)) max(char2 v1, char2 v2) { in max() 287 extern int __attribute__((overloadable)) max(int v1, int v2) { in max() 291 extern int2 __attribute__((overloadable)) max(int2 v1, int2 v2) { in max() 298 extern int3 __attribute__((overloadable)) max(int3 v1, int3 v2) { in max() 306 extern int4 __attribute__((overloadable)) max(int4 v1, int4 v2) { in max() 371 extern uint __attribute__((overloadable)) max(uint v1, uint v2) { in max() 492 extern int2 __attribute__((overloadable)) min(int2 v1, int2 v2) { in min() 499 extern int3 __attribute__((overloadable)) min(int3 v1, int3 v2) { in min() 507 extern int4 __attribute__((overloadable)) min(int4 v1, int4 v2) { in min() [all …]
|
/aosp12/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
H A D | UT_math_agree.java | 149 private float min(float v1, float v2) { in min() 159 private byte min(byte v1, byte v2) { in min() 169 private short min(short v1, short v2) { in min() 179 private int min(int v1, int v2) { in min() 182 private int[] min(int[] v1, int[] v2) { in min() 189 private long min(long v1, long v2) { in min() 202 private float max(float v1, float v2) { in max() 212 private byte max(byte v1, byte v2) { in max() 222 private short max(short v1, short v2) { in max() 232 private int max(int v1, int v2) { in max() [all …]
|
H A D | UT_bug_char.java | 40 private byte min(byte v1, byte v2) { in min() 43 private byte[] min(byte[] v1, byte[] v2) { in min()
|
/aosp12/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
H A D | UT_math_agree.java | 181 private float min(float v1, float v2) { in min() 193 private byte min(byte v1, byte v2) { in min() 205 private short min(short v1, short v2) { in min() 217 private int min(int v1, int v2) { in min() 221 private int[] min(int[] v1, int[] v2) { in min() 229 private long min(long v1, long v2) { in min() 243 private float max(float v1, float v2) { in max() 255 private byte max(byte v1, byte v2) { in max() 267 private short max(short v1, short v2) { in max() 279 private int max(int v1, int v2) { in max() [all …]
|
H A D | UT_bug_char.java | 39 private byte min(byte v1, byte v2) { in min() 43 private byte[] min(byte[] v1, byte[] v2) { in min()
|
/aosp12/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
H A D | UT_math_agree.java | 183 private float min(float v1, float v2) { in min() 195 private byte min(byte v1, byte v2) { in min() 207 private short min(short v1, short v2) { in min() 219 private int min(int v1, int v2) { in min() 223 private int[] min(int[] v1, int[] v2) { in min() 231 private long min(long v1, long v2) { in min() 245 private float max(float v1, float v2) { in max() 257 private byte max(byte v1, byte v2) { in max() 269 private short max(short v1, short v2) { in max() 281 private int max(int v1, int v2) { in max() [all …]
|
H A D | UT_bug_char.java | 41 private byte min(byte v1, byte v2) { in min() 45 private byte[] min(byte[] v1, byte[] v2) { in min()
|
/aosp12/frameworks/base/core/tests/coretests/src/android/view/ |
H A D | InsetsVisibilitiesTest.java | 50 final InsetsVisibilities v1 = new InsetsVisibilities(); in testEquals() local 74 final InsetsVisibilities v1 = new InsetsVisibilities(); in testSet() local 94 final InsetsVisibilities v1 = new InsetsVisibilities(); in testCopyConstructor() local 106 final InsetsVisibilities v1 = new InsetsVisibilities(); in testGetterAndSetter() local
|
/aosp12/frameworks/native/libs/math/tests/ |
H A D | vec_test.cpp | 48 vec4 v1(1); in TEST_F() local 140 vec4 v1(10, 20, 30, 40); in TEST_F() local 182 vec4 v1(10, 20, 30, 40); in TEST_F() local 192 vec4 v1(10, 20, 30, 40); in TEST_F() local 209 vec4 v1(10, 20, 30, 40); in TEST_F() local
|
/aosp12/art/compiler/optimizing/ |
H A D | nodes_vector_test.cc | 135 HVecOperation* v1 = new (GetAllocator()) in TEST_F() local 205 HVecLoad* v1 = new (GetAllocator()) HVecLoad(GetAllocator(), in TEST_F() local 260 HVecStore* v1 = new (GetAllocator()) HVecStore( in TEST_F() local 302 HVecHalvingAdd* v1 = new (GetAllocator()) HVecHalvingAdd( in TEST_F() local 364 HVecMultiplyAccumulate* v1 = new (GetAllocator()) HVecMultiplyAccumulate( in TEST_F() local 392 HVecReduce* v1 = new (GetAllocator()) HVecReduce( in TEST_F() local
|
H A D | induction_var_range_test.cc | 43 void ExpectEqual(Value v1, Value v2) { in ExpectEqual() 297 Value AddValue(Value v1, Value v2) { return range_.AddValue(v1, v2); } in AddValue() 298 Value SubValue(Value v1, Value v2) { return range_.SubValue(v1, v2); } in SubValue() 299 Value MulValue(Value v1, Value v2) { return range_.MulValue(v1, v2); } in MulValue() 300 Value DivValue(Value v1, Value v2) { return range_.DivValue(v1, v2); } in DivValue() 301 Value MinValue(Value v1, Value v2) { return range_.MergeVal(v1, v2, true); } in MinValue() 302 Value MaxValue(Value v1, Value v2) { return range_.MergeVal(v1, v2, false); } in MaxValue() 758 Value v1, v2; in TEST_F() local 810 Value v1, v2; in TEST_F() local 869 Value v1, v2; in TEST_F() local [all …]
|
/aosp12/frameworks/rs/driver/runtime/ |
H A D | rs_cl.c | 383 float __attribute__((overloadable)) atan2(float v1, float v2) { in atan2() 418 float __attribute__((overloadable)) copysign(float v1, float v2) { in copysign() 484 float __attribute__((overloadable)) fdim(float v1, float v2) { in fdim() 504 float __attribute__((overloadable)) fmod(float v1, float v2) { in fmod() 525 float __attribute__((overloadable)) frexp(float v1, int* v2) { in frexp() 531 float __attribute__((overloadable)) hypot(float v1, float v2) { in hypot() 543 float __attribute__((overloadable)) ldexp(float v1, int v2) { in ldexp() 604 float __attribute__((overloadable)) modf(float v1, float *v2) { in modf() 627 float __attribute__((overloadable)) pow(float v1, float v2) { in pow() 1452 extern long __attribute__((overloadable)) min(long v1, long v2) { in min() [all …]
|
/aosp12/frameworks/base/tools/split-select/ |
H A D | Abi.cpp | 24 static Vector<Variant> buildVariants(Variant v1, Variant v2) { in buildVariants() 31 static Vector<Variant> buildVariants(Variant v1, Variant v2, Variant v3) { in buildVariants()
|
/aosp12/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/ |
H A D | Quaternion.java | 53 public void set(double[] v1, double[] v2) { in set() 61 public static double calcAngle(double[] v1, double[] v2) { in calcAngle() 67 public static double[] calcAxis(double[] v1, double[] v2) { in calcAxis() 120 double v1 = v[1]; in rotateVec() local
|
/aosp12/art/test/123-compiler-regressions-mt/src/ |
H A D | Main.java | 73 int v1 = vs1[0]; in thread2() local 113 int v1 = vs1[0]; in thread2() local
|
/aosp12/build/blueprint/proptools/ |
H A D | typeequal.go | 26 func typeEqual(v1, v2 reflect.Value) bool { argument
|
/aosp12/art/test/646-checker-simd-hadd/src/ |
H A D | HaddShort.java | 158 int v1 = b1[i] & 0xffff; in halving_add_unsigned() local 375 int v1 = b1[i] & 0xffff; in rounding_halving_add_unsigned() local 430 int v1 = b1[i] & 0xffff; in rounding_halving_add_unsigned_alt() local
|
H A D | HaddAltShort.java | 115 int v1 = b1[i] & 0xffff; in halving_add_unsigned() local 207 int v1 = b1[i] & 0xffff; in rounding_halving_add_unsigned() local
|
/aosp12/hardware/libhardware/modules/sensors/ |
H A D | multihal.cpp | 288 static bool halSupportDirectSensorReport(sensors_poll_device_1_t* v1) { in halSupportDirectSensorReport() 407 sensors_poll_device_1_t* v1 = this->get_v1_device_by_handle(handle); in batch() local 421 sensors_poll_device_1_t* v1 = this->get_v1_device_by_handle(handle); in flush() local 436 sensors_poll_device_1_t* v1 = get_primary_v1_device(); in inject_sensor_data() local 446 sensors_poll_device_1_t* v1 = this->get_v1_device_by_handle(data->sensor); in inject_sensor_data() local 468 sensors_poll_device_1_t* v1 = get_primary_v1_device(); in register_direct_channel() local 488 sensors_poll_device_1_t* v1 = get_primary_v1_device(); in config_direct_report() local
|
/aosp12/frameworks/layoutlib/bridge/tests/src/android/graphics/ |
H A D | Matrix_DelegateTest.java | 41 float[] v1 = new float[9]; in testCopyConstructor() local
|
/aosp12/system/security/keystore2/src/ |
H A D | permission.rs | 992 let v1 = key_perm_set![ in key_perm_set_include_subset_test() localVariable 1016 let v1 = key_perm_set![ in key_perm_set_include_equal_test() localVariable 1035 let v1 = key_perm_set![ in key_perm_set_include_overlap_test() localVariable 1056 let v1 = key_perm_set![KeyPerm::manage_blob(), KeyPerm::delete(), KeyPerm::grant(),]; in key_perm_set_include_no_overlap_test() localVariable
|
/aosp12/frameworks/base/libs/androidfw/tests/ |
H A D | TypeWrappers_test.cpp | 44 Res_value v1; in createTypeData() local
|
/aosp12/packages/apps/Camera2/src/com/android/camera/ui/motion/ |
H A D | InterpolateUtils.java | 35 public static float lerp(float v0, float v1, float t) { in lerp()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/data/ |
H A D | NewestFirstComparator.java | 73 private int compareDate(Date v1, Date v2) { in compareDate()
|
/aosp12/packages/apps/Settings/tests/componenttests/src/com/android/settings/testutils/ |
H A D | CommonUtils.java | 50 View v1 = activity.getWindow().getDecorView().getRootView(); in takeScreenshot() local
|