Searched refs:array_ptr (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/SemaTemplate/
H A Dtemp_class_spec_neg.cpp34 template< int X, int (*array_ptr)[X] > class A2 {}; // expected-note{{here}}
/external/clang/test/SemaCXX/
H A Darray-bounds.cpp72 int (*array_ptr)[2];
73 (*array_ptr)[3] = 1; // expected-warning {{array index 3 is past the end of the array (which contains 2 elements)}}
/external/tensorflow/tensorflow/contrib/lite/toco/tflite/
H A Dexport.cc271 for (const Array* array_ptr : buffers_to_write) {
272 const Array& array = *array_ptr;
/external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/
H A Doptimized_ops.h240 float* array_ptr = array_data; local
241 float* array_end_ptr = array_ptr + array_size;
244 for (; array_ptr != array_end_ptr; array_ptr += bias_size) {
251 auto a0 = vld1q_f32(array_ptr + i);
252 auto a1 = vld1q_f32(array_ptr + i + 4);
253 auto a2 = vld1q_f32(array_ptr + i + 8);
254 auto a3 = vld1q_f32(array_ptr + i + 12);
267 vst1q_f32(array_ptr + i, x0);
268 vst1q_f32(array_ptr
[all...]

Completed in 215 milliseconds