HomeSort by relevance Sort by last modified time
    Searched full:umin (Results 1 - 25 of 37) sorted by null

1 2

  /frameworks/base/graphics/java/android/renderscript/
RenderScriptGL.java 80 private void validateRange(int umin, int upref, int rmin, int rmax) {
81 if (umin < rmin || umin > rmax) {
84 if (upref < umin) {
  /external/llvm/lib/Support/
ConstantRange.cpp 90 APInt UMin(CR.getUnsignedMin());
91 if (UMin.isMaxValue())
93 return ConstantRange(UMin + 1, APInt::getNullValue(W));
102 APInt UMin(CR.getUnsignedMin());
103 if (UMin.isMinValue())
105 return ConstantRange(UMin, APInt::getNullValue(W));
628 APInt umin = APIntOps::umin(Other.getUnsignedMax(), getUnsignedMax());
629 if (umin.isAllOnesValue())
631 return ConstantRange(APInt::getNullValue(getBitWidth()), umin + 1)
    [all...]
  /external/llvm/test/CodeGen/X86/
atomic_op.ll 90 %13 = atomicrmw umin i32* %val2, i32 1 monotonic
95 %14 = atomicrmw umin i32* %val2, i32 10 monotonic
  /external/clang/test/CodeGen/
atomic.c 25 // CHECK: atomicrmw umin i32* %uval, i32 5 seq_cst
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 82 case AtomicRMWInst::UMin:
  /external/llvm/lib/VMCore/
AutoUpgrade.cpp 58 Name.startswith("atomic.load.umin"))
264 else if (F->getName().startswith("llvm.atomic.load.umin"))
265 Op = AtomicRMWInst::UMin;
AsmWriter.cpp 676 case AtomicRMWInst::UMin: Out << " umin"; break;
    [all...]
  /external/valgrind/main/exp-ptrcheck/
sg_main.c     [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ScalarEvolution.cpp     [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
genrtl.h 374 gen_rtx_fmt_ee (UMIN, (MODE), (ARG0), (ARG1))
rtl.def 478 DEF_RTL_EXPR(UMIN, "umin", "ee", RTX_COMM_ARITH)
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /external/mesa3d/src/glsl/
ir_to_llvm.cpp 836 return bld.CreateSelect(bld.CreateICmpULE(ops[0], ops[1], "umin.le"), ops[0], ops[1], "umin.select");
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 684 /// the types using zero-extension, and then perform a umin operation
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 583 KEYWORD(umin);
LLParser.cpp     [all...]
  /external/llvm/include/llvm/ADT/
APInt.h     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 116 case AtomicRMWInst::UMin: return bitc::RMW_UMIN;
    [all...]
  /external/llvm/include/llvm/
Instructions.h 588 UMin,
591 LAST_BINOP = UMin,
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]