OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:short8
(Results
1 - 4
of
4
) sorted by null
/external/clang/test/Sema/
vector-init.c
38
typedef short __attribute__((vector_size(16)))
short8
;
typedef
41
extern
short8
test3_helper(void);
43
short4 arr2[2] = { test3_helper(), test3_helper() }; // expected-error 2 {{initializing 'short4' (vector of 4 'short' values) with an expression of incompatible type '
short8
' (vector of 8 'short' values)}}
ext_vector_casts.c
6
typedef __attribute__(( ext_vector_type(8) )) short
short8
;
typedef
18
short8
ish8;
96
short8
vs = 0;
102
vs = 65536 + vs; // expected-warning {{implicit conversion from 'int' to '
short8
' (vector of 8 'short' values) changes value from 65536 to 0}}
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
type_traits_detail.hpp
102
template <> struct IsVec<
short8
> { enum {value = 1}; };
/external/opencv3/modules/core/include/opencv2/core/cuda/
vec_traits.hpp
85
struct __align__(16)
short8
89
static __host__ __device__ __forceinline__
short8
make_short8(short a0, short a1, short a2, short a3, short a4, short a5, short a6, short a7)
91
short8
val = {a0, a1, a2, a3, a4, a5, a6, a7};
Completed in 223 milliseconds