/external/libcxx/test/std/numerics/numeric.ops/exclusive.scan/ |
D | exclusive_scan_init_op.pass.cpp | 51 const int pRes[] = {0, 1, 4, 9, 16}; in test() local 54 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure in test() 58 test(Iter(ia), Iter(ia + i), 0, std::plus<>(), pRes, pRes + i); in test()
|
D | exclusive_scan.pass.cpp | 50 const int pRes[] = {0, 1, 4, 9, 16}; in test() local 52 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure in test() 55 test(Iter(ia), Iter(ia + i), 0, pRes, pRes + i); in test()
|
/external/libcxx/test/std/numerics/numeric.ops/inclusive.scan/ |
D | inclusive_scan.pass.cpp | 50 const int pRes[] = {1, 4, 9, 16, 25}; in test() local 52 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure in test() 55 test(Iter(ia), Iter(ia + i), pRes, pRes + i); in test()
|
D | inclusive_scan_op.pass.cpp | 52 const int pRes[] = {1, 4, 9, 16, 25}; in test() local 55 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure in test() 59 test(Iter(ia), Iter(ia + i), std::plus<>(), pRes, pRes + i); in test()
|
D | inclusive_scan_op_init.pass.cpp | 51 const int pRes[] = {1, 4, 9, 16, 25}; in test() local 54 static_assert(sa == sizeof(pRes) / sizeof(pRes[0])); // just to be sure in test() 58 test(Iter(ia), Iter(ia + i), std::plus<>(), 0, pRes, pRes + i); in test()
|
/external/pdfium/fpdfsdk/ |
D | fpdf_flatten.cpp | 288 CPDF_Dictionary* pRes = pPageDict->GetDictFor("Resources"); in FPDFPage_Flatten() local 289 if (!pRes) in FPDFPage_Flatten() 290 pRes = pPageDict->SetNewFor<CPDF_Dictionary>("Resources"); in FPDFPage_Flatten() 297 CPDF_Dictionary* pPageXObject = pRes->GetDictFor("XObject"); in FPDFPage_Flatten() 299 pPageXObject = pRes->SetNewFor<CPDF_Dictionary>("XObject"); in FPDFPage_Flatten()
|
D | fpdf_transformpage.cpp | 163 CPDF_Dictionary* pRes = pPageDict->GetDictFor("Resources"); in FPDFPage_TransFormWithClip() local 164 if (pRes) { in FPDFPage_TransFormWithClip() 165 CPDF_Dictionary* pPattenDict = pRes->GetDictFor("Pattern"); in FPDFPage_TransFormWithClip()
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
D | PVRTVector.cpp | 336 void PVRTLinearEqSolve(VERTTYPE * const pRes, VERTTYPE ** const pSrc, const int nCnt) in PVRTLinearEqSolve() argument 344 pRes[0] = VERTTYPEDIV(pSrc[0][0], pSrc[0][1]); in PVRTLinearEqSolve() 386 PVRTLinearEqSolve(pRes, pSrc, nCnt - 1); in PVRTLinearEqSolve() 392 f -= VERTTYPEMUL(pSrc[nCnt-1][k], pRes[k-1]); in PVRTLinearEqSolve() 396 pRes[nCnt-1] = f; in PVRTLinearEqSolve()
|
D | PVRTMatrixF.cpp | 774 float * const pRes, in PVRTMatrixLinearEqSolveF() argument 798 pRes[0] = pSrc[0][0] / pSrc[0][1]; in PVRTMatrixLinearEqSolveF() 840 PVRTMatrixLinearEqSolveF(pRes, pSrc, nCnt - 1); in PVRTMatrixLinearEqSolveF() 846 f -= pSrc[nCnt-1][k] * pRes[k-1]; in PVRTMatrixLinearEqSolveF() 850 pRes[nCnt-1] = f; in PVRTMatrixLinearEqSolveF() 861 fCnt += pSrc[nCnt-1][i] * pRes[i-1]; in PVRTMatrixLinearEqSolveF()
|
D | PVRTMatrix.h | 774 float * const pRes, 789 int * const pRes,
|
D | PVRTMatrixX.cpp | 802 int * const pRes, in PVRTMatrixLinearEqSolveX() argument 812 pRes[0] = PVRTXDIV(pSrc[0][0], pSrc[0][1]); in PVRTMatrixLinearEqSolveX() 854 PVRTMatrixLinearEqSolveX(pRes, pSrc, nCnt - 1); in PVRTMatrixLinearEqSolveX() 860 f -= PVRTXMUL(pSrc[nCnt-1][k], pRes[k-1]); in PVRTMatrixLinearEqSolveX() 864 pRes[nCnt-1] = f; in PVRTMatrixLinearEqSolveX()
|
D | PVRTVector.h | 37 void PVRTLinearEqSolve(VERTTYPE * const pRes, VERTTYPE ** const pSrc, const int nCnt); 1662 VERTTYPE pRes[4]; in inverseEx() local 1678 PVRTLinearEqSolve(pRes, (VERTTYPE**)ppRows, 4); in inverseEx() 1682 out.f[i + 4 * j] = pRes[j]; in inverseEx()
|
/external/python/cpython3/PC/ |
D | winreg.c | 19 static BOOL PyHKEY_AsHKEY(PyObject *ob, HKEY *pRes, BOOL bNoneOK);
|
/external/python/cpython2/PC/ |
D | _winreg.c | 20 static BOOL PyHKEY_AsHKEY(PyObject *ob, HKEY *pRes, BOOL bNoneOK);
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 13536 int *pRes 13577 SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor*, int *pRes); 13578 SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor*, int *pRes); 45545 sqlite3_pcache_page *pRes; 45563 pRes = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, eCreate); 45565 createFlag?" create":"",pRes)); 45566 return pRes; 49074 static int read32bits(sqlite3_file *fd, i64 offset, u32 *pRes){ 49078 *pRes = sqlite3Get4byte(ac); 61198 int *pRes /* Write search results here */ [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 13536 int *pRes 13577 SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor*, int *pRes); 13578 SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor*, int *pRes); 45561 sqlite3_pcache_page *pRes; 45579 pRes = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, eCreate); 45581 createFlag?" create":"",pRes)); 45582 return pRes; 49090 static int read32bits(sqlite3_file *fd, i64 offset, u32 *pRes){ 49094 *pRes = sqlite3Get4byte(ac); 61214 int *pRes /* Write search results here */ [all …]
|