HomeSort by relevance Sort by last modified time
    Searched refs:pRes (Results 1 - 24 of 24) sorted by null

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numeric.ops/exclusive.scan/
exclusive_scan_init_op.pass.cpp 48 const int pRes[] = {0, 1, 4, 9, 16};
51 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure
55 test(Iter(ia), Iter(ia + i), 0, std::plus<>(), pRes, pRes + i);
exclusive_scan.pass.cpp 47 const int pRes[] = {0, 1, 4, 9, 16};
49 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure
52 test(Iter(ia), Iter(ia + i), 0, pRes, pRes + i);
  /external/libcxx/test/std/numerics/numeric.ops/exclusive.scan/
exclusive_scan.pass.cpp 50 const int pRes[] = {0, 1, 4, 9, 16};
52 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure
55 test(Iter(ia), Iter(ia + i), 0, pRes, pRes + i);
exclusive_scan_init_op.pass.cpp 51 const int pRes[] = {0, 1, 4, 9, 16};
54 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure
58 test(Iter(ia), Iter(ia + i), 0, std::plus<>(), pRes, pRes + i);
  /external/libcxx/test/std/numerics/numeric.ops/inclusive.scan/
inclusive_scan.pass.cpp 50 const int pRes[] = {1, 4, 9, 16, 25};
52 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure
55 test(Iter(ia), Iter(ia + i), pRes, pRes + i);
inclusive_scan_op.pass.cpp 52 const int pRes[] = {1, 4, 9, 16, 25};
55 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure
59 test(Iter(ia), Iter(ia + i), std::plus<>(), pRes, pRes + i);
inclusive_scan_op_init.pass.cpp 51 const int pRes[] = {1, 4, 9, 16, 25};
54 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure
58 test(Iter(ia), Iter(ia + i), std::plus<>(), 0, pRes, pRes + i);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numeric.ops/inclusive.scan/
inclusive_scan.pass.cpp 47 const int pRes[] = {1, 4, 9, 16, 25};
49 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure
52 test(Iter(ia), Iter(ia + i), pRes, pRes + i);
inclusive_scan_op.pass.cpp 49 const int pRes[] = {1, 4, 9, 16, 25};
52 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure
56 test(Iter(ia), Iter(ia + i), std::plus<>(), pRes, pRes + i);
inclusive_scan_op_init.pass.cpp 48 const int pRes[] = {1, 4, 9, 16, 25};
51 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure
55 test(Iter(ia), Iter(ia + i), std::plus<>(), 0, pRes, pRes + i);
  /hardware/nxp/secure_element/libese-spi/p73/lib/
phNxpEseProto7816_3.cpp     [all...]
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageUtil.java 150 Resources pRes = pContext.getResources();
153 Resources res = new Resources(assmgr, pRes.getDisplayMetrics(), pRes.getConfiguration());
  /external/pdfium/fpdfsdk/
fpdf_flatten.cpp 288 CPDF_Dictionary* pRes = pPageDict->GetDictFor("Resources");
289 if (!pRes)
290 pRes = pPageDict->SetNewFor<CPDF_Dictionary>("Resources");
297 CPDF_Dictionary* pPageXObject = pRes->GetDictFor("XObject");
299 pPageXObject = pRes->SetNewFor<CPDF_Dictionary>("XObject");
fpdf_transformpage.cpp 163 CPDF_Dictionary* pRes = pPageDict->GetDictFor("Resources");
164 if (pRes) {
165 CPDF_Dictionary* pPattenDict = pRes->GetDictFor("Pattern");
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTMatrix.h 766 @param[out] pRes Result
768 pRes should be an array large enough to contain the
774 float * const pRes,
782 @param[out] pRes Result
784 pRes should be an array large enough to contain the
789 int * const pRes,
PVRTVector.cpp 330 @Output pRes Result
332 pRes should be an array large enough to contain the
336 void PVRTLinearEqSolve(VERTTYPE * const pRes, VERTTYPE ** const pSrc, const int nCnt)
344 pRes[0] = VERTTYPEDIV(pSrc[0][0], pSrc[0][1]);
386 PVRTLinearEqSolve(pRes, pSrc, nCnt - 1);
392 f -= VERTTYPEMUL(pSrc[nCnt-1][k], pRes[k-1]);
396 pRes[nCnt-1] = f;
PVRTMatrixF.cpp 767 @Output pRes Result
769 pRes should be an array large enough to contain the
774 float * const pRes,
798 pRes[0] = pSrc[0][0] / pSrc[0][1];
840 PVRTMatrixLinearEqSolveF(pRes, pSrc, nCnt - 1);
846 f -= pSrc[nCnt-1][k] * pRes[k-1];
850 pRes[nCnt-1] = f;
861 fCnt += pSrc[nCnt-1][i] * pRes[i-1];
PVRTMatrixX.cpp 795 @Output pRes Result
797 pRes should be an array large enough to contain the
802 int * const pRes,
812 pRes[0] = PVRTXDIV(pSrc[0][0], pSrc[0][1]);
854 PVRTMatrixLinearEqSolveX(pRes, pSrc, nCnt - 1);
860 f -= PVRTXMUL(pSrc[nCnt-1][k], pRes[k-1]);
864 pRes[nCnt-1] = f;
PVRTVector.h 31 @param[out] pRes Result
33 pRes should be an array large enough to contain the
37 void PVRTLinearEqSolve(VERTTYPE * const pRes, VERTTYPE ** const pSrc, const int nCnt);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
txdtc.h 366 virtual HRESULT WINAPI Enlist(ITransaction *pTransaction,ITransactionResourceAsync *pRes,XACTUOW *pUOW,LONG *pisoLevel,ITransactionEnlistmentAsync **ppEnlist) = 0;
377 HRESULT (WINAPI *Enlist)(IResourceManager *This,ITransaction *pTransaction,ITransactionResourceAsync *pRes,XACTUOW *pUOW,LONG *pisoLevel,ITransactionEnlistmentAsync **ppEnlist);
390 #define IResourceManager_Enlist(This,pTransaction,pRes,pUOW,pisoLevel,ppEnlist) (This)->lpVtbl->Enlist(This,pTransaction,pRes,pUOW,pisoLevel,ppEnlist)
396 HRESULT WINAPI IResourceManager_Enlist_Proxy(IResourceManager *This,ITransaction *pTransaction,ITransactionResourceAsync *pRes,XACTUOW *pUOW,LONG *pisoLevel,ITransactionEnlistmentAsync **ppEnlist);
457 HRESULT (WINAPI *Enlist)(IResourceManager2 *This,ITransaction *pTransaction,ITransactionResourceAsync *pRes,XACTUOW *pUOW,LONG *pisoLevel,ITransactionEnlistmentAsync **ppEnlist);
472 #define IResourceManager2_Enlist(This,pTransaction,pRes,pUOW,pisoLevel,ppEnlist) (This)->lpVtbl->Enlist(This,pTransaction,pRes,pUOW,pisoLevel,ppEnlist)
    [all...]
  /external/python/cpython3/PC/
winreg.c 19 static BOOL PyHKEY_AsHKEY(PyObject *ob, HKEY *pRes, BOOL bNoneOK);
    [all...]
  /external/python/cpython2/PC/
_winreg.c 20 static BOOL PyHKEY_AsHKEY(PyObject *ob, HKEY *pRes, BOOL bNoneOK);
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 1638 milliseconds