OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SrcBitSize
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/VMCore/
Verifier.cpp
843
unsigned
SrcBitSize
= SrcTy->getScalarSizeInBits();
850
Assert1(
SrcBitSize
> DestBitSize,"DestTy too big for Trunc", &I);
[
all
...]
ConstantFold.cpp
295
unsigned
SrcBitSize
=
299
if (ByteStart*8 >=
SrcBitSize
)
304
if (ByteStart == 0 && ByteSize*8 ==
SrcBitSize
)
309
if ((
SrcBitSize
&7) == 0 && (ByteStart+ByteSize)*8 <=
SrcBitSize
)
314
if ((ByteStart+ByteSize)*8 <
SrcBitSize
) {
315
assert((
SrcBitSize
&7) && "Shouldn't get byte sized case here");
[
all
...]
Instructions.cpp
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp
[
all
...]
/external/llvm/lib/Analysis/
ConstantFolding.cpp
122
unsigned
SrcBitSize
= SrcEltTy->getPrimitiveSizeInBits();
127
unsigned ShiftAmt = isLittleEndian ? 0 :
SrcBitSize
*(Ratio-1);
139
ShiftAmt += isLittleEndian ?
SrcBitSize
: -
SrcBitSize
;
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp
[
all
...]
Completed in 453 milliseconds