HomeSort by relevance Sort by last modified time
    Searched defs:Result (Results 276 - 300 of 356) sorted by null

<<1112131415

  /external/libnfc-nxp/src/
phFriNfc_TopazDynamicMap.c 565 NFCSTATUS Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
610 Result = phFriNfc_Tpz_H_NxpRead(NdefMap);
613 return Result;
631 NFCSTATUS Result = NFCSTATUS_SUCCESS;
656 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
664 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
702 Result = phFriNfc_Tpz_H_NxpRead(NdefMap);
709 Result = phFriNfc_Tpz_H_RemainingReadDataCopy (NdefMap);
713 return Result;
722 NFCSTATUS result = NFCSTATUS_SUCCESS local
930 NFCSTATUS result = NFCSTATUS_SUCCESS; local
1051 NFCSTATUS result = NFCSTATUS_SUCCESS; local
1286 NFCSTATUS result = NFCSTATUS_SUCCESS; local
1634 NFCSTATUS result = NFCSTATUS_SUCCESS; local
1665 NFCSTATUS result = NFCSTATUS_SUCCESS; local
1735 NFCSTATUS result = NFCSTATUS_SUCCESS; local
1796 NFCSTATUS result = NFCSTATUS_SUCCESS; local
1950 NFCSTATUS result = NFCSTATUS_SUCCESS; local
2067 NFCSTATUS result = NFCSTATUS_SUCCESS; local
2218 NFCSTATUS result = NFCSTATUS_SUCCESS; local
2284 NFCSTATUS result = NFCSTATUS_SUCCESS; local
2354 NFCSTATUS result = NFCSTATUS_SUCCESS; local
2473 NFCSTATUS result = NFCSTATUS_SUCCESS; local
2559 NFCSTATUS result = NFCSTATUS_SUCCESS; local
2820 NFCSTATUS result = NFCSTATUS_SUCCESS; local
3212 NFCSTATUS result = NFCSTATUS_SUCCESS; local
3323 NFCSTATUS result = NFCSTATUS_SUCCESS; local
3494 NFCSTATUS result = NFCSTATUS_SUCCESS; local
3668 NFCSTATUS result = NFCSTATUS_SUCCESS; local
3820 NFCSTATUS result = NFCSTATUS_SUCCESS; local
3899 NFCSTATUS result = NFCSTATUS_SUCCESS; local
3960 NFCSTATUS result = NFCSTATUS_SUCCESS; local
4006 NFCSTATUS result = NFCSTATUS_SUCCESS; local
4058 NFCSTATUS result = NFCSTATUS_SUCCESS; local
4144 NFCSTATUS result = NFCSTATUS_SUCCESS; local
4211 NFCSTATUS result = NFCSTATUS_SUCCESS; local
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 464 // greater than RHS, respectively. A three-way result allows recursive
672 /// BinomialCoefficient - Compute BC(It, K). The result has width W.
686 // overflow. Hence, we must assure that the result of our computation is
718 // the result must be zero anyway. We prefer here to do it in the width of
740 // W bits of the result.
778 // Truncate the result, and divide by K! / 2^T.
795 const SCEV *Result = getStart();
804 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
806 return Result;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]
  /external/llvm/lib/TableGen/
Record.cpp 203 int64_t Result = 0;
206 Result |= Bit->getValue() << i;
210 return IntInit::get(Result);
469 std::string Result = "{ ";
471 if (i) Result += ", ";
473 Result += Bit->getAsString();
475 Result += "*";
477 return Result + " }";
667 std::string Result = "[";
669 if (i) Result += ", "
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
ARMISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 177 /// Return true and the result register by reference if it is possible.
    [all...]
