HomeSort by relevance Sort by last modified time
    Searched refs:shiftAmt (Results 1 - 23 of 23) sorted by null

  /external/llvm/include/llvm/ADT/
APInt.h 193 APInt shlSlowCase(unsigned shiftAmt) const;
519 unsigned shiftAmt = numBits - hiBitsSet;
522 return APInt(numBits, ~0ULL << shiftAmt);
523 return getAllOnesValue(numBits).shl(shiftAmt);
763 /// Shifts *this left by shiftAmt and assigns the result to *this.
765 /// \returns *this after shifting left by shiftAmt
766 APInt &operator<<=(unsigned shiftAmt) {
767 *this = shl(shiftAmt);
863 /// Arithmetic right-shift this APInt by shiftAmt.
864 APInt LLVM_ATTRIBUTE_UNUSED_RESULT ashr(unsigned shiftAmt) const
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
APInt.h 187 APInt shlSlowCase(unsigned shiftAmt) const;
481 unsigned shiftAmt = numBits - hiBitsSet;
484 return APInt(numBits, ~0ULL << shiftAmt);
485 return getAllOnesValue(numBits).shl(shiftAmt);
638 /// Shifts *this left by shiftAmt and assigns the result to *this.
639 /// @returns *this after shifting left by shiftAmt
641 APInt& operator<<=(unsigned shiftAmt) {
642 *this = shl(shiftAmt);
714 /// Arithmetic right-shift this APInt by shiftAmt.
716 APInt ashr(unsigned shiftAmt) const
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
APInt.h 197 APInt shlSlowCase(unsigned shiftAmt) const;
523 unsigned shiftAmt = numBits - hiBitsSet;
526 return APInt(numBits, ~0ULL << shiftAmt);
527 return getAllOnesValue(numBits).shl(shiftAmt);
757 /// Shifts *this left by shiftAmt and assigns the result to *this.
759 /// \returns *this after shifting left by shiftAmt
760 APInt &operator<<=(unsigned shiftAmt) {
761 *this = shl(shiftAmt);
839 /// Arithmetic right-shift this APInt by shiftAmt.
840 APInt ashr(unsigned shiftAmt) const
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
APInt.h 192 APInt shlSlowCase(unsigned shiftAmt) const;
833 /// Shifts *this left by shiftAmt and assigns the result to *this.
835 /// \returns *this after shifting left by shiftAmt
836 APInt &operator<<=(unsigned shiftAmt) {
837 *this = shl(shiftAmt);
862 /// Arithmetic right-shift this APInt by shiftAmt.
863 APInt ashr(unsigned shiftAmt) const;
867 /// Logical right-shift this APInt by shiftAmt.
868 APInt lshr(unsigned shiftAmt) const;
872 /// Left-shift this APInt by shiftAmt
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
APInt.h 192 APInt shlSlowCase(unsigned shiftAmt) const;
833 /// Shifts *this left by shiftAmt and assigns the result to *this.
835 /// \returns *this after shifting left by shiftAmt
836 APInt &operator<<=(unsigned shiftAmt) {
837 *this = shl(shiftAmt);
862 /// Arithmetic right-shift this APInt by shiftAmt.
863 APInt ashr(unsigned shiftAmt) const;
867 /// Logical right-shift this APInt by shiftAmt.
868 APInt lshr(unsigned shiftAmt) const;
872 /// Left-shift this APInt by shiftAmt
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
APInt.cpp     [all...]
  /external/llvm/lib/Support/
APInt.cpp 1049 /// Arithmetic right-shift this APInt by shiftAmt.
1051 APInt APInt::ashr(const APInt &shiftAmt) const {
1052 return ashr((unsigned)shiftAmt.getLimitedValue(BitWidth));
1055 /// Arithmetic right-shift this APInt by shiftAmt.
1057 APInt APInt::ashr(unsigned shiftAmt) const {
1058 assert(shiftAmt <= BitWidth && "Invalid shift amount");
1060 if (shiftAmt == 0)
1065 if (shiftAmt == BitWidth)
1070 (((int64_t(VAL) << SignBit) >> SignBit) >> shiftAmt));
1077 if (shiftAmt == BitWidth)
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
APInt.cpp 1027 /// Arithmetic right-shift this APInt by shiftAmt.
1029 APInt APInt::ashr(const APInt &shiftAmt) const {
1030 return ashr((unsigned)shiftAmt.getLimitedValue(BitWidth));
1033 /// Arithmetic right-shift this APInt by shiftAmt.
1035 APInt APInt::ashr(unsigned shiftAmt) const {
1036 assert(shiftAmt <= BitWidth && "Invalid shift amount");
1038 if (shiftAmt == 0)
1043 if (shiftAmt == BitWidth)
1045 return APInt(BitWidth, SignExtend64(VAL, BitWidth) >> shiftAmt);
1051 if (shiftAmt == BitWidth)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
APInt.h 199 void shlSlowCase(unsigned ShiftAmt);
202 void lshrSlowCase(unsigned ShiftAmt);
205 void ashrSlowCase(unsigned ShiftAmt);
876 /// Shifts *this left by shiftAmt and assigns the result to *this.
878 /// \returns *this after shifting left by ShiftAmt
879 APInt &operator<<=(unsigned ShiftAmt) {
880 assert(ShiftAmt <= BitWidth && "Invalid shift amount");
882 if (ShiftAmt == BitWidth)
885 U.VAL <<= ShiftAmt;
888 shlSlowCase(ShiftAmt);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
APInt.h 199 void shlSlowCase(unsigned ShiftAmt);
202 void lshrSlowCase(unsigned ShiftAmt);
205 void ashrSlowCase(unsigned ShiftAmt);
876 /// Shifts *this left by shiftAmt and assigns the result to *this.
878 /// \returns *this after shifting left by ShiftAmt
879 APInt &operator<<=(unsigned ShiftAmt) {
880 assert(ShiftAmt <= BitWidth && "Invalid shift amount");
882 if (ShiftAmt == BitWidth)
885 U.VAL <<= ShiftAmt;
888 shlSlowCase(ShiftAmt);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
APInt.h 199 void shlSlowCase(unsigned ShiftAmt);
202 void lshrSlowCase(unsigned ShiftAmt);
205 void ashrSlowCase(unsigned ShiftAmt);
890 /// Shifts *this left by shiftAmt and assigns the result to *this.
892 /// \returns *this after shifting left by ShiftAmt
893 APInt &operator<<=(unsigned ShiftAmt) {
894 assert(ShiftAmt <= BitWidth && "Invalid shift amount");
896 if (ShiftAmt == BitWidth)
899 U.VAL <<= ShiftAmt;
902 shlSlowCase(ShiftAmt);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/
APInt.h 199 void shlSlowCase(unsigned ShiftAmt);
202 void lshrSlowCase(unsigned ShiftAmt);
205 void ashrSlowCase(unsigned ShiftAmt);
890 /// Shifts *this left by shiftAmt and assigns the result to *this.
892 /// \returns *this after shifting left by ShiftAmt
893 APInt &operator<<=(unsigned ShiftAmt) {
894 assert(ShiftAmt <= BitWidth && "Invalid shift amount");
896 if (ShiftAmt == BitWidth)
899 U.VAL <<= ShiftAmt;
902 shlSlowCase(ShiftAmt);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/
APInt.h 199 void shlSlowCase(unsigned ShiftAmt);
202 void lshrSlowCase(unsigned ShiftAmt);
205 void ashrSlowCase(unsigned ShiftAmt);
890 /// Shifts *this left by shiftAmt and assigns the result to *this.
892 /// \returns *this after shifting left by ShiftAmt
893 APInt &operator<<=(unsigned ShiftAmt) {
894 assert(ShiftAmt <= BitWidth && "Invalid shift amount");
896 if (ShiftAmt == BitWidth)
899 U.VAL <<= ShiftAmt;
902 shlSlowCase(ShiftAmt);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/
APInt.h 199 void shlSlowCase(unsigned ShiftAmt);
202 void lshrSlowCase(unsigned ShiftAmt);
205 void ashrSlowCase(unsigned ShiftAmt);
890 /// Shifts *this left by shiftAmt and assigns the result to *this.
892 /// \returns *this after shifting left by ShiftAmt
893 APInt &operator<<=(unsigned ShiftAmt) {
894 assert(ShiftAmt <= BitWidth && "Invalid shift amount");
896 if (ShiftAmt == BitWidth)
899 U.VAL <<= ShiftAmt;
902 shlSlowCase(ShiftAmt);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
APInt.h 199 void shlSlowCase(unsigned ShiftAmt);
202 void lshrSlowCase(unsigned ShiftAmt);
205 void ashrSlowCase(unsigned ShiftAmt);
876 /// Shifts *this left by shiftAmt and assigns the result to *this.
878 /// \returns *this after shifting left by ShiftAmt
879 APInt &operator<<=(unsigned ShiftAmt) {
880 assert(ShiftAmt <= BitWidth && "Invalid shift amount");
882 if (ShiftAmt == BitWidth)
885 U.VAL <<= ShiftAmt;
888 shlSlowCase(ShiftAmt);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
APInt.h 199 void shlSlowCase(unsigned ShiftAmt);
202 void lshrSlowCase(unsigned ShiftAmt);
205 void ashrSlowCase(unsigned ShiftAmt);
876 /// Shifts *this left by shiftAmt and assigns the result to *this.
878 /// \returns *this after shifting left by ShiftAmt
879 APInt &operator<<=(unsigned ShiftAmt) {
880 assert(ShiftAmt <= BitWidth && "Invalid shift amount");
882 if (ShiftAmt == BitWidth)
885 U.VAL <<= ShiftAmt;
888 shlSlowCase(ShiftAmt);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
APInt.h 199 void shlSlowCase(unsigned ShiftAmt);
202 void lshrSlowCase(unsigned ShiftAmt);
205 void ashrSlowCase(unsigned ShiftAmt);
890 /// Shifts *this left by shiftAmt and assigns the result to *this.
892 /// \returns *this after shifting left by ShiftAmt
893 APInt &operator<<=(unsigned ShiftAmt) {
894 assert(ShiftAmt <= BitWidth && "Invalid shift amount");
896 if (ShiftAmt == BitWidth)
899 U.VAL <<= ShiftAmt;
902 shlSlowCase(ShiftAmt);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
APInt.h 199 void shlSlowCase(unsigned ShiftAmt);
202 void lshrSlowCase(unsigned ShiftAmt);
205 void ashrSlowCase(unsigned ShiftAmt);
890 /// Shifts *this left by shiftAmt and assigns the result to *this.
892 /// \returns *this after shifting left by ShiftAmt
893 APInt &operator<<=(unsigned ShiftAmt) {
894 assert(ShiftAmt <= BitWidth && "Invalid shift amount");
896 if (ShiftAmt == BitWidth)
899 U.VAL <<= ShiftAmt;
902 shlSlowCase(ShiftAmt);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
APInt.h 199 void shlSlowCase(unsigned ShiftAmt);
202 void lshrSlowCase(unsigned ShiftAmt);
205 void ashrSlowCase(unsigned ShiftAmt);
890 /// Shifts *this left by shiftAmt and assigns the result to *this.
892 /// \returns *this after shifting left by ShiftAmt
893 APInt &operator<<=(unsigned ShiftAmt) {
894 assert(ShiftAmt <= BitWidth && "Invalid shift amount");
896 if (ShiftAmt == BitWidth)
899 U.VAL <<= ShiftAmt;
902 shlSlowCase(ShiftAmt);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
APInt.h 199 void shlSlowCase(unsigned ShiftAmt);
202 void lshrSlowCase(unsigned ShiftAmt);
205 void ashrSlowCase(unsigned ShiftAmt);
890 /// Shifts *this left by shiftAmt and assigns the result to *this.
892 /// \returns *this after shifting left by ShiftAmt
893 APInt &operator<<=(unsigned ShiftAmt) {
894 assert(ShiftAmt <= BitWidth && "Invalid shift amount");
896 if (ShiftAmt == BitWidth)
899 U.VAL <<= ShiftAmt;
902 shlSlowCase(ShiftAmt);
    [all...]
  /external/v8/src/s390/
assembler-s390.cc     [all...]
assembler-s390.h     [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
ConstantFold.cpp     [all...]

Completed in 591 milliseconds