Home
last modified time | relevance | path

Searched defs:v1 (Results 1 – 25 of 49) sorted by relevance

12

/frameworks/rs/driver/runtime/arch/
Dgeneric.c118 extern float __attribute__((overloadable)) fmax(float v1, float v2) { in fmax()
122 extern float2 __attribute__((overloadable)) fmax(float2 v1, float2 v2) { in fmax()
129 extern float3 __attribute__((overloadable)) fmax(float3 v1, float3 v2) { in fmax()
137 extern float4 __attribute__((overloadable)) fmax(float4 v1, float4 v2) { in fmax()
146 extern float2 __attribute__((overloadable)) fmax(float2 v1, float v2) { in fmax()
153 extern float3 __attribute__((overloadable)) fmax(float3 v1, float v2) { in fmax()
161 extern float4 __attribute__((overloadable)) fmax(float4 v1, float v2) { in fmax()
170 extern float __attribute__((overloadable)) fmin(float v1, float v2) { in fmin()
178 extern float2 __attribute__((overloadable)) fmin(float2 v1, float2 v2) { in fmin()
185 extern float3 __attribute__((overloadable)) fmin(float3 v1, float3 v2) { in fmin()
[all …]
/frameworks/base/core/tests/coretests/src/android/view/
DInsetsVisibilitiesTest.java50 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
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
DUT_math_agree.java181 private float min(float v1, float v2) { in min()
185 private float[] min(float[] v1, float[] v2) { in min()
193 private byte min(byte v1, byte v2) { in min()
197 private byte[] min(byte[] v1, byte[] v2) { in min()
205 private short min(short v1, short v2) { in min()
209 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()
233 private long[] min(long[] v1, long[] v2) { in min()
[all …]
DUT_bug_char.java39 private byte min(byte v1, byte v2) { in min()
43 private byte[] min(byte[] v1, byte[] v2) { in min()
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
DUT_math_agree.java183 private float min(float v1, float v2) { in min()
187 private float[] min(float[] v1, float[] v2) { in min()
195 private byte min(byte v1, byte v2) { in min()
199 private byte[] min(byte[] v1, byte[] v2) { in min()
207 private short min(short v1, short v2) { in min()
211 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()
235 private long[] min(long[] v1, long[] v2) { in min()
[all …]
DUT_bug_char.java41 private byte min(byte v1, byte v2) { in min()
45 private byte[] min(byte[] v1, byte[] v2) { in min()
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
DUT_math_agree.java149 private float min(float v1, float v2) { in min()
152 private float[] min(float[] v1, float[] v2) { in min()
159 private byte min(byte v1, byte v2) { in min()
162 private byte[] min(byte[] v1, byte[] v2) { in min()
169 private short min(short v1, short v2) { in min()
172 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()
192 private long[] min(long[] v1, long[] v2) { in min()
[all …]
DUT_bug_char.java40 private byte min(byte v1, byte v2) { in min()
43 private byte[] min(byte[] v1, byte[] v2) { in min()
/frameworks/native/libs/math/tests/
Dvec_test.cpp48 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
/frameworks/rs/driver/runtime/
Drs_cl.c383 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()
496 float __attribute__((overloadable)) fma(float v1, float v2, float v3) { in fma()
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()
617 float __attribute__((overloadable)) nextafter(float v1, float v2) { in nextafter()
[all …]
/frameworks/base/tools/split-select/
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()
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
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()
120 double v1 = v[1]; in rotateVec() local
/frameworks/libs/net/common/tests/unit/src/com/android/testutils/
DDeviceInfoUtilsTest.java75 final DeviceInfoUtils.KVersion v1 = new DeviceInfoUtils.KVersion(4, 8, 1); in testVersion() local
/frameworks/base/libs/androidfw/tests/
DTypeWrappers_test.cpp44 Res_value v1; in createTypeData() local
/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/
DLockTargetStateAnalysis.java89 public BasicValue merge(BasicValue v1, BasicValue v2) { in merge()
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
DConvolve3x3.java43 private float blend(float v1, float v2, float p) { in blend()
DConvolve5x5.java43 private float blend(float v1, float v2, float p) { in blend()
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
DConvolve3x3.java36 private float blend(float v1, float v2, float p) { in blend()
DConvolve5x5.java36 private float blend(float v1, float v2, float p) { in blend()
/frameworks/native/libs/binder/tests/
DbinderParcelBenchmark.cpp72 std::vector<T> v1(elements); in BM_ParcelVector() local
/frameworks/base/tools/lint/checks/src/main/java/com/google/android/lint/
DEnforcePermissionDetector.kt68 val v1 = ConstantEvaluator.evaluate(context, attr1[i].value) in areAnnotationsEquivalent() constant
/frameworks/base/libs/hwui/utils/
DMathUtils.h92 inline static float lerp(float v1, float v2, float t) { return v1 + ((v2 - v1) * t); } in lerp()
/frameworks/base/libs/hwui/
DUvMapper.h98 void map(float& u1, float& v1, float& u2, float& v2) const { in map()
/frameworks/libs/net/common/testutils/devicetests/com/android/testutils/
DDeviceInfoUtils.java127 final Pair<Integer, Integer> v1 = getMajorMinorVersion(s1); in compareMajorMinorVersion() local
/frameworks/av/media/codecs/m4v_h263/dec/src/
Dconceal.cpp151 uint8 *y1, *y2, *u1, *u2, *v1, *v2; in CopyVopMB() local

12