/external/libcxx/test/utilities/intseq/intseq.intseq/ |
integer_seq.pass.cpp | 31 using ushort2 = std::integer_sequence<unsigned short, 4, 6>; 41 static_assert ( std::is_same<ushort2::value_type, unsigned short>::value, "ushort2 type wrong" ); 42 static_assert ( ushort2::size() == 2, "ushort2 size wrong" );
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/intseq/intseq.intseq/ |
integer_seq.pass.cpp | 31 using ushort2 = std::integer_sequence<unsigned short, 4, 6>; 41 static_assert ( std::is_same<ushort2::value_type, unsigned short>::value, "ushort2 type wrong" ); 42 static_assert ( ushort2::size() == 2, "ushort2 size wrong" );
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
TestAbs.rs | 43 ushort2 __attribute__((kernel)) testAbsShort2Ushort2(short2 inValue) {
|
TestClz.rs | 75 ushort2 __attribute__((kernel)) testClzUshort2Ushort2(ushort2 inValue) {
|
TestConvert.rs | 71 float2 __attribute__((kernel)) testConvertFloat2Ushort2Float2(ushort2 inV) { 155 char2 __attribute__((kernel)) testConvertChar2Ushort2Char2(ushort2 inV) { 239 uchar2 __attribute__((kernel)) testConvertUchar2Ushort2Uchar2(ushort2 inV) { 323 short2 __attribute__((kernel)) testConvertShort2Ushort2Short2(ushort2 inV) { 359 ushort2 __attribute__((kernel)) testConvertUshort2Float2Ushort2(float2 inV) { 371 ushort2 __attribute__((kernel)) testConvertUshort2Char2Ushort2(char2 inV) { 383 ushort2 __attribute__((kernel)) testConvertUshort2Uchar2Ushort2(uchar2 inV) { 395 ushort2 __attribute__((kernel)) testConvertUshort2Short2Ushort2(short2 inV) { 407 ushort2 __attribute__((kernel)) testConvertUshort2Ushort2Ushort2(ushort2 inV) [all...] |
TestMax.rs | 110 ushort2 __attribute__((kernel)) testMaxUshort2Ushort2Ushort2(ushort2 inV1, unsigned int x) { 111 ushort2 inV2 = rsGetElementAt_ushort2(gAllocInV2, x);
|
TestMin.rs | 110 ushort2 __attribute__((kernel)) testMinUshort2Ushort2Ushort2(ushort2 inV1, unsigned int x) { 111 ushort2 inV2 = rsGetElementAt_ushort2(gAllocInV2, x);
|
TestClamp.rs | 145 ushort2 __attribute__((kernel)) testClampUshort2Ushort2Ushort2Ushort2(ushort2 inValue, unsigned int x) { 146 ushort2 inMinValue = rsGetElementAt_ushort2(gAllocInMinValue, x); 147 ushort2 inMaxValue = rsGetElementAt_ushort2(gAllocInMaxValue, x); 313 ushort2 __attribute__((kernel)) testClampUshort2UshortUshortUshort2(ushort2 inValue, unsigned int x) {
|
/frameworks/rs/tests/typecheck/ |
kernels.rs | 51 ushort2 us2; 52 ushort2 us2i = {1, 2};
|
/frameworks/rs/scriptc/ |
rs_debug.rsh | 191 rsDebug(const char *, ushort2);
|
rs_allocation.rsh | 187 GET_ELEMENT_AT(ushort2) 322 SET_ELEMENT_AT(ushort2) 402 VOP(ushort2)
|
rs_core_math.rsh | 72 extern ushort2 __attribute__((const, overloadable))abs(short2 value); 867 extern ushort2 __attribute__((const, overloadable))clamp(ushort2 value, ushort2 min_value, ushort2 max_value); [all...] |
/prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/scriptc/ |
rs_debug.rsh | 191 rsDebug(const char *, ushort2);
|
rs_allocation.rsh | 187 GET_ELEMENT_AT(ushort2) 322 SET_ELEMENT_AT(ushort2)
|
rs_types.rsh | 244 typedef ushort ushort2 __attribute__((ext_vector_type(2)));
|
/prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/scriptc/ |
rs_debug.rsh | 191 rsDebug(const char *, ushort2);
|
rs_allocation.rsh | 187 GET_ELEMENT_AT(ushort2) 322 SET_ELEMENT_AT(ushort2)
|
rs_types.rsh | 244 typedef ushort ushort2 __attribute__((ext_vector_type(2)));
|
/prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/scriptc/ |
rs_debug.rsh | 191 rsDebug(const char *, ushort2);
|
rs_allocation.rsh | 187 GET_ELEMENT_AT(ushort2) 322 SET_ELEMENT_AT(ushort2)
|
/prebuilts/sdk/renderscript/include/ |
rs_debug.rsh | 191 rsDebug(const char *, ushort2);
|
rs_allocation.rsh | 187 GET_ELEMENT_AT(ushort2) 322 SET_ELEMENT_AT(ushort2) 403 VOP(ushort2)
|
rs_core_math.rsh | 72 extern ushort2 __attribute__((const, overloadable))abs(short2 value); 867 extern ushort2 __attribute__((const, overloadable))clamp(ushort2 value, ushort2 min_value, ushort2 max_value); [all...] |
/frameworks/rs/cpu_ref/ |
rsCpuRuntimeStubs.cpp | 47 typedef unsigned short ushort2 __attribute__((ext_vector_type(2))); typedef 157 static void SC_debugUS2(const char *s, const ushort2 *c) { 158 ALOGD("ushort2 %s {%hu, %hu} 0x%hx 0x%hx", s, c->x, c->y, c->x, c->y);
|
/frameworks/rs/driver/runtime/arch/ |
generic.c | 343 extern ushort2 __attribute__((overloadable)) max(ushort2 v1, ushort2 v2) { 344 ushort2 r; 544 extern ushort2 __attribute__((overloadable)) min(ushort2 v1, ushort2 v2) { 545 ushort2 r;
|