OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CDV
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Analysis/
CostModel.cpp
96
ConstantDataVector *
CDV
= 0;
97
if ((
CDV
= dyn_cast<ConstantDataVector>(V)))
98
if (
CDV
->getSplatValue() != NULL)
ConstantFolding.cpp
75
ConstantDataVector *
CDV
= dyn_cast<ConstantDataVector>(C);
76
if (
CDV
== 0)
86
Result |=
CDV
->getElementAsInteger(NumSrcElts-i-1);
88
Result |=
CDV
->getElementAsInteger(i);
[
all
...]
/external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp
853
const ConstantDataVector *
CDV
= dyn_cast<ConstantDataVector>(C);
857
if (
CDV
) {
858
elemNum =
CDV
->getNumElements();
859
ElemTy =
CDV
->getElementType();
885
if(
CDV
)
887
Result.AggregateVal[i].FloatVal =
CDV
->getElementAsFloat(i);
[
all
...]
Completed in 333 milliseconds