Home
last modified time | relevance | path

Searched refs:pArg (Results 1 – 5 of 5) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder_misc.cpp389 Value* pArg = *v; in PRINT() local
390 Type* pType = pArg->getType(); in PRINT()
407 printCallArgs.push_back(VEXTRACT(pArg, C(0))); in PRINT()
417 printCallArgs.push_back(VEXTRACT(pArg, C(i))); in PRINT()
435 FP_EXT(VEXTRACT(pArg, C(i)), Type::getDoubleTy(JM()->mContext))); in PRINT()
438 FP_EXT(VEXTRACT(pArg, C(i)), Type::getDoubleTy(JM()->mContext))); in PRINT()
452 S_EXT(VEXTRACT(pArg, C(i)), Type::getInt32Ty(JM()->mContext))); in PRINT()
455 S_EXT(VEXTRACT(pArg, C(i)), Type::getInt32Ty(JM()->mContext))); in PRINT()
469 Z_EXT(VEXTRACT(pArg, C(i)), Type::getInt32Ty(JM()->mContext))); in PRINT()
472 Z_EXT(VEXTRACT(pArg, C(i)), Type::getInt32Ty(JM()->mContext))); in PRINT()
[all …]
/third_party/sqlite/src/
Dshell.c3834 static int apndFileControl(sqlite3_file*, int op, void *pArg);
4039 static int apndFileControl(sqlite3_file *pFile, int op, void *pArg){ in apndFileControl() argument
4043 if( op==SQLITE_FCNTL_SIZE_HINT ) *(sqlite3_int64*)pArg += paf->iPgOne; in apndFileControl()
4044 rc = pFile->pMethods->xFileControl(pFile, op, pArg); in apndFileControl()
4046 *(char**)pArg = sqlite3_mprintf("apnd(%lld)/%z", paf->iPgOne,*(char**)pArg); in apndFileControl()
5050 Decimal *pArg; in decimalSumStep() local
5066 pArg = decimal_new(context, argv[0], 0, 0); in decimalSumStep()
5067 decimal_add(p, pArg); in decimalSumStep()
5068 decimal_free(pArg); in decimalSumStep()
5076 Decimal *pArg; in decimalSumInverse() local
[all …]
Dsqlite3.c1143 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
6319 void *pArg,
6326 void *pArg,
6334 void *pArg,
9028 void *pArg; member
9050 void *pArg; member
10673 SQLITE_API int sqlite3session_object_config(sqlite3_session*, int op, void *pArg);
12271 SQLITE_API int sqlite3session_config(int op, void *pArg);
17005 #define STR_FUNCTION(zName, nArg, pArg, bNC, xFunc) \ argument
17008 pArg, 0, xFunc, 0, 0, 0, #zName, }
[all …]
/third_party/sqlite/include/
Dsqlite3.h833 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
6006 void *pArg,
6013 void *pArg,
6021 void *pArg,
8715 void *pArg; member
8737 void *pArg; member
10339 SQLITE_API int sqlite3session_object_config(sqlite3_session*, int op, void *pArg);
11937 SQLITE_API int sqlite3session_config(int op, void *pArg);
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch81103 + Decimal *pArg;
81121 + pArg = decimal_new(context, argv[0], 0, 0);
81122 + decimal_add(p, pArg);
81123 + decimal_free(pArg);
81131 + Decimal *pArg;
81136 + pArg = decimal_new(context, argv[0], 0, 0);
81137 + if( pArg ) pArg->sign = !pArg->sign;
81138 + decimal_add(p, pArg);
81139 + decimal_free(pArg);
82414 -static int apndFileControl(sqlite3_file*, int op, void *pArg);
[all …]