HomeSort by relevance Sort by last modified time
    Searched defs:pLeft (Results 1 - 22 of 22) sorted by null

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
omxVCCOMM_ExpandFrame_I.c 75 OMX_U8* pLeft;
106 pLeft = pSrcDstPlane - iExpandPels;
113 pLeft [y * iPlaneStep + x] =
  /external/chromium_org/third_party/sqlite/src/src/
rowset.c 83 struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */
279 if( pIn->pLeft ){
281 rowSetTreeToList(pIn->pLeft, ppFirst, &p);
313 struct RowSetEntry *pLeft; /* Left subtree */
320 p->pLeft = p->pRight = 0;
323 pLeft = rowSetNDeepTree(ppList, iDepth-1);
326 return pLeft;
328 p->pLeft = pLeft;
341 struct RowSetEntry *pLeft; /* Left subtree *
    [all...]
fkey.c 490 Expr *pLeft; /* Value from parent table row */
492 Expr *pEq; /* Expression (pLeft = pRight) */
496 pLeft = sqlite3Expr(db, TK_REGISTER, 0);
497 if( pLeft ){
505 pLeft->iTable = regData+iCol+1;
506 pLeft->affinity = pCol->affinity;
507 pLeft->pColl = sqlite3LocateCollSeq(pParse, pCol->zColl);
509 pLeft->iTable = regData;
510 pLeft->affinity = SQLITE_AFF_INTEGER;
517 pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight, 0)
    [all...]
expr.c 118 p = p->pLeft;
163 assert( pExpr->pLeft );
164 aff = sqlite3ExprAffinity(pExpr->pLeft);
205 ** a binary comparison operator comparing pLeft and pRight.
212 ** Argument pRight (but not pLeft) may be a null pointer. In this case,
217 Expr *pLeft,
221 assert( pLeft );
222 if( pLeft->flags & EP_ExpCollate ){
223 assert( pLeft->pColl );
224 pColl = pLeft->pColl
    [all...]
select.c 301 setJoinExpr(p->pLeft, iTable);
323 struct SrcList_item *pLeft; /* Left table being joined */
327 pLeft = &pSrc->a[0];
328 pRight = &pLeft[1];
329 for(i=0; i<pSrc->nSrc-1; i++, pRight++, pLeft++){
330 Table *pLeftTab = pLeft->pTab;
    [all...]
where.c 386 whereSplit(pWC, pExpr->pLeft, op);
448 mask |= exprTableUsage(pMaskSet, p->pLeft);
518 u16 expLeft = (pExpr->pLeft->flags & EP_ExpCollate);
521 pExpr->pLeft->pColl = sqlite3ExprCollSeq(pParse, pExpr->pLeft);
522 SWAP(CollSeq*,pExpr->pRight->pColl,pExpr->pLeft->pColl);
524 pExpr->pLeft->flags = (pExpr->pLeft->flags & ~EP_ExpCollate) | expRight;
525 SWAP(Expr*,pExpr->pRight,pExpr->pLeft);
598 assert(pX->pLeft);
    [all...]
sqliteInt.h     [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/
omxVCCOMM_ExpandFrame_I_s.s 64 pLeft RN 5
139 SUB pLeft,pSrcDstPlane,iExpandPels ;// pLeft->points to the top left of the expanded block
165 STR tempLeft2,[pLeft,iPlaneStep] ;// Store the 4 bytes at one go
167 STR tempLeft1,[pLeft],#4 ;// Store the 4 bytes at one go
172 ADD pLeft,pLeft,RowStep
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_ExpandFrame_I_s.s 48 pLeft RN 5
158 ADD pLeft, pSrcDstPlane, #0
160 VLD1 {dData0 []}, [pLeft], iPlaneStep ;// Top-Left corner pixel from frame duplicated in dData0
190 VLD1 {dData0 []}, [pLeft], iPlaneStep
  /hardware/ti/omap4xxx/security/tf_daemon/
smc_properties_parser.h 60 struct NODE* pLeft;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3Int.h 251 Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */
252 Fts3Expr *pLeft; /* Left operand */
fts3_snippet.c 148 assert( pExpr->pLeft && pExpr->pRight );
149 rc = fts3ExprIterate2(pExpr->pLeft, piPhrase, x, pCtx);
207 Fts3Expr *pLeft = pParent->pLeft;
209 if( pLeft->eType!=FTSQUERY_PHRASE ){
210 assert( pLeft->eType==FTSQUERY_NEAR );
211 assert( pLeft->pRight->eType==FTSQUERY_PHRASE );
212 pLeft = pLeft->pRight;
215 rc = sqlite3Fts3ExprNearTrim(pLeft, pExpr, nNear)
    [all...]
fts3.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBoxModelObject.cpp 613 LayoutUnit pLeft = includeLeftEdge ? paddingLeft() : LayoutUnit();
641 LayoutRect clipRect = LayoutRect(scrolledPaintRect.x() + bLeft + (includePadding ? pLeft : LayoutUnit()),
643 scrolledPaintRect.width() - bLeft - bRight - (includePadding ? pLeft + pRight : LayoutUnit()),
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1.c 673 ** pLeft and pRight are two DocListReaders that are pointing to
676 ** If there are no instances in pLeft or pRight where the position
677 ** of pLeft is one less than the position of pRight, then this
680 ** If there are one or more instances where positions from pLeft
684 ** position in pLeft. In other words: pRight.iPos==pLeft.iPos+1.
686 ** pLeft and pRight are left pointing at the next document record.
689 DocListReader *pLeft, /* Left position list */
691 sqlite_int64 iDocid, /* The docid from pLeft and pRight */
694 int iLeftCol, iLeftPos = readPosition(pLeft, &iLeftCol)
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /prebuilts/devtools/tools/lib/
hierarchyviewer2lib.jar 
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 885 milliseconds