/external/capstone/bindings/powershell/Capstone/ |
Capstone.psm1 | 316 $CallResult = [Capstone]::cs_open($Architecture,$Mode,[ref]$DisAsmHandle) 317 if ($CallResult -ne "CS_ERR_OK") { 318 if ($CallResult -eq "CS_ERR_MODE"){ 322 echo "`n[!] cs_open error: $CallResult" 339 $CallResult = [Capstone]::cs_option($DisAsmHandle, 1, $CS_OPT_SYNTAX) 340 if ($CallResult -ne "CS_ERR_OK") { 341 echo "`n[!] cs_option error: $CallResult" 343 $CallResult = [Capstone]::cs_close([ref]$DisAsmHandle) 358 $CallResult = [Capstone]::cs_option($DisAsmHandle, 2, $CS_OPT) 359 if ($CallResult -ne "CS_ERR_OK") [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonSelectionDAGInfo.cpp | 58 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI); 59 return CallResult.second;
|
/external/llvm/lib/Target/XCore/ |
XCoreSelectionDAGInfo.cpp | 45 std::pair<SDValue,SDValue> CallResult = TLI.LowerCallTo(CLI); 46 return CallResult.second;
|
XCoreISelLowering.cpp | 497 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI); 498 SDValue Ops[] = { CallResult.first, CallResult.second }; 560 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI); 561 return CallResult.second; [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64SelectionDAGInfo.cpp | 49 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI); 50 return CallResult.second;
|
/packages/apps/Contacts/tests/src/com/android/contacts/util/ |
ContactDisplayUtilTests.java | 65 final CharSequence callResult = ContactDisplayUtils.getLabelForCallOrSms(Phone.TYPE_CUSTOM, 67 assertEquals("expected call label", callResult);
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
ARMSelectionDAGInfo.cpp | 181 std::pair<SDValue,SDValue> CallResult = 196 return CallResult.second;
|
/external/llvm/lib/Transforms/Instrumentation/ |
IndirectCallPromotion.cpp | 357 // Find the PHI in BB that have the CallResult as the operand. 494 static void insertCallRetPHI(Instruction *Inst, Instruction *CallResult, 499 BasicBlock *RetValBB = CallResult->getParent(); 502 if (InvokeInst *II = dyn_cast<InvokeInst>(CallResult)) 513 CallRetPHI->addIncoming(CallResult, RetValBB);
|
/external/llvm/lib/Target/ARM/ |
ARMSelectionDAGInfo.cpp | 123 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI); 125 return CallResult.second;
|
/external/llvm/lib/Target/X86/ |
X86SelectionDAGInfo.cpp | 93 std::pair<SDValue,SDValue> CallResult = TLI.LowerCallTo(CLI); 94 return CallResult.second;
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
X86SelectionDAGInfo.cpp | 65 std::pair<SDValue,SDValue> CallResult = 71 return CallResult.second;
|
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.1/ |
kotlin-compiler-runner-1.1.1.jar | |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.2.0/ |
kotlin-compiler-runner-1.2.0.jar | |
/external/kotlinc/lib/ |
kotlin-daemon-client.jar | |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.51/ |
kotlin-compiler-runner-1.1.51.jar | |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.2.20/ |
kotlin-compiler-runner-1.2.20.jar | |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-daemon-client/1.2.0/ |
kotlin-daemon-client-1.2.0.jar | |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-daemon-client/1.2.20/ |
kotlin-daemon-client-1.2.20.jar | |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/ |
kotlin-compiler-runner-1.1.3.jar | |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
unicodeobject.c | 661 PyObject **callresult = NULL;
local 713 callresult = callresults;
761 *callresult++ = str;
793 *callresult++ = str;
806 *callresult++ = repr;
851 callresult = callresults;
919 Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(*callresult),
920 PyUnicode_GET_SIZE(*callresult));
921 s += PyUnicode_GET_SIZE(*callresult);
923 Py_DECREF(*callresult);
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
unicodeobject.c | 706 PyObject **callresult = NULL;
local 755 callresult = callresults;
826 *callresult++ = str;
858 *callresult++ = str;
871 *callresult++ = repr;
917 callresult = callresults;
985 Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(*callresult),
986 PyUnicode_GET_SIZE(*callresult));
987 s += PyUnicode_GET_SIZE(*callresult);
989 Py_DECREF(*callresult);
[all...] |
/external/python/cpython2/Objects/ |
unicodeobject.c | 705 PyObject **callresult = NULL; local 754 callresult = callresults; 825 *callresult++ = str; 857 *callresult++ = str; 870 *callresult++ = repr; 916 callresult = callresults; 984 Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(*callresult), 985 PyUnicode_GET_SIZE(*callresult)); 986 s += PyUnicode_GET_SIZE(*callresult); 988 Py_DECREF(*callresult); [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/XCore/ |
XCoreISelLowering.cpp | 479 std::pair<SDValue, SDValue> CallResult = 487 { CallResult.first, CallResult.second }; 541 std::pair<SDValue, SDValue> CallResult = 548 return CallResult.second; [all...] |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/ |
kotlin-gradle-plugin-1.1.3.jar | |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.51/ |
kotlin-gradle-plugin-1.1.51.jar | |