HomeSort by relevance Sort by last modified time
    Searched defs:RetVal (Results 1 - 25 of 30) sorted by null

1 2

  /external/libnfc-nxp/src/
phLibNfc_target.c 86 NFCSTATUS RetVal = NFCSTATUS_FAILED;
91 RetVal = NFCSTATUS_NOT_INITIALISED;
95 RetVal = NFCSTATUS_DESELECTED;
101 RetVal= NFCSTATUS_INVALID_PARAMETER;
105 RetVal = NFCSTATUS_SHUTDOWN;
113 RetVal = NFCSTATUS_REJECTED;
117 RetVal= NFCSTATUS_INVALID_DEVICE;
123 RetVal = NFCSTATUS_BUSY;
132 RetVal = NFCSTATUS_PENDING;
138 RetVal =phHal4Nfc_Receive(
    [all...]
phLibNfc_discovery.c 149 NFCSTATUS RetVal = NFCSTATUS_FAILED;
159 RetVal = NFCSTATUS_NOT_INITIALISED;
164 RetVal= NFCSTATUS_INVALID_PARAMETER;
169 RetVal= NFCSTATUS_SHUTDOWN;
180 RetVal = phHal4Nfc_ConfigureDiscovery ( gpphLibContext->psHwReference,
186 if(PHNFCSTATUS(RetVal) == NFCSTATUS_PENDING)
197 if (PHNFCSTATUS(RetVal) == NFCSTATUS_BUSY)
199 RetVal = NFCSTATUS_BUSY;
203 RetVal=NFCSTATUS_FAILED;
210 RetVal=NFCSTATUS_BUSY;
    [all...]
phLibNfc.c 812 NFCSTATUS RetVal = NFCSTATUS_FAILED;
817 RetVal = NFCSTATUS_NOT_INITIALISED;
823 RetVal= NFCSTATUS_INVALID_PARAMETER;
827 RetVal = NFCSTATUS_SHUTDOWN;
832 RetVal = NFCSTATUS_BUSY;
861 RetVal= phHal4Nfc_GetDeviceCapabilities(
892 if(NFCSTATUS_SUCCESS != RetVal)
894 RetVal = NFCSTATUS_FAILED;
897 return RetVal;
    [all...]
phLibNfc_initiator.c 121 NFCSTATUS RetVal = NFCSTATUS_SUCCESS,
362 RetVal = phHal4Nfc_ConfigureDiscovery ( gpphLibContext->psHwReference,
368 if((RetVal!=NFCSTATUS_SUCCESS) &&(RetVal!=NFCSTATUS_PENDING))
397 NFCSTATUS RetVal = NFCSTATUS_SUCCESS;
405 RetVal= NFCSTATUS_INVALID_PARAMETER;
411 RetVal = NFCSTATUS_NOT_INITIALISED;
417 RetVal= NFCSTATUS_SHUTDOWN;
430 RetVal = phHal4Nfc_RegisterNotification(
437 RetVal = phHal4Nfc_RegisterNotification
    [all...]
phLibNfc_ndef_raw.c 125 NFCSTATUS RetVal = NFCSTATUS_FAILED;
130 RetVal = NFCSTATUS_NOT_INITIALISED;
138 RetVal= NFCSTATUS_INVALID_PARAMETER;
142 RetVal = NFCSTATUS_SHUTDOWN;
146 RetVal=NFCSTATUS_TARGET_NOT_CONNECTED;
150 RetVal=NFCSTATUS_INVALID_HANDLE;
157 RetVal = NFCSTATUS_REJECTED;
162 RetVal = NFCSTATUS_NON_NDEF_COMPLIANT;
169 RetVal = NFCSTATUS_SUCCESS;
175 RetVal= NFCSTATUS_BUSY
    [all...]
  /external/compiler-rt/lib/profile/
InstrProfilingFile.c 43 int RetVal;
53 RetVal = writeFile(OutputFile);
56 return RetVal;
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 404 auto *RetVal = RI->getReturnValue();
405 if (!RetVal) break; // handle "ret void"
406 if (isa<Constant>(RetVal)) break; // nothing to do
407 if (auto *C = getConstantAt(RetVal, RI)) {
409 RI->replaceUsesOfWith(RetVal, C);
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 354 int RetVal = AI->ExecuteProgram(BitcodeFile, InputArgv, InputFile, OutputFile,
360 if (RetVal == -1) {
375 outFile << "exit " << RetVal << '\n';
  /external/clang/lib/Analysis/
BodyFarm.cpp 79 ReturnStmt *makeReturn(const Expr *RetVal);
159 ReturnStmt *ASTMaker::makeReturn(const Expr *RetVal) {
160 return new (C) ReturnStmt(SourceLocation(), const_cast<Expr*>(RetVal),
333 Expr *RetVal = isBoolean ? M.makeIntegralCastToBoolean(BoolVal)
335 Stmts[1] = M.makeReturn(RetVal);
340 RetVal = isBoolean ? M.makeIntegralCastToBoolean(BoolVal)
342 Stmt *Else = M.makeReturn(RetVal);
  /external/clang/test/CodeGenCXX/
mangle-ms-back-references-pr13207.cpp 170 struct RetVal { int hash; };
172 RetVal fun_tmpl(const T &t) { return RetVal(); }
173 RetVal fun_normal(int t) { return RetVal(); }
181 template <typename T, RetVal (*F)(T)>
182 RetVal fun_tmpl_recurse(T t) {
184 return RetVal();
187 RetVal ident(int x) { return RetVal(); }
    [all...]
  /external/clang/unittests/Lex/
PPCallbacksTest.cpp 233 PragmaOpenCLExtensionCallbacks::CallbackParameters RetVal = {
237 return RetVal;
  /external/curl/docs/examples/
synctime.c 134 int i, RetVal;
151 RetVal = sscanf ((char *)(ptr), "Date: %s %hu %s %hu %hu:%hu:%hu",
155 if (RetVal == 7) {
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITCAPITest.cpp 489 LLVMValueRef RetVal = LLVMBuildCall(Builder, MappedFn, nullptr, 0, "");
490 LLVMBuildRet(Builder, RetVal);
  /external/clang/lib/StaticAnalyzer/Checkers/
StreamChecker.cpp 215 DefinedSVal RetVal = svalBuilder.conjureSymbolVal(nullptr, CE, LCtx,
218 state = state->BindExpr(CE, C.getLocationContext(), RetVal);
224 std::tie(stateNotNull, stateNull) = CM.assumeDual(state, RetVal);
226 if (SymbolRef Sym = RetVal.getAsSymbol()) {
227 // if RetVal is not NULL, set the symbol's state to Opened.
MallocChecker.cpp     [all...]
RetainCountChecker.cpp     [all...]
  /external/llvm/lib/CodeGen/
Analysis.cpp 333 static bool slotOnlyDiscardsData(const Value *RetVal, const Value *CallVal,
345 RetVal = getNoopInput(RetVal, RetIndices, BitsRequired, TLI, DL);
349 if (isa<UndefValue>(RetVal))
361 if (CallVal != RetVal || CallIndices != RetIndices)
575 const Value *RetVal = Ret->getOperand(0), *CallVal = I;
579 bool RetEmpty = !firstRealType(RetVal->getType(), RetSubTypes, RetPath);
612 if (!slotOnlyDiscardsData(RetVal, CallVal, TmpRetPath, TmpCallPath,
IfConversion.cpp 340 bool RetVal = false;
353 RetVal = IfConvertSimple(BBI, Kind);
354 DEBUG(dbgs() << (RetVal ? "succeeded!" : "failed!") << "\n");
355 if (RetVal) {
379 RetVal = IfConvertTriangle(BBI, Kind);
380 DEBUG(dbgs() << (RetVal ? "succeeded!" : "failed!") << "\n");
381 if (RetVal) {
397 RetVal = IfConvertDiamond(BBI, Kind, NumDups, NumDups2);
398 DEBUG(dbgs() << (RetVal ? "succeeded!" : "failed!") << "\n");
399 if (RetVal) ++NumDiamonds
    [all...]
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp     [all...]
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 248 // ; %retVal = select i1 %ret0, i32 0, i32 %dividend
261 Value *RetVal = Builder.CreateSelect(Ret0, Zero, Dividend);
338 // ; %q_5 = phi i32 [ %q_4, %loop-exit ], [ %retVal, %special-cases ]
362 // ; %q_5 = phi i32 [ %q_4, %loop-exit ], [ %retVal, %special-cases ]
364 Q_5->addIncoming(RetVal, SpecialCases);
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 202 SVal RetVal = State->getSVal(S, Node->getLocationContext());
206 if (Optional<Loc> LValue = RetVal.getAs<Loc>())
207 RetVal = State->getSVal(*LValue);
216 if (Optional<Loc> RetLoc = RetVal.getAs<Loc>())
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSKernelExpand.cpp     [all...]

Completed in 820 milliseconds

1 2