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

1 2 3 4 5 6 7

  /external/clang/test/CodeGen/
palignr.c 19 typedef __attribute__((vector_size(8))) int int2; typedef
22 int2 align5(int2 a, int2 b) { return _mm_alignr_pi8(a, b, 8); }
25 int2 align6(int2 a, int2 b) { return _mm_alignr_pi8(a, b, 9); }
28 int2 align7(int2 a, int2 b) { return _mm_alignr_pi8(a, b, 16);
    [all...]
  /external/spirv-llvm/lib/SPIRV/runtime/OpenCL/inc/
spirv.h 2 __attribute__((overloadable, always_inline)) int2 __spirv_ImageQuerySize(image1d_array_t img);
3 __attribute__((overloadable, always_inline)) int2 __spirv_ImageQuerySize(image2d_t img);
4 __attribute__((overloadable, always_inline)) int2 __spirv_ImageQuerySize(image2d_depth_t img);
9 __attribute__((overloadable, always_inline)) int2 __spirv_ImageQuerySizeLod(image1d_array_t img, int lod);
10 __attribute__((overloadable, always_inline)) int2 __spirv_ImageQuerySizeLod(image2d_t img, int lod);
11 __attribute__((overloadable, always_inline)) int2 __spirv_ImageQuerySizeLod(image2d_depth_t img, int lod);
  /frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
find_region.rs 42 int2 mImgOffset;
43 int2 mSearchOffset; // offset to the region we will search
45 rs_allocation mBorderCoords; // int2
48 int2 __attribute__((kernel)) toInt_ss(int2 in) { return in - mImgOffset; }
84 int2 size = roiBounds.zw - roiBounds.xy;
85 int2 minr = max((int2){0, 0}, roiBounds.xy - size * (1 + pad));
86 int2 maxr = min((int2){imgWidth, imgHeight}, roiBounds.zw + size * (1 + pad))
    [all...]
  /frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
find_region.rs 23 rs_allocation border_coords; //int2
30 int2 __attribute__((invoke_cpu)) findBestFit(rs_allocation poly, rs_allocation image) {
46 int2 fit_pos = gfindMin(fit, cx, cy, cwidth, cheight);
90 float3 __attribute__((kernel))extractBorder(int2 in) {
94 int2 __attribute__((kernel)) toInt(float2 in) {
95 int2 out = {(int)in.x, (int) in.y};
100 static int2 gfindMin(rs_allocation fit, int cx, int cy, int cwidth, int cheight) {
104 int2 fit_pos = {0, 0};
133 int2 fit_pos = gfindMin(fit, cx, cy, cwidth, cheight);
145 int2 coord = rsGetElementAt_int2(border_coords, i)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestIlogb.rs 27 int2 __attribute__((kernel)) testIlogbFloat2Int2(float2 inV) {
TestPown.rs 30 int2 inExponent = rsGetElementAt_int2(gAllocInExponent, x);
50 int2 inExponent = rsGetElementAt_int2(gAllocInExponent, x);
TestNativeRootn.rs 30 int2 inN = rsGetElementAt_int2(gAllocInN, x);
TestRootn.rs 30 int2 inN = rsGetElementAt_int2(gAllocInN, x);
TestAbs.rs 59 uint2 __attribute__((kernel)) testAbsInt2Uint2(int2 inV) {
TestFrexp.rs 32 int2 outExponent = 0;
TestRemquo.rs 35 int2 outQuotient = 0;
TestClz.rs 91 int2 __attribute__((kernel)) testClzInt2Int2(int2 inValue) {
TestLdexp.rs 30 int2 inExponent = rsGetElementAt_int2(gAllocInExponent, x);
TestLgamma.rs 48 int2 outSignOfGamma = 0;
  /frameworks/rs/tests/lldb/tests/harness/
RS_funs.py 38 uint2 abs(int2 v);
126 int2 clamp(int2 value, int min_value, int max_value);
127 int2 clamp(int2 value, int2 min_value, int2 max_value);
180 int2 clz(int2 value);
297 float2 frexp(float2 v, int2* exponent)
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
reduce_backward.rs 71 static void fMMOutConverter(int2 *result,
100 static void fz2Init(int2 *accum) { accum->x = accum->y = -1; }
102 static void fz2Accum(int2 *accum,
112 static void fz2Combine(int2 *accum, const int2 *accum2) {
159 static void modeOutConvert(int2 *result, const Histogram *h) {
reduce.rs 153 static void fMMOutConverter(int2 *result,
182 static void fz2Init(int2 *accum) { accum->x = accum->y = -1; }
184 static void fz2Accum(int2 *accum,
194 static void fz2Combine(int2 *accum, const int2 *accum2) {
241 static void modeOutConvert(int2 *result, const Histogram *h) {
  /external/swiftshader/src/OpenGL/compiler/
Initialize.cpp 34 TType *int2 = new TType(EbtInt, 2); local
329 symbolTable.insertBuiltIn(ESSL3_BUILTINS, int2, "textureSize", gsampler2D, int1);
331 symbolTable.insertBuiltIn(ESSL3_BUILTINS, int2, "textureSize", gsamplerCube, int1);
333 symbolTable.insertBuiltIn(ESSL3_BUILTINS, int2, "textureSize", sampler2DShadow, int1);
334 symbolTable.insertBuiltIn(ESSL3_BUILTINS, int2, "textureSize", samplerCubeShadow, int1);
344 symbolTable.insertBuiltIn(ESSL3_BUILTINS, gvec4, "textureOffset", gsampler2D, float2, int2);
346 symbolTable.insertBuiltIn(ESSL3_BUILTINS, float1, "textureOffset", sampler2DShadow, float3, int2);
347 symbolTable.insertBuiltIn(ESSL3_BUILTINS, gvec4, "textureOffset", gsampler2DArray, float3, int2);
351 symbolTable.insertBuiltIn(ESSL3_BUILTINS, gvec4, "textureOffset", gsampler2D, float2, int2, float1);
353 symbolTable.insertBuiltIn(ESSL3_BUILTINS, float1, "textureOffset", sampler2DShadow, float3, int2, float1)
    [all...]
  /external/parameter-framework/upstream/xmlserializer/
XmlSerializingContext.cpp 63 // xmlErrorPtr->int2 contains the column; see xmlerror.h
65 std::to_string(error->int2) + ": " + error->message;
  /external/clang/test/SemaTemplate/
ext-vector-type.cpp 85 typedef int __attribute__((ext_vector_type(2))) int2; typedef in namespace:Deduction
90 int array0[X0<int2>::value == 0? 1 : -1];
  /frameworks/base/core/tests/coretests/src/android/database/
CursorWindowTest.java 87 long int2 = window.getLong(0, 1); local
88 assertEquals(int1, int2);
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicInlines.h 41 typedef int int2 __attribute__((ext_vector_type(2))); typedef
103 static inline int2 clamp(int2 amount, int low, int high) {
104 int2 r;
  /frameworks/rs/tests/cpp_api/typecheck/
kernels.rs 60 int2 i2;
61 int2 i2i = {1, 2};
  /frameworks/rs/tests/lldb/tests/testcases/
test_read_global.py 94 '(int2) int2_global = (999, -1111)',
198 ['(int2)', '(999, -1111)'])
test_read_local.py 93 '(int2) int2_local = (999, -1111)',
197 ['(int2)', '(999, -1111)'])

Completed in 265 milliseconds

1 2 3 4 5 6 7