OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CPA
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Target/CBackend/
CBackend.cpp
226
void printConstantArray(ConstantArray *
CPA
, bool Static);
568
void CWriter::printConstantArray(ConstantArray *
CPA
, bool Static) {
573
Type *ETy =
CPA
->getType()->getElementType();
574
bool isString = (ETy == Type::getInt8Ty(
CPA
->getContext()) ||
575
ETy == Type::getInt8Ty(
CPA
->getContext()));
578
if (isString && (
CPA
->getNumOperands() == 0 ||
579
!cast<Constant>(*(
CPA
->op_end()-1))->isNullValue()))
588
for (unsigned i = 0, e =
CPA
->getNumOperands()-1; i != e; ++i) {
589
unsigned char C = cast<ConstantInt>(
CPA
->getOperand(i))->getZExtValue();
625
if (
CPA
->getNumOperands())
[
all
...]
/external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp
[
all
...]
/frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.cpp
693
const llvm::ConstantArray *
CPA
= (llvm::ConstantArray*) C;
695
(
CPA
->getType()->getElementType());
697
for (int i = 0, e =
CPA
->getNumOperands(); i != e; i++)
699
CPA
->getOperand(i),
[
all
...]
Completed in 112 milliseconds