Searched refs:fmax (Results 1 - 14 of 14) sorted by relevance

/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A Dbwfilter.rs33 imageMax = fmax(sr,imageMax);
48 localMax = fmax(g,b);
49 localMax = fmax(r,localMax);
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A Dbwfilter.rs33 imageMax = fmax(sr,imageMax);
48 localMax = fmax(g,b);
49 localMax = fmax(r,localMax);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A Dbwfilter.rs33 imageMax = fmax(sr,imageMax);
48 localMax = fmax(g,b);
49 localMax = fmax(r,localMax);
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp562 mBounds->right = fmax(mBounds->right, x3);
563 mBounds->bottom = fmax(mBounds->bottom, y1);
580 mBounds->right = fmax(mBounds->right, fmax(x1, fmax(x2, fmax(x3, x4))));
581 mBounds->bottom = fmax(mBounds->bottom, fmax(y1, fmax(y2, fmax(y
[all...]
H A DPatch.cpp139 float v2 = fmax(0.0f, stepY - vOffset) / bitmapHeight;
191 float u2 = fmax(0.0f, stepX - uOffset) / bitmapWidth;
H A DPathCache.cpp98 const float pathWidth = fmax(bounds.width(), 1.0f);
99 const float pathHeight = fmax(bounds.height(), 1.0f);
104 offset = (int) floorf(fmax(paint->getStrokeWidth(), 1.0f) * 1.5f + 0.5f);
H A DOpenGLRenderer.cpp2336 float u1 = fmax(0.0f, srcLeft / width);
2337 float v1 = fmax(0.0f, srcTop / height);
3284 const float strokeWidth = fmax(textSize * kStdUnderline_Thickness, 1.0f);
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_math_agree.java268 // fmax reference functions
269 private float fmax(float v1, float v2) { method in class:UT_math_agree
272 private float[] fmax(float[] v1, float[] v2) { method in class:UT_math_agree
275 private float[] fmax(float[] v1, float v2) { method in class:UT_math_agree
507 // Set results for fmax
508 s.set_fmax_rand_f1_f1(fmax(rand_f1_0, rand_f1_1));
509 s.set_fmax_rand_f2_f2(pack_f2(fmax(rand_f2_0, rand_f2_1)));
510 s.set_fmax_rand_f3_f3(pack_f3(fmax(rand_f3_0, rand_f3_1)));
511 s.set_fmax_rand_f4_f4(pack_f4(fmax(rand_f4_0, rand_f4_1)));
512 s.set_fmax_rand_f2_f1(pack_f2(fmax(rand_f2_
[all...]
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DUT_math_agree.java268 // fmax reference functions
269 private float fmax(float v1, float v2) { method in class:UT_math_agree
272 private float[] fmax(float[] v1, float[] v2) { method in class:UT_math_agree
275 private float[] fmax(float[] v1, float v2) { method in class:UT_math_agree
507 // Set results for fmax
508 s.set_fmax_rand_f1_f1(fmax(rand_f1_0, rand_f1_1));
509 s.set_fmax_rand_f2_f2(pack_f2(fmax(rand_f2_0, rand_f2_1)));
510 s.set_fmax_rand_f3_f3(pack_f3(fmax(rand_f3_0, rand_f3_1)));
511 s.set_fmax_rand_f4_f4(pack_f4(fmax(rand_f4_0, rand_f4_1)));
512 s.set_fmax_rand_f2_f1(pack_f2(fmax(rand_f2_
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuRuntimeMathFuncs.cpp56 IMPORT_F32_FN_F32_F32(fmax)
/frameworks/rs/driver/runtime/arch/
H A Dgeneric.c114 extern float __attribute__((overloadable)) fmax(float v1, float v2) { function
118 extern float2 __attribute__((overloadable)) fmax(float2 v1, float2 v2) { function
125 extern float3 __attribute__((overloadable)) fmax(float3 v1, float3 v2) { function
133 extern float4 __attribute__((overloadable)) fmax(float4 v1, float4 v2) { function
142 extern float2 __attribute__((overloadable)) fmax(float2 v1, float v2) { function
149 extern float3 __attribute__((overloadable)) fmax(float3 v1, float v2) { function
157 extern float4 __attribute__((overloadable)) fmax(float4 v1, float v2) { function
452 return fmax(v1, v2);
456 return fmax(v1, v2);
460 return fmax(v
[all...]
/frameworks/rs/driver/runtime/
H A Drs_cl.c17 extern float __attribute__((overloadable)) fmax(float v, float v2);
18 extern float2 __attribute__((overloadable)) fmax(float2 v, float v2);
19 extern float3 __attribute__((overloadable)) fmax(float3 v, float v2);
20 extern float4 __attribute__((overloadable)) fmax(float4 v, float v2);
1197 v2 = fmax(v2, -125.f);
1202 v2 = fmax(v2, -125.f);
1207 v2 = fmax(v2, -125.f);
1212 v2 = fmax(v2, -125.f);
/frameworks/rs/scriptc/
H A Drs_cl.rsh449 extern float __attribute__((const, overloadable)) fmax(float x, float y);
450 FN_FUNC_FN_FN(fmax);
451 FN_FUNC_FN_F(fmax);
/frameworks/base/core/jni/android/graphics/
H A DCanvas.cpp810 float strokeWidth = fmax(textSize * kStdUnderline_Thickness, 1.0f);

Completed in 218 milliseconds