HomeSort by relevance Sort by last modified time
    Searched refs:float2 (Results 1 - 25 of 289) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/Inputs/
chain-ext_vector1.h 3 typedef __attribute__((ext_vector_type(2))) float float2; typedef
  /external/opencv3/modules/cudaarithm/src/cuda/
mul_spectrums.cu 64 __device__ __forceinline__ float real(const float2& val)
69 __device__ __forceinline__ float imag(const float2& val)
74 __device__ __forceinline__ float2 cmul(const float2& a, const float2& b)
80 __device__ __forceinline__ float2 conj(const float2& a)
85 struct comlex_mul : binary_function<float2, float2, float2>
    [all...]
  /external/clang/test/PCH/
ext_vector.h 3 typedef __attribute__((ext_vector_type(2))) float float2; typedef
  /external/opencv3/modules/core/src/opencl/
mulspectrums.cl 46 inline float2 cmulf(float2 a, float2 b)
48 return (float2)(mad(a.x, b.x, - a.y * b.y), mad(a.x, b.y, a.y * b.x));
51 inline float2 conjf(float2 a)
53 return (float2)(a.x, - a.y);
66 int src1_index = mad24(y0, src1_step, mad24(x, (int)sizeof(float2), src1_offset));
67 int src2_index = mad24(y0, src2_step, mad24(x, (int)sizeof(float2), src2_offset));
68 int dst_index = mad24(y0, dst_step, mad24(x, (int)sizeof(float2), dst_offset))
    [all...]
  /external/clang/test/SemaCXX/
err_init_conversion_failed.cpp 39 typedef float float2 __attribute__((ext_vector_type(2))); typedef
42 void test14(const float2 in, const float2 out) {
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestFastNormalize.rs 27 float2 __attribute__((kernel)) testFastNormalizeFloat2Float2(float2 inV) {
TestHalfRecip.rs 27 float2 __attribute__((kernel)) testHalfRecipFloat2Float2(float2 inV) {
TestHalfRsqrt.rs 27 float2 __attribute__((kernel)) testHalfRsqrtFloat2Float2(float2 inV) {
TestHalfSqrt.rs 27 float2 __attribute__((kernel)) testHalfSqrtFloat2Float2(float2 inV) {
TestNextafter.rs 29 float2 __attribute__((kernel)) testNextafterFloat2Float2Float2(float2 inV, unsigned int x) {
30 float2 inTarget = rsGetElementAt_float2(gAllocInTarget, x);
TestModf.rs 31 float2 __attribute__((kernel)) testModfFloat2Float2Float2(float2 inV, unsigned int x) {
32 float2 outIntegralPart = 0;
33 float2 out = modf(inV, &outIntegralPart);
TestRemquo.rs 33 float2 __attribute__((kernel)) testRemquoFloat2Float2Int2Float2(float2 inNumerator, unsigned int x) {
34 float2 inDenominator = rsGetElementAt_float2(gAllocInDenominator, x);
36 float2 out = remquo(inNumerator, inDenominator, &outQuotient);
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
copy_test.rs 29 float2 __attribute((kernel)) copyFloat2(float2 i) {
  /frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
copy_test.rs 29 float2 __attribute((kernel)) copyFloat2(float2 i) {
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
copy_test.rs 29 float2 __attribute((kernel)) copyFloat2(float2 i) {
  /external/clang/test/Sema/
ext_vector_components.c 3 typedef __attribute__(( ext_vector_type(2) )) float float2; typedef
11 float2 vec2, vec2_2;
17 vec2.z; // expected-error {{vector component access exceeds type 'float2'}}
18 vec2.xyzw; // expected-error {{vector component access exceeds type 'float2'}}
36 vec4.xy.w; // expected-error {{vector component access exceeds type 'float2'}}
44 float2 lo(float3 x) { return x.lo; }
45 float2 hi(float3 x) { return x.hi; }
46 float2 ev(float3 x) { return x.even; }
47 float2 od(float3 x) { return x.odd; }
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
rasterize.rs 29 static float2 slope[12];
31 static float2 p1[12];
32 static float2 p2[12];
33 static float2 p3[12];
35 float2 d12[12];
36 float2 d23[12];
37 float2 d31[12];
99 float2 __attribute__ ((kernel)) render_z(uint32_t x, uint32_t y) {
100 float2 out = (float2) {FLOAT_MAX,-FLOAT_MAX}
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
fisheye.rsh 20 static float2 center, neg_center, inv_dimensions, axis_scale;
31 axis_scale = (float2)1.f;
47 const float2 inCoord = {(float)x, (float)y};
48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
49 const float2 scaledCoord = axis_scale * coord;
54 const float2 new_coord = mad(coord, scalar, center);
fisheye_approx.rsh 20 static float2 center, neg_center, inv_dimensions, axis_scale;
31 axis_scale = (float2)1.f;
47 const float2 inCoord = {(float)x, (float)y};
48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
49 const float2 scaledCoord = axis_scale * coord;
54 const float2 new_coord = mad(coord, scalar, center);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
fisheye.rsh 20 static float2 center, neg_center, inv_dimensions, axis_scale;
31 axis_scale = (float2)1.f;
47 const float2 inCoord = {(float)x, (float)y};
48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
49 const float2 scaledCoord = axis_scale * coord;
54 const float2 new_coord = mad(coord, scalar, center);
fisheye_approx.rsh 20 static float2 center, neg_center, inv_dimensions, axis_scale;
31 axis_scale = (float2)1.f;
47 const float2 inCoord = {(float)x, (float)y};
48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
49 const float2 scaledCoord = axis_scale * coord;
54 const float2 new_coord = mad(coord, scalar, center);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
fisheye.rsh 20 static float2 center, neg_center, inv_dimensions, axis_scale;
31 axis_scale = (float2)1.f;
47 const float2 inCoord = {(float)x, (float)y};
48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
49 const float2 scaledCoord = axis_scale * coord;
54 const float2 new_coord = mad(coord, scalar, center);
fisheye_approx.rsh 20 static float2 center, neg_center, inv_dimensions, axis_scale;
31 axis_scale = (float2)1.f;
47 const float2 inCoord = {(float)x, (float)y};
48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
49 const float2 scaledCoord = axis_scale * coord;
54 const float2 new_coord = mad(coord, scalar, center);
  /frameworks/rs/java/tests/ScriptGroupTest/src/com/android/rs/sgtest/
fisheye_approx_f.rsh 20 static float2 center, neg_center, inv_dimensions, axis_scale;
33 axis_scale = (float2)1.f;
49 const float2 inCoord = {(float)x, (float)y};
50 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
51 const float2 scaledCoord = axis_scale * coord;
56 const float2 new_coord = mad(coord, scalar, center);
vignette_approx_f.rsh 17 static float2 neg_center, axis_scale, inv_dimensions;
28 axis_scale = (float2)1.f;
49 const float2 inCoord = {(float)x, (float)y};
50 const float2 coord = mad(inCoord, inv_dimensions, neg_center);

Completed in 641 milliseconds

1 2 3 4 5 6 7 8 91011>>