OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ACst
(Results
1 - 2
of
2
) 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
...]
Completed in 63 milliseconds