/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngineCXX.cpp | 253 SVal Result = svalBuilder.evalCast(PlacementLoc, CNE->getType(), 255 State = State->BindExpr(CNE, LCtx, Result);
|
/external/clang/lib/Tooling/ |
JSONCompilationDatabase.cpp | 138 llvm::error_code Result = 140 if (Result != 0) { 141 ErrorMessage = "Error while opening JSON database: " + Result.message(); 186 std::vector<std::string> Result; 193 Result.push_back(CommandsRefI->first().str()); 196 return Result;
|
/external/libnfc-nxp/src/ |
phFriNfc_DesfireFormat.c | 888 NFCSTATUS result = PHNFCSTVAL(CID_FRI_NFC_NDEF_SMTCRDFMT, local 900 result = phFriNfc_Desf_HSendTransCmd(NdefSmtCrdFmt); 902 return (result); 908 NFCSTATUS Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_SMTCRDFMT, 921 Result = phFriNfc_Desf_HSendTransCmd(NdefSmtCrdFmt); 923 return (Result); 995 NFCSTATUS result = NFCSTATUS_SUCCESS; local 1078 NFCSTATUS result = NFCSTATUS_SUCCESS; local 1184 NFCSTATUS result = NFCSTATUS_SUCCESS; local 1204 NFCSTATUS result = NFCSTATUS_SUCCESS; local 1223 NFCSTATUS result = NFCSTATUS_SUCCESS; local [all...] |
phFriNfc_DesfireMap.c | 452 NFCSTATUS Result = NFCSTATUS_PENDING; 498 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP, NFCSTATUS_EOF_NDEF_CONTAINER_REACHED); 503 phFriNfc_Desfire_HCrHandler(NdefMap,Result); 557 Result = phFriNfc_Desfire_ReadBinary( NdefMap ); 559 if ( (Result & PHNFCSTBLOWER) != (NFCSTATUS_PENDING & PHNFCSTBLOWER) ) 562 phFriNfc_Desfire_HCrHandler(NdefMap,Result); 569 Result = PHNFCSTVAL(CID_NFC_NONE,NFCSTATUS_SUCCESS); 572 phFriNfc_Desfire_HCrHandler(NdefMap,Result); 580 Result = PHNFCSTVAL(CID_NFC_NONE,NFCSTATUS_SUCCESS); 593 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP [all...] |
phFriNfc_MifStdFormat.c | 220 NFCSTATUS Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_SMTCRDFMT, 241 Result = phFriNfc_MfStd_H_WrRdAuth(NdefSmtCrdFmt); 243 return Result; 520 NFCSTATUS Result = NFCSTATUS_SUCCESS; 534 Result = phFriNfc_OvrHal_Transceive( NdefSmtCrdFmt->LowerDevice, 543 return Result; 549 NFCSTATUS Result = Status; 557 Result = phFriNfc_OvrHal_Reconnect( NdefSmtCrdFmt->LowerDevice, 562 Result = phFriNfc_OvrHal_Disconnect( NdefSmtCrdFmt->LowerDevice, 567 return Result; [all...] |
phFriNfc_TopazMap.c | 260 NFCSTATUS Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP, 290 Result = phFriNfc_Tpz_H_RdBytes(NdefMap, NdefMap->TopazContainer.CurrentBlock, 293 return Result; 302 NFCSTATUS result = NFCSTATUS_SUCCESS; local 304 result = phFriNfc_Tpz_H_WrAByte (NdefMap, CC_BLOCK_NUMBER, 307 if (NFCSTATUS_PENDING == PHNFCSTATUS(result)) 311 return result; 329 NFCSTATUS Result = NFCSTATUS_SUCCESS; 383 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP, 390 Result = ((Offset == PH_FRINFC_NDEFMAP_SEEK_BEGIN) 851 NFCSTATUS result = NFCSTATUS_SUCCESS; local [all...] |
/external/llvm/bindings/ocaml/executionengine/ |
executionengine_ocaml.c | 241 LLVMGenericValueRef Result, *GVArgs; 249 Result = LLVMRunFunction(EE, F, NumArgs, GVArgs); 252 return alloc_generic_value(Result); 273 int I, NumArgs, NumEnv, EnvSize, Result; 311 Result = LLVMRunFunctionAsMain(EE, F, NumArgs, CArgs, CEnv); 317 CAMLreturn(Val_int(Result));
|
/external/llvm/examples/Kaleidoscope/Chapter2/ |
toy.cpp | 208 ExprAST *Result = new NumberExprAST(NumVal); 210 return Result;
|
/external/llvm/include/llvm/CodeGen/ |
MachineRelocation.h | 40 isResult, // Relocation has be transformed into its result pointer. 58 void *Result; // If this has been resolved to a resolved pointer 87 MachineRelocation Result; 88 Result.Offset = offset; 89 Result.ConstantVal = cst; 90 Result.TargetReloType = RelocationType; 91 Result.AddrType = isGV; 92 Result.MayNeedFarStub = MayNeedFarStub; 93 Result.GOTRelative = GOTrelative; 94 Result.TargetResolve = false [all...] |
/external/llvm/include/llvm/Support/ |
GCOV.h | 129 uint32_t Result; 133 Result = *(const uint32_t *)(Str.data()); 134 return Result; 140 uint64_t Result = Lo | (Hi << 32); 141 return Result;
|
/external/llvm/lib/Analysis/ |
AliasSetTracker.cpp | 104 AliasAnalysis::AliasResult Result = 108 if (Result != AliasAnalysis::MustAlias) 112 assert(Result != AliasAnalysis::NoAlias && "Cannot be part of must set!");
|
/external/llvm/lib/Archive/ |
ArchiveReader.cpp | 27 unsigned Result = 0; 31 return Result; 32 Result |= (unsigned)((*At++) & 0x7F) << Shift; 35 return Result; 330 std::auto_ptr<Archive> result ( new Archive(file, C)); 331 if (result->mapToMemory(ErrorMessage)) 333 if (!result->loadArchive(ErrorMessage)) 335 return result.release(); 445 std::auto_ptr<Archive> result ( new Archive(file, C) ); 446 if (result->mapToMemory(ErrorMessage) [all...] |
/external/llvm/lib/AsmParser/ |
LLLexer.cpp | 45 uint64_t Result = 0; 47 uint64_t OldRes = Result; 48 Result *= 10; 49 Result += *Buffer-'0'; 50 if (Result < OldRes) { // Uh, oh, overflow detected!!! 55 return Result; 69 uint64_t Result = 0; 71 uint64_t OldRes = Result; 72 Result *= 16; 73 Result += parseHexChar(*Buffer) [all...] |
LLParser.cpp | 30 std::string Result; 31 raw_string_ostream Tmp(Result); 306 Type *Result = 0; 308 NumberedTypes[TypeID], Result)) return true; 310 if (!isa<StructType>(Result)) { 314 Entry.first = Result; 333 Type *Result = 0; 335 NamedTypes[Name], Result)) return true; 337 if (!isa<StructType>(Result)) { 341 Entry.first = Result; [all...] |
/external/llvm/lib/ExecutionEngine/Interpreter/ |
ExternalFunctions.cpp | 183 const TargetData *TD, GenericValue &Result) { 229 case 8: Result.IntVal = APInt(8 , *(int8_t *) ret.data()); break; 230 case 16: Result.IntVal = APInt(16, *(int16_t*) ret.data()); break; 231 case 32: Result.IntVal = APInt(32, *(int32_t*) ret.data()); break; 232 case 64: Result.IntVal = APInt(64, *(int64_t*) ret.data()); break; 235 case Type::FloatTyID: Result.FloatVal = *(float *) ret.data(); break; 236 case Type::DoubleTyID: Result.DoubleVal = *(double*) ret.data(); break; 237 case Type::PointerTyID: Result.PointerVal = *(void **) ret.data(); break; 278 GenericValue Result; 279 if (RawFn != 0 && ffiInvoke(RawFn, F, ArgVals, getTargetData(), Result)) [all...] |
/external/llvm/lib/ExecutionEngine/JIT/ |
JITDwarfEmitter.cpp | 54 unsigned char* Result = 0; 59 Result = EmitEHFrame(Personalities[MMI->getPersonalityIndex()], EHFramePtr, 62 return Result;
|
/external/llvm/lib/MC/ |
MCExpr.cpp | 378 /// \brief Evaluate the result of an add between (conceptually) two MCValues. 381 /// Result = (Result_A - Result_B + Result_Cst) 383 /// Result = LHS + RHS 385 /// Result = (LHS_A - LHS_B + LHS_Cst) + (RHS_A - RHS_B + RHS_Cst). 387 /// This routine attempts to aggresively fold the operands such that the result 390 /// \returns True on success, false if the result is not representable in an 410 // Fold the result constant immediately. 420 // Result = (LHS_A - LHS_B + LHS_Cst) + (RHS_A - RHS_B + RHS_Cst). 563 // width, and gas defines the result of comparisons and right shifts 566 int64_t Result = 0 [all...] |
/external/llvm/lib/Support/ |
CrashRecoveryContext.cpp | 332 bool Result; 339 Info->Result = Info->CRC->RunSafely(Info->UserFn, Info->UserData); 345 return Info.Result;
|
Timer.cpp | 69 raw_ostream *Result = new raw_fd_ostream(OutputFilename.c_str(), 72 return Result; 76 delete Result; 130 TimeRecord Result; 134 Result.MemUsed = getMemUsage(); 138 Result.MemUsed = getMemUsage(); 141 Result.WallTime = now.seconds() + now.microseconds() / 1000000.0; 142 Result.UserTime = user.seconds() + user.microseconds() / 1000000.0; 143 Result.SystemTime = sys.seconds() + sys.microseconds() / 1000000.0; 144 return Result; [all...] |
Triple.cpp | 517 unsigned Result = 0; 521 Result = Result*10 + (Str[0] - '0'); 527 return Result;
|
/external/llvm/lib/Target/Mips/Disassembler/ |
MipsDisassembler.cpp | 272 DecodeStatus Result = readInstruction32(Region, Address, Size, 274 if (Result == MCDisassembler::Fail) 278 Result = decodeInstruction(DecoderTableMips32, instr, Insn, Address, 280 if (Result != MCDisassembler::Fail) { 282 return Result; 297 DecodeStatus Result = readInstruction32(Region, Address, Size, 299 if (Result == MCDisassembler::Fail) 303 Result = decodeInstruction(DecoderTableMips6432, instr, Insn, Address, 305 if (Result != MCDisassembler::Fail) { 307 return Result; [all...] |
/external/llvm/lib/Target/X86/ |
X86JITInfo.cpp | 472 StubLayout Result = {14, 4}; 473 return Result; 487 void *Result = (void*)JCE.getCurrentPCValue(); 501 return Result; 522 return Result;
|
/external/llvm/tools/lli/ |
lli.cpp | 627 int Result; 654 if (Target.executeCode(Entry, Result)) 664 Result = EE->runFunctionAsMain(EntryFn, InputArgv, envp); 678 ResultGV.IntVal = APInt(32, Result); 681 errs() << "ERROR: exit(" << Result << ") returned!\n"; 688 return Result;
|
/external/llvm/tools/llvm-nm/ |
llvm-nm.cpp | 330 Module *Result = 0; 331 Result = ParseBitcodeFile(Buffer.get(), Context, &ErrorMessage); 332 if (Result) { 333 DumpSymbolNamesFromModule(Result); 334 delete Result; 351 Module *Result = 0; 353 Result = ParseBitcodeFile(buff.get(), Context, &ErrorMessage); 355 if (Result) { 356 DumpSymbolNamesFromModule(Result); 357 delete Result; [all...] |
/external/llvm/utils/TableGen/ |
CodeGenTarget.cpp | 213 std::vector<MVT::SimpleValueType> Result; 219 Result.insert(Result.end(), InVTs.begin(), InVTs.end()); 224 array_pod_sort(Result.begin(), Result.end()); 225 Result.erase(std::unique(Result.begin(), Result.end()), Result.end()); 226 return Result; [all...] |