HomeSort by relevance Sort by last modified time
    Searched defs:ashr (Results 1 - 4 of 4) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
APInt.h 210 /// out-of-line slow case for ashr.
946 APInt ashr(unsigned ShiftAmt) const { function
1007 APInt ashr(const APInt &ShiftAmt) const { function
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 1051 APInt APInt::ashr(const APInt &shiftAmt) const { function in class:APInt
1052 return ashr((unsigned)shiftAmt.getLimitedValue(BitWidth));
1057 APInt APInt::ashr(unsigned shiftAmt) const { function in class:APInt
1063 // Handle single word shifts with built-in ashr
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
APInt.cpp 1029 APInt APInt::ashr(const APInt &shiftAmt) const { function in class:APInt
1030 return ashr((unsigned)shiftAmt.getLimitedValue(BitWidth));
1035 APInt APInt::ashr(unsigned shiftAmt) const { function in class:APInt
1041 // Handle single word shifts with built-in ashr
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
elemental_ir_emitter.cc 311 auto ashr = AShr(operand_value, type->getIntegerBitWidth() - 1); local
312 return Select(cmp, GetZero(type), Or(ashr, 1));
    [all...]

Completed in 444 milliseconds