X86ISelDAGToDAG.cpp 519 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
528 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 193 /// ReplaceNodeResults - Replace the results of node with an illegal result
301 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(), /*isTarget=*/true);
303 return DAG.getNode(XCoreISD::PCRelativeWrapper, DL, getPointerTy(), Result);
435 // or result, low_shifted, high_shifted
452 SDValue Result = DAG.getNode(ISD::OR, DL, MVT::i32, LowShifted, HighShifted);
455 SDValue Ops[] = { Result, Chain };
472 SDValue Result = DAG.getNode(ISD::OR, DL, MVT::i32, Low, HighShifted);
475 SDValue Ops[] = { Result, Chain };
597 /// each intermediate result in the calculation must also have a single use.
722 SDValue Result = TryExpandADDWithMul(N, DAG)
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 204 // If the result of the constantexpr isn't pointer type, then we won't
392 // If Dead[n].first is the only use of a malloc result, we can delete its
511 // we already know what the result of any load from that GEP is.
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 44 static bool HasAddOverflow(ConstantInt *Result,
48 return Result->getValue().ult(In1->getValue());
51 return Result->getValue().sgt(In1->getValue());
52 return Result->getValue().slt(In1->getValue());
55 /// AddWithOverflow - Compute Result = In1+In2, returning true if the result
57 static bool AddWithOverflow(Constant *&Result, Constant *In1,
59 Result = ConstantExpr::getAdd(In1, In2);
64 if (HasAddOverflow(ExtractElement(Result, Idx),
73 return HasAddOverflow(cast<ConstantInt>(Result),
    [all...]
InstructionCombining.cpp 108 // If this is a legal integer from type, and the result would be an illegal
113 // Otherwise, if both are illegal, do not increase the size of the result. We
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 770 // If the result alloca is a vector type, this is either an element
    [all...]
SimplifyLibCalls.cpp 14 // result" belongs in this file.
767 Value *Result = CastToCStr(CI->getArgOperand(0), B);
768 Result = B.CreateConstInBoundsGEP1_64(Result, Offset, "strstr");
769 return B.CreateBitCast(Result, CI->getType());
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 306 PossibleRelocationsTy Result = NoRelocation;
308 Result = std::max(Result,
311 return Result;
    [all...]
Instructions.cpp 412 Instruction *Result = NULL;
415 Result = MCall;
416 if (Result->getType() != AllocPtrType)
418 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
421 Result = MCall;
422 if (Result->getType() != AllocPtrType) {
425 Result = new BitCastInst(MCall, AllocPtrType, Name);
435 return Result;
443 /// 3. Bitcast the result of the malloc call to the specified type.
458 /// 3. Bitcast the result of the malloc call to the specified type
    [all...]
  /prebuilts/misc/common/layoutlib_api/
layoutlib_api-prebuilt.jar 
  /prebuilts/tools/common/easymock-tools/
easymock-3.1.jar 
  /external/clang/include/clang/Parse/
Parser.h 287 bool ParseTopLevelDecl(DeclGroupPtrTy &Result);
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 111 /// Incrementing invalid iterator is allowed and will result in invalid
465 // Retrieve result at first, or the map might be updated.
466 TryResult Result = evaluateAsBooleanConditionNoCache(S);
467 CachedBoolEvals[S] = Result; // update or insert
468 return Result;
520 // We can't evaluate the LHS; however, sometimes the result
531 bool Result;
532 if (E->EvaluateAsBooleanCondition(Result, *Context))
533 return Result;
789 // may be a no-return destructor which changes the CFG. As a result, buffe
2588 Expr::EvalResult result; local
    [all...]
ThreadSafety.cpp 566 bool Result = true;
571 Result = Result && matches(Other, ci, cj);
573 return Result;
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 35 RValue Result);
70 // messaged (avoids pulling it out of the result type).
81 RValue result = Runtime.GenerateMessageSend(*this, ReturnValueSlot(), local
84 return Builder.CreateBitCast(result.getScalarVal(),
169 RValue result local
175 return Builder.CreateBitCast(result.getScalarVal(),
202 /// \brief Adjust the type of the result of an Objective-C message send
203 /// expression when the method has a related result type.
207 RValue Result) {
209 return Result;
368 RValue result; local
1769 llvm::Value *result = call; local
1801 llvm::CallInst *result = CGF.Builder.CreateCall2(fn, addr, value); local
1828 llvm::CallInst *result = CGF.Builder.CreateCall2(fn, dst, src); local
1858 llvm::Value *result local
2309 llvm::Value *result = CGF.EmitLoadOfLValue(lv).getScalarVal(); local
2425 TryEmitResult result; local
2520 llvm::Value *result = CGF.EmitScalarExpr(ce->getSubExpr()); local
2529 llvm::Value *result; \/\/ will be a +0 value local
2562 llvm::Value *result = emitARCRetainCall(CGF, ce->getSubExpr()); local
2585 llvm::Value *result = emitARCRetainCall(CGF, e); local
2591 TryEmitResult result local
2607 llvm::Value *result = CGF.EmitScalarExpr(e); local
2615 TryEmitResult result = tryEmitARCRetainLoadOfScalar(CGF, lvalue, type); local
2627 TryEmitResult result = tryEmitARCRetainScalarExpr(*this, e); local
2636 TryEmitResult result = tryEmitARCRetainScalarExpr(*this, e); local
2646 llvm::Value *result; local
2693 TryEmitResult result = tryEmitARCRetainScalarExpr(*this, e->getRHS()); local
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp 336 /// Resolves the result kind of this lookup.
477 Out << Decls.size() << " result(s)";
648 // given lookup result. Returns true if any matches were found.
707 // result), perform template argument deduction and place the
708 // specialization into the result set. We do this to avoid forcing all
    [all...]
SemaStmt.cpp 170 // Okay, we have an unused result. Depending on what the base expression is,
1429 ExprResult result = CheckPlaceholderExpr(E); local
2601 ExprResult result = DefaultLvalueConversion(operand); local
    [all...]
SemaType.cpp 594 QualType Result;
597 Result = Context.VoidTy;
601 Result = Context.CharTy;
603 Result = Context.SignedCharTy;
607 Result = Context.UnsignedCharTy;
612 Result = Context.WCharTy;
616 Result = Context.getSignedWCharType();
622 Result = Context.getUnsignedWCharType();
628 Result = Context.Char16Ty;
633 Result = Context.Char32Ty
    [all...]

Completed in 1820 milliseconds

<<1112131415