Home | History | Annotate | Download | only in internal

Lines Matching refs:Row

50   OutputType Eval(InputType input, int row, int col) const {
55 impl_int32x4.Eval(input.data.val[i], row + 4 * i, col);
102 OutputType Eval(InputType input, int row, int col) const {
107 vld1q_s32(output_stage.result_mult_int.data(row));
109 vld1q_s32(output_stage.result_offset.data(row));
123 OutputStageQuantizeDownInt32ToUint8ScalePC<VectorShape::Row>,
127 typedef OutputStageQuantizeDownInt32ToUint8ScalePC<VectorShape::Row>
132 OutputType Eval(InputType input, int row, int col) const {
139 vld1q_s32(output_stage.result_offset.data(row));
200 OutputType Eval(InputType input, int row, int col) const {
202 if (VectorType::kShape == VectorShape::Row) {
205 bias = vld1q_s32(output_stage.bias_vector.data(row));
244 inline void StoreFinalOutput(NEONFragmentUint8x4x1 value, DstType* dst, int row,
246 vst1_lane_u8(dst->data(row + 0, col), value, 0);
247 vst1_lane_u8(dst->data(row + 1, col), value, 1);
248 vst1_lane_u8(dst->data(row + 2, col), value, 2);
249 vst1_lane_u8(dst->data(row + 3, col), value, 3);
255 int row, int col) {
256 vst1q_u8(dst->data(row, col), value);
262 inline void StoreFinalOutput(NEONFragmentInt32x4x1 value, DstType* dst, int row,
264 vst1q_s32(dst->data(row, col), value);
271 int row, int col) {
273 vst1q_s32(dst->data(row + 4 * i, col), value.data.val[i]);