Searched refs:SignedSaturate (Results 1 – 3 of 3) sorted by relevance
/external/vixl/src/vixl/a64/ |
D | simulator-a64.cc | 2451 case NEON_SQABS: abs(vf, rd, rn).SignedSaturate(vf); break; in VisitNEON2RegMisc() 2452 case NEON_SQNEG: neg(vf, rd, rn).SignedSaturate(vf); break; in VisitNEON2RegMisc() 2649 case NEON_SQADD: add(vf, rd, rn, rm).SignedSaturate(vf); break; in VisitNEON3Same() 2651 case NEON_SQSUB: sub(vf, rd, rn, rm).SignedSaturate(vf); break; in VisitNEON3Same() 2655 case NEON_SQSHL: sshl(vf, rd, rn, rm).SignedSaturate(vf); break; in VisitNEON3Same() 2662 sshl(vf, rd, rn, rm).Round(vf).SignedSaturate(vf); in VisitNEON3Same() 3416 case NEON_SQABS_scalar: abs(vf, rd, rn).SignedSaturate(vf); break; in VisitNEONScalar2RegMisc() 3418 case NEON_SQNEG_scalar: neg(vf, rd, rn).SignedSaturate(vf); break; in VisitNEONScalar2RegMisc() 3527 add(vf, rd, rn, rm).SignedSaturate(vf); in VisitNEONScalar3Same() 3533 sub(vf, rd, rn, rm).SignedSaturate(vf); in VisitNEONScalar3Same() [all …]
|
D | logic-a64.cc | 1704 return sshl(vform, dst, src, shiftreg).SignedSaturate(vform); in sqshl() 2122 return extractnarrow(vform, dst, true, src, true).SignedSaturate(vform); in sqxtn() 3215 return add(vform, dst, dst, product).SignedSaturate(vform); in sqdmlal() 3225 return add(vform, dst, dst, product).SignedSaturate(vform); in sqdmlal2() 3235 return sub(vform, dst, dst, product).SignedSaturate(vform); in sqdmlsl() 3245 return sub(vform, dst, dst, product).SignedSaturate(vform); in sqdmlsl2() 3255 return add(vform, dst, product, product).SignedSaturate(vform); in sqdmull() 3265 return add(vform, dst, product, product).SignedSaturate(vform); in sqdmull2()
|
D | simulator-a64.h | 480 LogicVRegister& SignedSaturate(VectorFormat vform) { in SignedSaturate() function
|