Searched refs:SignedSaturate (Results 1 – 3 of 3) sorted by relevance
/external/vixl/src/vixl/a64/ |
D | simulator-a64.cc | 2507 case NEON_SQABS: abs(vf, rd, rn).SignedSaturate(vf); break; in VisitNEON2RegMisc() 2508 case NEON_SQNEG: neg(vf, rd, rn).SignedSaturate(vf); break; in VisitNEON2RegMisc() 2705 case NEON_SQADD: add(vf, rd, rn, rm).SignedSaturate(vf); break; in VisitNEON3Same() 2707 case NEON_SQSUB: sub(vf, rd, rn, rm).SignedSaturate(vf); break; in VisitNEON3Same() 2711 case NEON_SQSHL: sshl(vf, rd, rn, rm).SignedSaturate(vf); break; in VisitNEON3Same() 2718 sshl(vf, rd, rn, rm).Round(vf).SignedSaturate(vf); in VisitNEON3Same() 3472 case NEON_SQABS_scalar: abs(vf, rd, rn).SignedSaturate(vf); break; in VisitNEONScalar2RegMisc() 3474 case NEON_SQNEG_scalar: neg(vf, rd, rn).SignedSaturate(vf); break; in VisitNEONScalar2RegMisc() 3583 add(vf, rd, rn, rm).SignedSaturate(vf); in VisitNEONScalar3Same() 3589 sub(vf, rd, rn, rm).SignedSaturate(vf); in VisitNEONScalar3Same() [all …]
|
D | logic-a64.cc | 1700 return sshl(vform, dst, src, shiftreg).SignedSaturate(vform); in sqshl() 2118 return extractnarrow(vform, dst, true, src, true).SignedSaturate(vform); in sqxtn() 3211 return add(vform, dst, dst, product).SignedSaturate(vform); in sqdmlal() 3221 return add(vform, dst, dst, product).SignedSaturate(vform); in sqdmlal2() 3231 return sub(vform, dst, dst, product).SignedSaturate(vform); in sqdmlsl() 3241 return sub(vform, dst, dst, product).SignedSaturate(vform); in sqdmlsl2() 3251 return add(vform, dst, product, product).SignedSaturate(vform); in sqdmull() 3261 return add(vform, dst, product, product).SignedSaturate(vform); in sqdmull2()
|
D | simulator-a64.h | 592 LogicVRegister& SignedSaturate(VectorFormat vform) { in SignedSaturate() function
|