OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:uint3
(Results
1 - 15
of
15
) sorted by null
/external/clang/lib/Headers/
cuda_builtin_vars.h
28
struct
uint3
;
70
// threadIdx should be convertible to
uint3
(in fact in nvcc, it *is* a
71
//
uint3
). This function is defined after we pull in vector_types.h.
72
__attribute__((device)) operator
uint3
() const;
81
// blockIdx should be convertible to
uint3
(in fact in nvcc, it *is* a
82
//
uint3
). This function is defined after we pull in vector_types.h.
83
__attribute__((device)) operator
uint3
() const;
__clang_cuda_runtime_wrapper.h
271
// after we've pulled in the definition of
uint3
and dim3.
273
__device__ inline __cuda_builtin_threadIdx_t::operator
uint3
() const {
274
uint3
ret;
281
__device__ inline __cuda_builtin_blockIdx_t::operator
uint3
() const {
282
uint3
ret;
301
// mode, giving them their "proper" types of dim3 and
uint3
. This is
304
// dim3 and
uint3
to our builtin types. (Thankfully dim3 and
uint3
are only
307
#pragma push_macro("
uint3
")
309
#define
uint3
__cuda_builtin_threadIdx_
macro
[
all
...]
opencl-c.h
104
typedef uint
uint3
__attribute__((ext_vector_type(3)));
typedef
[
all
...]
/cts/tests/camera/src/android/hardware/camera2/cts/
means_yuvx_444_1d_to_single.rs
31
uint3
sum = { 0, 0, 0 };
means_yuvx_444_2d_to_1d.rs
35
uint3
sum = { 0, 0, 0 };
66
uint3
sum = { 0, 0, 0 };
/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestAbs.rs
63
uint3
__attribute__((kernel)) testAbsInt3Uint3(int3 inV) {
TestClz.rs
111
uint3
__attribute__((kernel)) testClzUint3Uint3(
uint3
inValue) {
TestConvert.rs
99
float3 __attribute__((kernel)) testConvertFloat3Uint3Float3(
uint3
inV) {
183
char3 __attribute__((kernel)) testConvertChar3Uint3Char3(
uint3
inV) {
267
uchar3 __attribute__((kernel)) testConvertUchar3Uint3Uchar3(
uint3
inV) {
351
short3 __attribute__((kernel)) testConvertShort3Uint3Short3(
uint3
inV) {
435
ushort3 __attribute__((kernel)) testConvertUshort3Uint3Ushort3(
uint3
inV) {
519
int3 __attribute__((kernel)) testConvertInt3Uint3Int3(
uint3
inV) {
531
uint3
__attribute__((kernel)) testConvertUint3Float3Uint3(float3 inV) {
543
uint3
__attribute__((kernel)) testConvertUint3Char3Uint3(char3 inV) {
555
uint3
__attribute__((kernel)) testConvertUint3Uchar3Uint3(uchar3 inV) {
567
uint3
__attribute__((kernel)) testConvertUint3Short3Uint3(short3 inV)
[
all
...]
TestClamp.rs
199
uint3
__attribute__((kernel)) testClampUint3Uint3Uint3Uint3(
uint3
inValue, unsigned int x) {
200
uint3
inMinValue = rsGetElementAt_uint3(gAllocInMinValue, x);
201
uint3
inMaxValue = rsGetElementAt_uint3(gAllocInMaxValue, x);
355
uint3
__attribute__((kernel)) testClampUint3UintUintUint3(
uint3
inValue, unsigned int x) {
TestMax.rs
204
uint3
__attribute__((kernel)) testMaxUint3Uint3Uint3(
uint3
inA, unsigned int x) {
205
uint3
inB = rsGetElementAt_uint3(gAllocInB, x);
TestMin.rs
204
uint3
__attribute__((kernel)) testMinUint3Uint3Uint3(
uint3
inA, unsigned int x) {
205
uint3
inB = rsGetElementAt_uint3(gAllocInB, x);
/external/spirv-llvm/lib/SPIRV/runtime/OpenCL/inc/
spirv_convert.h
[
all
...]
/external/skia/src/compute/skc/
types.h
175
typedef
uint3
skc_uint3;
/external/skqp/src/compute/skc/
types.h
175
typedef
uint3
skc_uint3;
/cts/tests/tests/renderscript/src/android/renderscript/cts/
kernel_input.rs
155
VEC3_TEST(
uint3
)
Completed in 930 milliseconds