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

  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 494 ConstantInt *ACst = dyn_cast<ConstantInt>(A);
498 bool icmp_abit = (ACst != 0 && !ACst->isZero() &&
499 ACst->getValue().isPowerOf2());
536 else if (ACst != 0 && CCst != 0 &&
537 ConstantExpr::getAnd(ACst, CCst) == CCst) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 445 ConstantInt *ACst = dyn_cast<ConstantInt>(A);
449 bool icmp_abit = (ACst && !ACst->isZero() &&
450 ACst->getValue().isPowerOf2());
484 } else if (ACst && CCst &&
485 ConstantExpr::getAnd(ACst, CCst) == CCst) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 235 ConstantInt *ACst = dyn_cast<ConstantInt>(A);
239 bool IsAPow2 = (ACst && !ACst->isZero() && ACst->getValue().isPowerOf2());
261 } else if (ACst && CCst && ConstantExpr::getAnd(ACst, CCst) == CCst) {
    [all...]

Completed in 5447 milliseconds