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

1 2

  /external/tensorflow/tensorflow/contrib/resampler/kernels/
resampler_ops.h 20 #define __restrict__ __restrict macro
34 const T* __restrict__ data, const T* __restrict__ warp,
35 T* __restrict__ output, const int batch_size,
44 const T* __restrict__ data, const T* __restrict__ warp,
45 const T* __restrict__ grad_output, T* __restrict__ grad_data,
46 T* __restrict__ grad_warp, const int batch_size,
resampler_ops_gpu.cu.cc 39 __global__ void Resampler2DKernel(const T* __restrict__ data,
40 const T* __restrict__ warp,
41 T* __restrict__ output, const int batch_size,
114 const T* __restrict__ data, const T* __restrict__ warp,
115 T* __restrict__ output, const int batch_size,
145 const T* __restrict__ data, const T* __restrict__ warp,
146 const T* __restrict__ grad_output, T* __restrict__ grad_data
    [all...]
resampler_ops.cc 41 const T* __restrict__ data, const T* __restrict__ warp,
42 T* __restrict__ output, const int batch_size,
207 const T* __restrict__ data, const T* __restrict__ warp,
208 const T* __restrict__ grad_output, T* __restrict__ grad_data,
209 T* __restrict__ grad_warp, const int batch_size,
  /external/clang/test/Sema/
declspec.c 22 __restrict__ f* v2; // expected-error {{restrict requires a pointer or reference ('f' (aka 'int (void)') is invalid)}}
23 __restrict__ fptr v3; // expected-error {{pointer to function type 'f' (aka 'int (void)') may not be 'restrict' qualified}}
24 f *__restrict__ v4; // expected-error {{pointer to function type 'f' (aka 'int (void)') may not be 'restrict' qualified}}
types.c 89 int &*__restrict__ null_type_1; // expected-error {{expected identifier or '('}}
  /external/tensorflow/tensorflow/lite/kernels/internal/
tensor_utils.h 21 #define __restrict__ __restrict macro
81 const int8_t* __restrict__ matrix, const int m_rows, const int m_cols,
82 const int8_t* __restrict__ vectors, const float* scaling_factors,
83 int n_batch, float* __restrict__ result, int result_stride);
97 const int8_t* __restrict__ matrix, const uint8_t* ledger, const int m_rows,
98 const int m_cols, const int8_t* __restrict__ vectors,
99 const float* scaling_factors, int n_batch, float* __restrict__ result,
  /external/tensorflow/tensorflow/lite/kernels/internal/optimized/
tensor_utils_impl.h 23 #define __restrict__ __restrict macro
49 const int8_t* __restrict__ matrix, const int m_rows, const int m_cols,
50 const int8_t* __restrict__ vectors, const float* scaling_factors,
51 int n_batch, float* __restrict__ result, int result_stride);
53 const int8_t* __restrict__ matrix, const int m_rows, const int m_cols,
54 const int8_t* __restrict__ vectors, const float* scaling_factors,
55 int n_batch, float* __restrict__ result, int result_stride);
66 const int8_t* __restrict__ matrix, const uint8_t* ledger, const int m_rows,
67 const int m_cols, const int8_t* __restrict__ vectors,
68 const float* scaling_factors, int n_batch, float* __restrict__ result
    [all...]
