Lines Matching refs:vals
69 static SkNf Load(const float vals[2]) { return vld1_f32(vals); } in Load()
72 void store(float vals[2]) const { vst1_f32(vals, fVec); } in store()
153 static SkNf Load(const double vals[2]) { return vld1q_f64(vals); } in Load()
156 void store(double vals[2]) const { vst1q_f64(vals, fVec); } in store()
216 static SkNi Load(const int vals[4]) { return vld1q_s32(vals); } in Load()
219 void store(int vals[4]) const { vst1q_s32(vals, fVec); } in store()
244 static SkNf Load(const float vals[4]) { return vld1q_f32(vals); } in Load()
247 void store(float vals[4]) const { vst1q_f32(vals, fVec); } in store()
316 static SkNi Load(const uint16_t vals[8]) { return vld1q_u16(vals); } in Load()
323 void store(uint16_t vals[8]) const { vst1q_u16(vals, fVec); } in store()
349 static SkNi Load(const uint8_t vals[16]) { return vld1q_u8(vals); } in Load()
358 void store(uint8_t vals[16]) const { vst1q_u8(vals, fVec); } in store()