HomeSort by relevance Sort by last modified time
    Searched refs:CI (Results 126 - 150 of 200) sorted by null

1 2 3 4 56 7 8

  /external/clang/include/clang/Frontend/
ASTUnit.h 603 static ASTUnit *create(CompilerInvocation *CI,
638 /// \param CI - The compiler invocation to use; it must have exactly one input
649 static ASTUnit *LoadFromCompilerInvocationAction(CompilerInvocation *CI,
657 /// \param CI - The compiler invocation to use; it must have exactly one input
665 static ASTUnit *LoadFromCompilerInvocation(CompilerInvocation *CI,
  /external/llvm/include/llvm/TableGen/
Record.h 102 virtual Init *convertValue( CodeInit *CI) { return 0; }
147 virtual Init *convertValue( CodeInit *CI) { return 0; }
192 virtual Init *convertValue( CodeInit *CI) { return 0; }
236 virtual Init *convertValue( CodeInit *CI) { return 0; }
282 virtual Init *convertValue( CodeInit *CI) { return 0; }
325 virtual Init *convertValue( CodeInit *CI) { return 0; }
368 virtual Init *convertValue( CodeInit *CI) { return (Init*)CI; }
408 virtual Init *convertValue( CodeInit *CI) { return 0; }
414 virtual Init *convertValue( DagInit *CI) { return (Init*)CI;
    [all...]
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 213 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
214 int Priority = CI ? CI->getSExtValue() : 0;
  /frameworks/compile/slang/
slang_rs_backend.cpp 382 llvm::CallInst *CI = IB->CreateCall(F, Params);
384 CI->setCallingConv(F->getCallingConv());
389 IB->CreateRet(CI);
  /external/llvm/lib/VMCore/
ConstantFold.cpp 161 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
169 APFloat(CI->getValue(),
205 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
206 APInt V = CI->getValue();
210 return ConstantInt::get(CI->getContext(), V);
627 ConstantInt *CI = cast<ConstantInt>(CE->getOperand(2));
628 if (CI->isOne() &&
646 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
647 APInt api = CI->getValue();
656 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
    [all...]
Instructions.cpp 315 CallInst::CallInst(const CallInst &CI)
316 : Instruction(CI.getType(), Instruction::Call,
317 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
318 CI.getNumOperands()) {
319 setAttributes(CI.getAttributes());
320 setTailCall(CI.isTailCall());
321 setCallingConv(CI.getCallingConv());
323 std::copy(CI.op_begin(), CI.op_end(), op_begin());
324 SubclassOptionalData = CI.SubclassOptionalData
    [all...]
  /external/clang/lib/AST/
StmtDumper.cpp 62 Stmt::child_range CI = S->children();
63 if (CI) {
64 while (CI) {
66 DumpSubTree(*CI++);
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 272 /// BuildScopeInformation - The statements from CI to CE are known to form a
328 for (Stmt::child_range CI = S->children(); CI; ++CI) {
334 Stmt *SubStmt = *CI;
458 for (BlockDecl::capture_const_iterator ci = BDecl->capture_begin(),
459 ce = BDecl->capture_end(); ci != ce; ++ci) {
460 VarDecl *variable = ci->getVariable();
SemaStmt.cpp 828 for (CaseValsTy::const_iterator CI = CaseVals.begin();
829 CI != CaseVals.end(); CI++) {
830 while (EI != EIend && EI->first < CI->first)
832 if (EI == EIend || EI->first > CI->first)
833 Diag(CI->second->getLHS()->getExprLoc(), diag::warn_not_in_enum)
860 CaseValsTy::const_iterator CI = CaseVals.begin();
869 while (CI != CaseVals.end() && CI->first < EI->first)
870 CI++
    [all...]
  /external/llvm/lib/CodeGen/
ELFWriter.h 231 void EmitGlobalConstantLargeInt(const ConstantInt *CI, ELFSection &S);
  /external/llvm/lib/Target/CBackend/
CBackend.cpp 276 if (const CallInst *CI = dyn_cast<CallInst>(&I))
277 return isa<InlineAsm>(CI->getCalledValue());
921 if (ConstantInt *CI = dyn_cast<ConstantInt>(CPV)) {
922 Type* Ty = CI->getType();
924 Out << (CI->getZExtValue() ? '1' : '0');
926 Out << CI->getZExtValue() << 'u'
    [all...]
  /external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp 297 CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition());
298 if (!CI || CI->getParent() != ExitingBlock) continue;
308 if (Inst == CI)
SimplifyCFG.cpp 320 ConstantInt *CI = dyn_cast<ConstantInt>(V);
321 if (CI || !TD || !isa<Constant>(V) || !V->getType()->isPointerTy())
322 return CI;
335 if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(0))) {
337 if (CI->getType() == PtrTy)
338 return CI;
341 (ConstantExpr::getIntegerCast(CI, PtrTy, /*isSigned=*/false));
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldStringBufferTest.java 48 public void test_getCharsII$CI() {
  /external/bluetooth/glib/glib/
gunidecomp.c 289 #define CI(Page, Char) \
295 (((Char >> 8) > (COMPOSE_TABLE_LAST)) ? 0 : CI((Char) >> 8, (Char) & 0xff))
  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 63 if (nonloc::ConcreteInt* CI = dyn_cast<nonloc::ConcreteInt>(&val)) {
64 const llvm::APSInt& I = CI->getValue();
MemRegion.cpp 797 if (nonloc::ConcreteInt *CI = dyn_cast<nonloc::ConcreteInt>(&index)) {
798 if (CI->getValue().getSExtValue() == 0) {
833 if (nonloc::ConcreteInt *CI = dyn_cast<nonloc::ConcreteInt>(&index)) {
835 int64_t i = CI->getValue().getSExtValue();
886 if (const nonloc::ConcreteInt *CI=dyn_cast<nonloc::ConcreteInt>(&Index)) {
887 int64_t i = CI->getValue().getSExtValue();
  /external/clang/lib/CodeGen/
CodeGenModule.cpp     [all...]
CGDeclCXX.cpp 331 llvm::CallInst *CI = Builder.CreateCall(Callee,
335 CI->setCallingConv(F->getCallingConv());
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 814 if (ConstantInt *CI = dyn_cast<ConstantInt>(Factor))
815 if (CI->isNegative() && !CI->isMinValue(true)) {
816 Factor = ConstantInt::get(CI->getContext(), -CI->getValue());
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 364 if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(1)))
365 if (CI->isOne()) {
386 if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(2)))
387 if (CI->isOne() &&
    [all...]
PHITransAddr.cpp 274 if (ConstantInt *CI = dyn_cast<ConstantInt>(BOp->getOperand(1))) {
276 RHS = ConstantExpr::getAdd(RHS, CI);
  /external/clang/lib/StaticAnalyzer/Checkers/
StreamChecker.cpp 273 const nonloc::ConcreteInt *CI = dyn_cast<nonloc::ConcreteInt>(&Whence);
275 if (!CI)
278 int64_t x = CI->getValue().getSExtValue();
  /external/llvm/lib/Target/ARM/
ARMISelLowering.h 313 virtual bool ExpandInlineAsm(CallInst *CI) const;
486 virtual bool mayBeEmittedAsTailCall(CallInst *CI) const;

Completed in 381 milliseconds

1 2 3 4 56 7 8