neon_tensor_utils.h 36 const int8_t* __restrict__ matrix, const int m_rows, const int m_cols,
37 const int8_t* __restrict__ vectors, const float* scaling_factors,
38 int n_batch, float* __restrict__ result, int result_stride) {
52 const int8_t* __restrict__ matrix, const uint8_t* ledger, const int m_rows,
53 const int m_cols, const int8_t* __restrict__ vectors,
54 const float* scaling_factors, int n_batch, float* __restrict__ result,
neon_tensor_utils.cc 197 const int8_t* __restrict__ matrix, const int m_rows, const int m_cols,
199 float* __restrict__ result) {
314 const int8_t* __restrict__ matrix, const uint8_t* ledger, const int m_rows,
315 const int m_cols, const int8_t* __restrict__ vectors,
316 const float* scaling_factors, int n_batch, float* __restrict__ result,
380 const int8_t* __restrict__ matrix, const int m_rows, const int m_cols,
381 const int8_t* __restrict__ vectors, const float* scaling_factors,
382 int n_batch, float* __restrict__ result, int result_stride) {
554 const int8_t* __restrict__ matrix, const uint8_t* ledger, const int m_rows,
555 const int m_cols, const int8_t* __restrict__ vectors
    [all...]
  /external/tensorflow/tensorflow/lite/kernels/internal/reference/
portable_tensor_utils.h 23 #define __restrict__ __restrict macro
47 const int8_t* __restrict__ matrix, const int m_rows, const int m_cols,
48 const int8_t* __restrict__ vectors, const float* scaling_factors,
49 int n_batch, float* __restrict__ result, int result_stride);
56 const int8_t* __restrict__ matrix, const uint8_t* ledger, const int m_rows,
57 const int m_cols, const int8_t* __restrict__ vectors,
58 const float* scaling_factors, int n_batch, float* __restrict__ result,
170 const int8_t* __restrict__ matrix, const int m_rows, const int m_cols,
171 const int8_t* __restrict__ vector, const float* scaling_factors,
172 int n_batch, float* __restrict__ result, int result_stride)
    [all...]
portable_tensor_utils.cc 26 #define __restrict__ __restrict macro
89 const int8_t* __restrict__ matrix, const int m_rows, const int m_cols,
90 const int8_t* __restrict__ vectors, const float* scaling_factors,
91 int n_batch, float* __restrict__ result, int result_stride) {
144 const int8_t* __restrict__ matrix, const uint8_t* ledger, const int m_rows,
145 const int m_cols, const int8_t* __restrict__ vectors,
146 const float* scaling_factors, int n_batch, float* __restrict__ result,
  /external/clang/test/SemaCXX/
function-pointer-arguments.cpp 47 typedef void (*F)(const char * __restrict__, int);
err_reference_bind_drops_quals.cpp 3 #define restrict __restrict__
  /external/stressapptest/src/
stressapptest_config_android.h 228 __restrict__, even though the corresponding Sun C compiler ends up with
229 "#define restrict _Restrict" or "#define restrict __restrict__" in the
234 # define __restrict__ macro
stressapptest_config.h.in 222 __restrict__, even though the corresponding Sun C compiler ends up with
223 "#define restrict _Restrict" or "#define restrict __restrict__" in the
228 # define __restrict__
  /external/virglrenderer/src/gallium/include/
c99_compat.h 102 # define restrict __restrict__
  /external/tensorflow/tensorflow/core/kernels/
depthtospace_op_gpu.cu.cc 35 const dtype* __restrict__ input_ptr,
40 dtype* __restrict__ output_ptr) {
66 const dtype* __restrict__ input_ptr,
69 dtype* __restrict__ output_ptr) {
103 const dtype* __restrict__ input,
107 dtype* __restrict__ output) {
spacetodepth_op_gpu.cu.cc 65 const dtype* __restrict__ input_ptr,
68 dtype* __restrict__ output_ptr) {
103 const dtype* __restrict__ input,
107 dtype* __restrict__ output) {
  /external/libpng/
config.h.in 119 __restrict__, even though the corresponding Sun C compiler ends up with
120 "#define restrict _Restrict" or "#define restrict __restrict__" in the
125 # define __restrict__
  /external/mesa3d/include/
c99_compat.h 102 # define restrict __restrict__
  /external/speex/
config.h.in 186 __restrict__, even though the corresponding Sun C compiler ends up with
187 "#define restrict _Restrict" or "#define restrict __restrict__" in the
192 # define __restrict__
  /external/flac/include/share/
compat.h 83 #define flac_restrict __restrict__
  /external/pdfium/third_party/libopenjpeg20/
opj_includes.h 112 #define OPJ_RESTRICT __restrict__
  /external/skia/include/core/
SkPreConfig.h 57 #define SK_RESTRICT __restrict__
  /external/skqp/include/core/
SkPreConfig.h 57 #define SK_RESTRICT __restrict__

Completed in 1785 milliseconds

1 2