OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isRunOfOnes
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.h
60
static inline bool
isRunOfOnes
(unsigned Val, unsigned &MB, unsigned &ME) {
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp
78
///
isRunOfOnes
- Returns true iff Val consists of one contiguous run of 1s
82
static bool
isRunOfOnes
(unsigned Val, unsigned &MB, unsigned &ME);
310
bool PPCDAGToDAGISel::
isRunOfOnes
(unsigned Val, unsigned &MB, unsigned &ME) {
368
return
isRunOfOnes
(Mask, MB, ME);
416
if (InsertMask &&
isRunOfOnes
(InsertMask, MB, ME)) {
[
all
...]
/external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp
[
all
...]
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp
381
//
isRunOfOnes
- Returns true iff Val consists of one contiguous run of 1s with
385
static bool
isRunOfOnes
(ConstantInt *Val, uint32_t &MB, uint32_t &ME) {
430
if (
isRunOfOnes
(Mask, MB, ME)) { // begin/end bit of run, inclusive
[
all
...]
/external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp
506
return
isRunOfOnes
(Mask, MB, ME);
554
if (
isRunOfOnes
(InsertMask, MB, ME)) {
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp
337
static bool
isRunOfOnes
(ConstantInt *Val, uint32_t &MB, uint32_t &ME) {
381
if (
isRunOfOnes
(Mask, MB, ME)) { // begin/end bit of run, inclusive
[
all
...]
Completed in 133 milliseconds