Home
last modified time | relevance | path

Searched refs:MaxUintFromFormat (Results 1 – 5 of 5) sorted by relevance

/external/vixl/src/aarch64/
Dlogic-aarch64.cc530 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 …]
Dinstructions-aarch64.h731 uint64_t MaxUintFromFormat(VectorFormat vform);
Dinstructions-aarch64.cc1414 uint64_t MaxUintFromFormat(VectorFormat vform) { in MaxUintFromFormat() function
Dsimulator-aarch64.h719 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()
Dsimulator-aarch64.cc7922 value &= MaxUintFromFormat(vf); in VisitNEONCopy()