Searched defs:pX (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dmutex_noop.c89 static int debugMutexHeld(sqlite3_mutex *pX){ argument
90 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX;
93 static int debugMutexNotheld(sqlite3_mutex *pX){ argument
94 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX;
136 static void debugMutexFree(sqlite3_mutex *pX){ argument
137 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX;
154 static void debugMutexEnter(sqlite3_mutex *pX){ argument
155 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX;
156 assert( p->id==SQLITE_MUTEX_RECURSIVE || debugMutexNotheld(pX) );
159 static int debugMutexTry(sqlite3_mutex *pX){ argument
172 debugMutexLeave(sqlite3_mutex *pX) argument
[all...]
H A Dresolve.c988 Expr *pX = pEList->a[i].pExpr; local
989 if( sqlite3ResolveExprNames(&sNC, pX) ){
H A Dtest_fuzzer.c273 fuzzer_rule *pX; local
276 while( (pX = p->pNewRule)!=0 ){
277 p->pNewRule = pX->pNext;
278 pX->pNext = 0;
280 pX = fuzzerMergeRules(a[i], pX);
283 a[i] = fuzzerMergeRules(a[i], pX);
285 for(pX=a[0], i=1; i<sizeof(a)/sizeof(a[0]); i++){
286 pX = fuzzerMergeRules(a[i], pX);
496 fuzzer_stem *pBest, *pX; local
527 fuzzer_stem *pX; local
[all...]
H A Dvdbemem.c599 Mem *pX; local
600 for(i=1, pX=&pVdbe->aMem[1]; i<=pVdbe->nMem; i++, pX++){
601 if( pX->pScopyFrom==pMem ){
602 pX->flags |= MEM_Invalid;
603 pX->pScopyFrom = 0;
H A Dos_os2.c1216 os2ShmLink *pX; /* For looping over all siblings */ local
1237 for(pX=pShmNode->pFirst; pX; pX=pX->pNext){
1238 if( pX==p ) continue;
1239 assert( (pX->exclMask & (p->exclMask|p->sharedMask))==0 );
1240 allMask |= pX->sharedMask;
1262 for(pX=pShmNode->pFirst; pX; p
[all...]
H A Dos_win.c1598 winShm *pX; /* For looping over all siblings */ local
1618 for(pX=pShmNode->pFirst; pX; pX=pX->pNext){
1619 if( pX==p ) continue;
1620 assert( (pX->exclMask & (p->exclMask|p->sharedMask))==0 );
1621 allMask |= pX->sharedMask;
1643 for(pX=pShmNode->pFirst; pX; p
[all...]
H A Dvdbe.c3018 Btree *pX; local
3034 pX = pDb->pBt;
3035 assert( pX!=0 );
3074 rc = sqlite3BtreeCursor(pX, p2, wrFlag, pKeyInfo, pCur->pCursor);
5774 Mem *pX; local
5782 pX = &aMem[pOp->p3];
5784 assert( memIsValid(pX) );
5785 memAboutToChange(p, pX);
5786 sqlite3VdbeMemStoreType(pX);
5787 apArg[i] = pX;
[all...]
H A Dexpr.c1380 ** or ephermal table) is stored in pX->iTable before this function returns.
1428 int sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound){ argument
1434 assert( pX->op==TK_IN );
1440 p = (ExprHasProperty(pX, EP_xIsSelect) ? pX->x.pSelect : 0);
1476 CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr);
1482 char aff = comparisonAffinity(pX);
1524 if( pX->pLeft->iColumn<0 && !ExprHasAnyProperty(pX, EP_xIsSelect) ){
1528 sqlite3CodeSubselect(pParse, pX, rMayHaveNul
2768 Expr *pX; /* The X expression */ local
[all...]
H A Dos_unix.c4004 unixShm *pX; /* For looping over all siblings */ local
4028 for(pX=pShmNode->pFirst; pX; pX=pX->pNext){
4029 if( pX==p ) continue;
4030 assert( (pX->exclMask & (p->exclMask|p->sharedMask))==0 );
4031 allMask |= pX->sharedMask;
4053 for(pX=pShmNode->pFirst; pX; p
[all...]
H A Dtest1.c2539 Tcl_Obj *pX; local
2541 pX = Tcl_NewStringObj("test_collate", -1);
2542 Tcl_IncrRefCount(pX);
2546 Tcl_ListObjAppendElement(i,pX,Tcl_NewStringObj("UTF-8",-1));
2549 Tcl_ListObjAppendElement(i,pX,Tcl_NewStringObj("UTF-16LE",-1));
2552 Tcl_ListObjAppendElement(i,pX,Tcl_NewStringObj("UTF-16BE",-1));
2563 Tcl_ListObjAppendElement(i,pX,
2567 Tcl_ListObjAppendElement(i,pX,
2573 Tcl_EvalObjEx(i, pX, 0);
2574 Tcl_DecrRefCount(pX);
2770 Tcl_Obj *pX; local
2794 Tcl_Obj *pX; local
2816 Tcl_Obj *pX; local
[all...]
H A Dwhere.c585 Expr *pX = pTerm->pExpr; local
592 if( !sqlite3IndexAffinityOk(pX, idxaff) ) continue;
595 ** it to be useful for optimising expression pX. Store this
598 assert(pX->pLeft);
599 pColl = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pX->pRight);
1894 Expr *pX = pTerm->pExpr; local
1897 pColl = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pX->pRight);
3270 Expr *pX local
3725 Expr *pX; /* The expression that defines the start bound */ local
3755 Expr *pX; local
[all...]
/external/qemu/android/
H A Duser-config.c160 auserConfig_getWindowPos( AUserConfig* uconfig, int *pX, int *pY ) argument
162 *pX = uconfig->windowX;
/external/chromium_org/third_party/libwebp/dsp/
H A Dlossless_mips32.c142 // const uint32_t* pX = &X[4];
145 // while (pX != LoopEnd) {
146 // const uint32_t xy0 = *pX + *pY;
147 // const uint32_t xy1 = *(pX + 1) + *(pY + 1);
151 // pX += 2;
158 const uint32_t* pX = &X[4]; local
165 "beq %[pX], %[LoopEnd], 2f \n\t"
167 "lw %[temp0], 0(%[pX]) \n\t"
169 "lw %[temp2], 4(%[pX]) \n\t"
174 "addiu %[pX],
[all...]
/external/webp/src/dsp/
H A Dlossless_mips32.c142 // const uint32_t* pX = &X[4];
145 // while (pX != LoopEnd) {
146 // const uint32_t xy0 = *pX + *pY;
147 // const uint32_t xy1 = *(pX + 1) + *(pY + 1);
151 // pX += 2;
158 const uint32_t* pX = &X[4]; local
165 "beq %[pX], %[LoopEnd], 2f \n\t"
167 "lw %[temp0], 0(%[pX]) \n\t"
169 "lw %[temp2], 4(%[pX]) \n\t"
174 "addiu %[pX],
[all...]
/external/opencv/cv/src/
H A Dcvsnakes.cpp104 CvSepFilter pX, pY; local
146 pX.init_deriv( TILE_SIZE+2, CV_8UC1, CV_16SC1, 1, 0, 3 );
308 pX.process( &_src1, &_dx );
/external/chromium_org/third_party/zlib/contrib/minizip/
H A Dunzip.c237 uLong *pX));
241 uLong *pX)
255 *pX = x;
257 *pX = 0;
264 uLong *pX));
268 uLong *pX)
290 *pX = x;
292 *pX = 0;
299 ZPOS64_T *pX));
304 ZPOS64_T *pX)
239 unz64local_getShort(const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong *pX) argument
266 unz64local_getLong(const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong *pX) argument
302 unz64local_getLong64(const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, ZPOS64_T *pX) argument
[all...]
H A Dzip.c371 local int zip64local_getShort OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong *pX));
373 local int zip64local_getShort (const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong* pX) argument
387 *pX = x;
389 *pX = 0;
393 local int zip64local_getLong OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong *pX));
395 local int zip64local_getLong (const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong* pX) argument
417 *pX = x;
419 *pX = 0;
423 local int zip64local_getLong64 OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, ZPOS64_T *pX));
426 local int zip64local_getLong64 (const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, ZPOS64_T *pX) argument
[all...]
/external/zlib/src/contrib/minizip/
H A Dunzip.c237 uLong *pX));
241 uLong *pX)
255 *pX = x;
257 *pX = 0;
264 uLong *pX));
268 uLong *pX)
290 *pX = x;
292 *pX = 0;
299 ZPOS64_T *pX));
304 ZPOS64_T *pX)
239 unz64local_getShort(const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong *pX) argument
266 unz64local_getLong(const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong *pX) argument
302 unz64local_getLong64(const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, ZPOS64_T *pX) argument
[all...]
H A Dzip.c371 local int zip64local_getShort OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong *pX));
373 local int zip64local_getShort (const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong* pX) argument
387 *pX = x;
389 *pX = 0;
393 local int zip64local_getLong OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong *pX));
395 local int zip64local_getLong (const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong* pX) argument
417 *pX = x;
419 *pX = 0;
423 local int zip64local_getLong64 OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, ZPOS64_T *pX));
426 local int zip64local_getLong64 (const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, ZPOS64_T *pX) argument
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c16624 static int debugMutexHeld(sqlite3_mutex *pX){ argument
16625 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX;
16628 static int debugMutexNotheld(sqlite3_mutex *pX){ argument
16629 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX;
16671 static void debugMutexFree(sqlite3_mutex *pX){ argument
16672 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX;
16689 static void debugMutexEnter(sqlite3_mutex *pX){ argument
16690 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX;
16691 assert( p->id==SQLITE_MUTEX_RECURSIVE || debugMutexNotheld(pX) );
16694 static int debugMutexTry(sqlite3_mutex *pX){ argument
16707 debugMutexLeave(sqlite3_mutex *pX) argument
23228 os2ShmLink *pX; /* For looping over all siblings */ local
28145 unixShm *pX; /* For looping over all siblings */ local
32717 winShm *pX; /* For looping over all siblings */ local
56564 Mem *pX; local
62633 Btree *pX; member in struct:vdbeExecUnion::OP_OpenWrite_stack_vars
62876 Mem *pX; member in struct:vdbeExecUnion::OP_VUpdate_stack_vars
70519 Expr *pX = pEList->a[i].pExpr; local
72165 sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound) argument
73505 Expr *pX; /* The X expression */ local
98239 Expr *pX = pTerm->pExpr; local
99548 Expr *pX = pTerm->pExpr; local
100924 Expr *pX = pTerm->pExpr; local
101379 Expr *pX; /* The expression that defines the start bound */ local
101409 Expr *pX; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c15032 struct tm *pX; local
15037 pX = localtime(t);
15039 if( sqlite3GlobalConfig.bLocaltimeFault ) pX = 0;
15041 if( pX ) *pTm = *pX;
15043 rc = pX==0;
18613 static int debugMutexHeld(sqlite3_mutex *pX){ argument
18614 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX;
18617 static int debugMutexNotheld(sqlite3_mutex *pX){ argument
18618 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX;
18660 debugMutexFree(sqlite3_mutex *pX) argument
18678 debugMutexEnter(sqlite3_mutex *pX) argument
18683 debugMutexTry(sqlite3_mutex *pX) argument
18696 debugMutexLeave(sqlite3_mutex *pX) argument
28774 unixShm *pX; /* For looping over all siblings */ local
35637 winShm *pX; /* For looping over all siblings */ local
61435 Mem *pX; local
71274 Btree *pX; local
74285 Mem *pX; local
77980 Expr *pX = pEList->a[i].pExpr; local
79812 sqlite3FindInIndex(Parse *pParse, Expr *pX, u32 inFlags, int *prRhsHasNull) argument
81248 Expr *pX; /* The X expression */ local
81641 Expr *pX = pExpr->pLeft; local
105130 Select *pX; local
105628 struct ExprList_item *pX = &pNew->a[pNew->nExpr-1]; local
111338 Expr *pX; /* An expression being tested */ local
112566 Expr *pX = pTerm->pExpr; local
113392 Expr *pX = pTerm->pExpr; local
113935 Expr *pX; /* The expression that defines the start bound */ local
113972 Expr *pX; local
114836 whereLoopCheaperProperSubset( const WhereLoop *pX, const WhereLoop *pY ) argument
115105 WhereTerm *pTerm, *pX; local
116365 WhereLoop **pX; /* Used to divy up the pSpace memory */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c15032 struct tm *pX; local
15037 pX = localtime(t);
15039 if( sqlite3GlobalConfig.bLocaltimeFault ) pX = 0;
15041 if( pX ) *pTm = *pX;
15043 rc = pX==0;
18613 static int debugMutexHeld(sqlite3_mutex *pX){ argument
18614 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX;
18617 static int debugMutexNotheld(sqlite3_mutex *pX){ argument
18618 sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX;
18660 debugMutexFree(sqlite3_mutex *pX) argument
18678 debugMutexEnter(sqlite3_mutex *pX) argument
18683 debugMutexTry(sqlite3_mutex *pX) argument
18696 debugMutexLeave(sqlite3_mutex *pX) argument
28794 unixShm *pX; /* For looping over all siblings */ local
35657 winShm *pX; /* For looping over all siblings */ local
61455 Mem *pX; local
71294 Btree *pX; local
74305 Mem *pX; local
78000 Expr *pX = pEList->a[i].pExpr; local
79832 sqlite3FindInIndex(Parse *pParse, Expr *pX, u32 inFlags, int *prRhsHasNull) argument
81268 Expr *pX; /* The X expression */ local
81661 Expr *pX = pExpr->pLeft; local
105150 Select *pX; local
105648 struct ExprList_item *pX = &pNew->a[pNew->nExpr-1]; local
111358 Expr *pX; /* An expression being tested */ local
112586 Expr *pX = pTerm->pExpr; local
113412 Expr *pX = pTerm->pExpr; local
113955 Expr *pX; /* The expression that defines the start bound */ local
113992 Expr *pX; local
114856 whereLoopCheaperProperSubset( const WhereLoop *pX, const WhereLoop *pY ) argument
115125 WhereTerm *pTerm, *pX; local
116385 WhereLoop **pX; /* Used to divy up the pSpace memory */ local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 732 milliseconds