Searched refs:MaxUintFromFormat (Results 1 - 10 of 10) sorted by relevance
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | register-arm64.cc | 295 uint64_t MaxUintFromFormat(VectorFormat vform) { in MaxUintFromFormat() function
|
H A D | register-arm64.h | 315 uint64_t MaxUintFromFormat(VectorFormat vform);
|
/third_party/node/deps/v8/src/execution/arm64/ |
H A 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(vfor in dup_immediate() [all...] |
H A 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()
|
H A D | simulator-arm64.cc | 4810 value &= MaxUintFromFormat(vf);
|
/third_party/vixl/src/aarch64/ |
H A D | logic-aarch64.cc | 545 dst.SetUint(vform, i, result ? MaxUintFromFormat(vform) : 0); in cmp() 570 dst.SetUint(vform, i, ((ua & ub) != 0) ? MaxUintFromFormat(vform) : 0); in cmptst() 1675 uint64_t mask = MaxUintFromFormat(vform) << shift; 1733 mask = MaxUintFromFormat(vform) >> shift; 2071 dst.SetUint(vform, i, MaxUintFromFormat(vform)); // Positive saturation. 2235 if (ssrc > static_cast<int64_t>(MaxUintFromFormat(dstform))) { 2241 if (usrc > MaxUintFromFormat(dstform)) { 2248 result = ssrc & MaxUintFromFormat(dstform); 2250 result = usrc & MaxUintFromFormat(dstform); 2961 uint64_t value = imm & MaxUintFromFormat(vfor [all...] |
H A D | instructions-aarch64.cc | 1415 uint64_t MaxUintFromFormat(VectorFormat vform) { in MaxUintFromFormat() function
|
H A D | instructions-aarch64.h | 794 uint64_t MaxUintFromFormat(VectorFormat vform);
|
H A D | simulator-aarch64.h | 927 SetUint(vform, i, MaxUintFromFormat(vform)); in UnsignedSaturate() 959 val |= (MaxUintFromFormat(vform) >> 1) + 1; in Uhalve() 978 SetUint(vform, i, uval ^ ((MaxUintFromFormat(vform) >> 1) + 1)); in Halve()
|
H A D | simulator-aarch64.cc | 8186 value &= MaxUintFromFormat(vf); in Simulator()
|
Completed in 63 milliseconds