Lines Matching full:s2

103     VIS32 s1, s2;  in helper_fpmerge()  local
107 s2.l = src2; in helper_fpmerge()
111 d.VIS_B64(6) = s2.VIS_B32(3); in helper_fpmerge()
113 d.VIS_B64(4) = s2.VIS_B32(2); in helper_fpmerge()
115 d.VIS_B64(2) = s2.VIS_B32(1); in helper_fpmerge()
117 d.VIS_B64(0) = s2.VIS_B32(0); in helper_fpmerge()
227 VIS64 s1, s2; in helper_fcmple8() local
231 s2.ll = src2; in helper_fcmple8()
234 r |= (s1.VIS_SB64(i) <= s2.VIS_SB64(i)) << i; in helper_fcmple8()
246 VIS64 s1, s2; in helper_fcmpule8() local
250 s2.ll = src2; in helper_fcmpule8()
253 r |= (s1.VIS_B64(i) <= s2.VIS_B64(i)) << i; in helper_fcmpule8()
284 VIS64 s1, s2; in helper_fcmple16() local
288 s2.ll = src2; in helper_fcmple16()
291 r |= (s1.VIS_SW64(i) <= s2.VIS_SW64(i)) << i; in helper_fcmple16()
303 VIS64 s1, s2; in helper_fcmpule16() local
307 s2.ll = src2; in helper_fcmpule16()
310 r |= (s1.VIS_W64(i) <= s2.VIS_W64(i)) << i; in helper_fcmpule16()
334 VIS64 s1, s2; in helper_fcmple32() local
338 s2.ll = src2; in helper_fcmple32()
341 r |= (s1.VIS_SL64(i) <= s2.VIS_SL64(i)) << i; in helper_fcmple32()
353 VIS64 s1, s2; in helper_fcmpule32() local
357 s2.ll = src2; in helper_fcmpule32()
360 r |= (s1.VIS_L64(i) <= s2.VIS_L64(i)) << i; in helper_fcmpule32()
374 int s1, s2; in helper_pdist() local
377 s2 = (src2 >> (56 - (i * 8))) & 0xff; in helper_pdist()
380 s1 -= s2; in helper_pdist()
531 VIS64 r, s1, s2; in helper_fchksm16() local
534 s2.ll = src2; in helper_fchksm16()
537 r.VIS_W64(0) = do_fchksm16(s1.VIS_W64(0), s2.VIS_W64(0)); in helper_fchksm16()
538 r.VIS_W64(1) = do_fchksm16(s1.VIS_W64(1), s2.VIS_W64(1)); in helper_fchksm16()
539 r.VIS_W64(2) = do_fchksm16(s1.VIS_W64(2), s2.VIS_W64(2)); in helper_fchksm16()
540 r.VIS_W64(3) = do_fchksm16(s1.VIS_W64(3), s2.VIS_W64(3)); in helper_fchksm16()
552 VIS64 r, s1, s2; in helper_fmean16() local
555 s2.ll = src2; in helper_fmean16()
558 r.VIS_SW64(0) = do_fmean16(s1.VIS_SW64(0), s2.VIS_SW64(0)); in helper_fmean16()
559 r.VIS_SW64(1) = do_fmean16(s1.VIS_SW64(1), s2.VIS_SW64(1)); in helper_fmean16()
560 r.VIS_SW64(2) = do_fmean16(s1.VIS_SW64(2), s2.VIS_SW64(2)); in helper_fmean16()
561 r.VIS_SW64(3) = do_fmean16(s1.VIS_SW64(3), s2.VIS_SW64(3)); in helper_fmean16()
568 VIS64 r, s1, s2; in helper_fslas16() local
571 s2.ll = src2; in helper_fslas16()
575 int t = s1.VIS_SW64(i) << (s2.VIS_W64(i) % 16); in helper_fslas16()
586 VIS64 r, s1, s2; in helper_fslas32() local
589 s2.ll = src2; in helper_fslas32()
593 int64_t t = (int64_t)(int32_t)s1.VIS_L64(i) << (s2.VIS_L64(i) % 32); in helper_fslas32()