Home
last modified time | relevance | path

Searched defs:v2 (Results 1 – 25 of 97) sorted by relevance

1234

/aosp12/frameworks/rs/driver/runtime/arch/
H A Dgeneric.c231 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 DUT_math_agree.java149 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 DUT_bug_char.java40 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 DUT_math_agree.java181 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 DUT_bug_char.java39 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 DUT_math_agree.java183 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 DUT_bug_char.java41 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 DInsetsVisibilitiesTest.java51 final InsetsVisibilities v2 = new InsetsVisibilities(); in testEquals() local
75 final InsetsVisibilities v2 = new InsetsVisibilities(); in testSet() local
96 final InsetsVisibilities v2 = new InsetsVisibilities(v1); in testCopyConstructor() local
107 final InsetsVisibilities v2 = new InsetsVisibilities(); in testGetterAndSetter() local
/aosp12/frameworks/rs/driver/runtime/
H A Drs_cl.c383 float __attribute__((overloadable)) atan2(float v1, float v2) { in atan2()
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()
543 float __attribute__((overloadable)) ldexp(float v1, int v2) { in ldexp()
627 float __attribute__((overloadable)) pow(float v1, float v2) { in pow()
1364 float2 v2 = {native_log2(v.x), native_log2(v.y)}; in native_log2() local
1404 float v2 = native_log2(v); in native_powr() local
1409 float2 v2 = native_log2(v); in native_powr() local
1414 float3 v2 = native_log2(v); in native_powr() local
[all …]
/aosp12/art/compiler/optimizing/
H A Dnodes_vector_test.cc137 HVecOperation* v2 = new (GetAllocator()) in TEST_F() local
213 HVecLoad* v2 = new (GetAllocator()) HVecLoad(GetAllocator(), in TEST_F() local
304 HVecHalvingAdd* v2 = new (GetAllocator()) HVecHalvingAdd( in TEST_F() local
366 HVecMultiplyAccumulate* v2 = new (GetAllocator()) HVecMultiplyAccumulate( in TEST_F() local
394 HVecReduce* v2 = new (GetAllocator()) HVecReduce( in TEST_F() local
H A Dinduction_var_range_test.cc43 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/base/tools/split-select/
H A DAbi.cpp24 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 DQuaternion.java53 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()
121 double v2 = v[2]; in rotateVec() local
/aosp12/art/test/123-compiler-regressions-mt/src/
H A DMain.java74 int v2 = vs2[0]; in thread2() local
114 int v2 = vs2[0]; in thread2() local
/aosp12/art/test/646-checker-simd-hadd/src/
H A DHaddShort.java159 int v2 = b2[i] & 0xffff; in halving_add_unsigned() local
376 int v2 = b2[i] & 0xffff; in rounding_halving_add_unsigned() local
431 int v2 = b2[i] & 0xffff; in rounding_halving_add_unsigned_alt() local
H A DHaddAltShort.java116 int v2 = b2[i] & 0xffff; in halving_add_unsigned() local
208 int v2 = b2[i] & 0xffff; in rounding_halving_add_unsigned() local
/aosp12/frameworks/layoutlib/bridge/tests/src/android/graphics/
H A DMatrix_DelegateTest.java42 float[] v2 = new float[9]; in testCopyConstructor() local
/aosp12/system/security/keystore2/src/
H A Dpermission.rs1004 let v2 = key_perm_set![ in key_perm_set_include_subset_test() localVariable
1023 let v2 = key_perm_set![ in key_perm_set_include_equal_test() localVariable
1043 let v2 = key_perm_set![ in key_perm_set_include_overlap_test() localVariable
1057 let v2 = key_perm_set![ in key_perm_set_include_no_overlap_test() localVariable
/aosp12/frameworks/native/libs/math/tests/
H A Dvec_test.cpp54 vec4 v2(1, 2, 3, 4); in TEST_F() local
211 vec4 v2(v0 + v1); in TEST_F() local
/aosp12/frameworks/base/libs/androidfw/tests/
H A DTypeWrappers_test.cpp57 Res_value v2; in createTypeData() local
/aosp12/packages/apps/Camera2/src/com/android/camera/data/
H A DNewestFirstComparator.java73 private int compareDate(Date v1, Date v2) { in compareDate()
/aosp12/art/compiler/utils/
H A Dswap_space_test.cc51 SwapVector<int32_t> v2(alloc); in SwapTest() local
/aosp12/system/memory/libmemtrack/
H A Dmemtrack_test.cpp65 size_t v2; in main() local
/aosp12/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/
H A DLockTargetStateAnalysis.java87 public BasicValue merge(BasicValue v1, BasicValue v2) { in merge()
/aosp12/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A DConvolve3x3.java36 private float blend(float v1, float v2, float p) { in blend()

1234