Searched refs:MaxUintFromFormat (Results 1 – 10 of 10) sorted by relevance
/third_party/node/deps/v8/src/codegen/arm64/ |
D | register-arm64.cc | 295 uint64_t MaxUintFromFormat(VectorFormat vform) { in MaxUintFromFormat() function
|
D | register-arm64.h | 315 uint64_t MaxUintFromFormat(VectorFormat vform);
|
/third_party/node/deps/v8/src/execution/arm64/ |
D | simulator-logic-arm64.cc | 619 dst.SetUint(vform, i, result ? MaxUintFromFormat(vform) : 0); in cmp() 639 dst.SetUint(vform, i, ((ua & ub) != 0) ? MaxUintFromFormat(vform) : 0); in cmptst() 1403 uint64_t mask = MaxUintFromFormat(vform) << shift; in sli() 1449 mask = MaxUintFromFormat(vform) >> shift; in sri() 1681 dst.SetUint(vform, i, MaxUintFromFormat(vform)); // Positive saturation. in usqadd() 1782 if (ssrc[i] > static_cast<int64_t>(MaxUintFromFormat(dstform))) { in ExtractNarrow() 1788 if (usrc[i] > MaxUintFromFormat(dstform)) { in ExtractNarrow() 1795 result = ssrc[i] & MaxUintFromFormat(dstform); in ExtractNarrow() 1797 result = usrc[i] & MaxUintFromFormat(dstform); in ExtractNarrow() 2009 uint64_t value = imm & MaxUintFromFormat(vform); in dup_immediate() [all …]
|
D | simulator-arm64.h | 578 SetUint(vform, i, MaxUintFromFormat(vform)); in UnsignedSaturate() 610 val |= (MaxUintFromFormat(vform) >> 1) + 1; in Uhalve() 626 val ^= (MaxUintFromFormat(vform) >> 1) + 1; in Halve()
|
D | simulator-arm64.cc | 4810 value &= MaxUintFromFormat(vf); in VisitNEONCopy()
|
/third_party/vixl/src/aarch64/ |
D | logic-aarch64.cc | 530 dst.SetUint(vform, i, result ? MaxUintFromFormat(vform) : 0); in cmp() 555 dst.SetUint(vform, i, ((ua & ub) != 0) ? MaxUintFromFormat(vform) : 0); in cmptst() 1660 uint64_t mask = MaxUintFromFormat(vform) << shift; in sli() 1718 mask = MaxUintFromFormat(vform) >> shift; in sri() 2056 dst.SetUint(vform, i, MaxUintFromFormat(vform)); // Positive saturation. in usqadd() 2221 if (ssrc > static_cast<int64_t>(MaxUintFromFormat(dstform))) { in extractnarrow() 2227 if (usrc > MaxUintFromFormat(dstform)) { in extractnarrow() 2234 result = ssrc & MaxUintFromFormat(dstform); in extractnarrow() 2236 result = usrc & MaxUintFromFormat(dstform); in extractnarrow() 2943 uint64_t value = imm & MaxUintFromFormat(vform); in dup_immediate() [all …]
|
D | instructions-aarch64.h | 731 uint64_t MaxUintFromFormat(VectorFormat vform);
|
D | instructions-aarch64.cc | 1414 uint64_t MaxUintFromFormat(VectorFormat vform) { in MaxUintFromFormat() function
|
D | simulator-aarch64.h | 719 SetUint(vform, i, MaxUintFromFormat(vform)); in UnsignedSaturate() 751 val |= (MaxUintFromFormat(vform) >> 1) + 1; in Uhalve() 770 SetUint(vform, i, uval ^ ((MaxUintFromFormat(vform) >> 1) + 1)); in Halve()
|
D | simulator-aarch64.cc | 7932 value &= MaxUintFromFormat(vf); in Simulator()
|