OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isRunOfOnes
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp
89
///
isRunOfOnes
- Returns true iff Val consists of one contiguous run of 1s
93
static bool
isRunOfOnes
(unsigned Val, unsigned &MB, unsigned &ME);
332
bool PPCDAGToDAGISel::
isRunOfOnes
(unsigned Val, unsigned &MB, unsigned &ME) {
393
return
isRunOfOnes
(Mask, MB, ME);
441
if (
isRunOfOnes
(InsertMask, MB, ME)) {
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp
314
//
isRunOfOnes
- Returns true iff Val consists of one contiguous run of 1s with
318
static bool
isRunOfOnes
(ConstantInt *Val, uint32_t &MB, uint32_t &ME) {
363
if (
isRunOfOnes
(Mask, MB, ME)) { // begin/end bit of run, inclusive
[
all
...]
Completed in 1656 milliseconds