Searched refs:pFunc (Results 1 - 19 of 19) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_pattern.cpp111 CPDF_Object* pFunc = pShadingDict->GetElementValue(FX_BSTRC("Function")); local
112 if (pFunc) {
113 if (pFunc->GetType() == PDFOBJ_ARRAY) {
114 m_nFuncs = ((CPDF_Array*)pFunc)->GetCount();
119 m_pFunctions[i] = CPDF_Function::Load(((CPDF_Array*)pFunc)->GetElementValue(i));
122 m_pFunctions[0] = CPDF_Function::Load(pFunc);
H A Dfpdf_page_func.cpp781 CPDF_Function* pFunc = NULL; local
791 pFunc = FX_NEW CPDF_SampledFunc;
793 pFunc = FX_NEW CPDF_ExpIntFunc;
795 pFunc = FX_NEW CPDF_StitchFunc;
797 pFunc = FX_NEW CPDF_PSFunc;
801 if (!pFunc->Init(pFuncObj)) {
802 delete pFunc;
805 return pFunc;
/external/chromium_org/third_party/sqlite/src/src/
H A Dattach.c291 FuncDef const *pFunc,/* FuncDef wrapper for detachFunc() or attachFunc() */
339 sqlite3VdbeAddOp3(v, OP_Function, 0, regArgs+3-pFunc->nArg, regArgs+3);
340 assert( pFunc->nArg==-1 || (pFunc->nArg&0xff)==pFunc->nArg );
341 sqlite3VdbeChangeP5(v, (u8)(pFunc->nArg));
342 sqlite3VdbeChangeP4(v, -1, (char *)pFunc, P4_FUNCDEF);
288 codeAttach( Parse *pParse, int type, FuncDef const *pFunc, Expr *pAuthArg, Expr *pFilename, Expr *pDbname, Expr *pKey ) argument
H A Dvdbeapi.c514 assert( p && p->pFunc );
515 return p->pFunc->pUserData;
529 assert( p && p->pFunc );
546 const char *zName = context->pFunc->zName;
562 assert( p && p->pFunc && p->pFunc->xStep );
574 pMem->u.pDef = p->pFunc;
625 pVdbeFunc->pFunc = pCtx->pFunc;
653 assert( p && p->pMem && p->pFunc
[all...]
H A DvdbeInt.h223 FuncDef *pFunc; /* The definition of the function */ member in struct:VdbeFunc
245 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */ member in struct:sqlite3_context
H A Dvdbemem.c247 int sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc){ argument
249 if( ALWAYS(pFunc && pFunc->xFinalize) ){
251 assert( (pMem->flags & MEM_Null)!=0 || pFunc==pMem->u.pDef );
257 ctx.pFunc = pFunc;
258 pFunc->xFinalize(&ctx); /* IMP: R-24505-23230 */
H A Dvdbe.h56 FuncDef *pFunc; /* Used when p4type is P4_FUNCDEF */ member in union:VdbeOp::__anon15536
H A Dtclsqlite.c123 SqlFunc *pFunc; /* List of SQL functions */ member in struct:SqliteDb
419 for(p=pDb->pFunc; p; p=p->pNext){
427 pNew->pNext = pDb->pFunc;
428 pDb->pFunc = pNew;
457 while( pDb->pFunc ){
458 SqlFunc *pFunc = pDb->pFunc; local
459 pDb->pFunc = pFunc->pNext;
460 Tcl_DecrRefCount(pFunc
2258 SqlFunc *pFunc; local
[all...]
H A Dselect.c3103 if( (pAggInfo->aFunc[0].pFunc->flags&SQLITE_FUNC_COUNT)==0 ) return 0;
3511 struct AggInfo_func *pFunc; local
3518 for(pFunc=pAggInfo->aFunc, i=0; i<pAggInfo->nFunc; i++, pFunc++){
3519 sqlite3VdbeAddOp2(v, OP_Null, 0, pFunc->iMem);
3520 if( pFunc->iDistinct>=0 ){
3521 Expr *pE = pFunc->pExpr;
3526 pFunc->iDistinct = -1;
3529 sqlite3VdbeAddOp4(v, OP_OpenEphemeral, pFunc->iDistinct, 0, 0,
3548 (void*)pF->pFunc, P4_FUNCDE
[all...]
H A Dvdbe.c1370 ctx.pFunc = pOp->p4.pFunc;
1374 ctx.pFunc = ctx.pVdbeFunc->pFunc;
1390 if( ctx.pFunc->flags & SQLITE_FUNC_NEEDCOLL ){
1396 (*ctx.pFunc->xFunc)(&ctx, n, apVal); /* IMP: R-24505-23230 */
5179 ctx.pFunc = pOp->p4.pFunc;
5190 if( ctx.pFunc->flags & SQLITE_FUNC_NEEDCOLL ){
5196 (ctx.pFunc
[all...]
H A Dtest1.c1896 Tcl_Obj *pFunc; /* Script for function invocation */ member in struct:CreateFunctionV2
1915 if( p->pFunc ) Tcl_DecrRefCount(p->pFunc);
1976 case 0: p->pFunc = objv[i+1]; break;
1982 if( p->pFunc ) p->pFunc = Tcl_DuplicateObj(p->pFunc);
1987 if( p->pFunc ) Tcl_IncrRefCount(p->pFunc);
1993 (p->pFunc
[all...]
H A Dtest_vfstrace.c685 sqlite3_syscall_ptr pFunc
689 return pRoot->xSetSystemCall(pRoot, zName, pFunc);
H A Dvdbeaux.c607 freeEphemeralFunction(db, pVdbeFunc->pFunc);
892 FuncDef *pDef = pOp->p4.pFunc;
H A DsqliteInt.h1550 FuncDef *pFunc; /* The aggregate function implementation */ member in struct:AggInfo::AggInfo_func
H A Dexpr.c3633 pItem->pFunc = sqlite3FindFunction(pParse->db,
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_image.cpp1059 CPDF_Function* pFunc = NULL; local
1062 pFunc = CPDF_Function::Load(pFuncObj);
1129 if (pFunc) {
1130 CFX_FixedBufGrow<FX_FLOAT, 16> results(pFunc->CountOutputs());
1134 pFunc->Call(&input, 1, results, nresult);
1152 } else if (pFunc) {
1160 if (pFunc) {
1161 delete pFunc;
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c7926 FuncDef *pFunc; /* Used when p4type is P4_FUNCDEF */ member in union:VdbeOp::__anon15458
9895 FuncDef *pFunc; /* The aggregate function implementation */ member in struct:AggInfo::AggInfo_func
12437 FuncDef *pFunc; /* The definition of the function */ member in struct:VdbeFunc
12459 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */ member in struct:sqlite3_context
56212 sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc) argument
76331 codeAttach( Parse *pParse, int type, FuncDef const *pFunc, Expr *pAuthArg, Expr *pFilename, Expr *pDbname, Expr *pKey ) argument
93433 struct AggInfo_func *pFunc; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c9146 FuncDef *pFunc; /* Used when p4type is P4_FUNCDEF */ member in union:VdbeOp::__anon30998
11263 FuncDef *pFunc; /* The aggregate function implementation */ member in struct:AggInfo::AggInfo_func
14127 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */ member in struct:sqlite3_context
61097 sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc) argument
85565 codeAttach( Parse *pParse, int type, FuncDef const *pFunc, Expr *pAuthArg, Expr *pFilename, Expr *pDbname, Expr *pKey ) argument
105804 struct AggInfo_func *pFunc; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c9146 FuncDef *pFunc; /* Used when p4type is P4_FUNCDEF */ member in union:VdbeOp::__anon31029
11263 FuncDef *pFunc; /* The aggregate function implementation */ member in struct:AggInfo::AggInfo_func
14127 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */ member in struct:sqlite3_context
61117 sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc) argument
85585 codeAttach( Parse *pParse, int type, FuncDef const *pFunc, Expr *pAuthArg, Expr *pFilename, Expr *pDbname, Expr *pKey ) argument
105824 struct AggInfo_func *pFunc; local
[all...]

Completed in 4803 milliseconds