Home | History | Annotate | Download | only in soft

Lines Matching refs:array

113     inline void read_interpolate_array (Float2 *pos, O *array) const;
116 inline void read_array_no_check (const int32_t x, const int32_t y, T *array) const {
119 memcpy (array, t_ptr, sizeof (T) * N);
123 inline void read_array_no_check (const int32_t x, const int32_t y, O *array) const {
127 array[i] = t_ptr[i];
132 inline void read_array (int32_t x, int32_t y, T *array) const {
136 read_array_no_check<N> (x, y, array);
141 array[i] = t_ptr[x];
147 inline void read_array (int32_t x, int32_t y, O *array) const {
153 array[i] = t_ptr[x];
171 inline void write_array_no_check (int32_t x, int32_t y, const T *array) {
173 memcpy (t_ptr + x, array, sizeof (T) * N);
177 inline void write_array (int32_t x, int32_t y, const T *array) {
182 write_array_no_check<N> (x, y, array);
187 t_ptr[x] = array[i];
376 SoftImage<T>::read_interpolate_array (Float2 *pos, O *array) const
379 array[i] = read_interpolate_data<O> (pos[i].x, pos[i].y);