HomeSort by relevance Sort by last modified time
    Searched refs:pOffset (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/third_party/openmax_dl/dl/sp/api/
mipsSP.h 36 const OMX_U16* pOffset;
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/mips/
omxSP_FFTFwd_RToCCS_F32_Sfs.c 39 if (!pFFTStruct->pBitRev || !pFFTStruct->pBitRevInv || !pFFTStruct->pOffset ||
omxSP_FFTInv_CCSToR_F32_Sfs.c 39 if (!pFFTStruct->pBitRev || !pFFTStruct->pBitRevInv || !pFFTStruct->pOffset ||
mips_FFTFwd_RToCCS_F32_complex.c 41 * The size of the pFFTSpec->pOffset is (((SUBTRANSFORM_CONST >>
44 OMX_U32 offset = pFFTSpec->pOffset[n] << 2;
46 * Offset takes it's value from pFFTSpec->pOffset table which is initialized
81 OMX_U32 offset = pFFTSpec->pOffset[n] << 3;
142 OMX_U32 offset = pFFTSpec->pOffset[n] << fft_stage;
mips_FFTFwd_RToCCS_F32_real.c 53 OMX_U32 offset = pFFTSpec->pOffset[n] << 2;
113 OMX_U32 offset = pFFTSpec->pOffset[n] << 3;
mips_FFTInv_CCSToR_F32_real.c 62 OMX_U32 offset = pFFTSpec->pOffset[n] << 2;
134 OMX_U32 offset = pFFTSpec->pOffset[n] << 3;
mips_FFTInv_CCSToR_F32_complex.c 114 OMX_U32 offset = pFFTSpec->pOffset[n] << 2;
142 OMX_U32 offset = pFFTSpec->pOffset[n] << 3;
197 OMX_U32 offset = pFFTSpec->pOffset[n] << fft_stage;
omxSP_FFTInit_R_F32.c 136 * pFFTStruct->pOffset table are thoroughly tested, so this check is
195 pFFTStruct->pOffset = (const OMX_U16*)p_offset;
  /external/libnfc-nxp/src/
phFriNfc_LlcpUtils.c 33 uint32_t *pOffset,
39 uint32_t offset = *pOffset;
42 if ((psRawData == NULL) || (pOffset == NULL) || (pType == NULL) || (psValueBuffer == NULL))
77 *pOffset = offset;
83 uint32_t *pOffset,
88 uint32_t offset = *pOffset;
93 if ((psValueBuffer == NULL) || (pOffset == NULL) || (pValue == NULL))
125 *pOffset = offset;
phFriNfc_LlcpUtils.h 63 uint32_t *pOffset,
68 uint32_t *pOffset,
phFriNfc_LlcpTransport.c 110 uint32_t *pOffset,
115 uint32_t nTlvOffset = *pOffset;
144 *pOffset = nTlvOffset;
151 uint32_t *pOffset,
156 uint32_t nTlvStartOffset = *pOffset;
160 pOffset,
172 pOffset,
184 *pOffset = nTlvStartOffset;
    [all...]
  /build/tools/droiddoc/templates-ds/
trailer.cs 15 pOffset: 2,
  /build/tools/droiddoc/templates-ds/assets/js/grid/
960.gridder.js 39 pOffset: 0,
88 jQuery('<div id="g-setup"><ul><li class="head">Vertical</li><li><span>Color</span><input id="g-setup-gColor" /></li><li><span>Opacity</span><input id="g-setup-gOpacity" /></li><li><span>Width</span><input id="g-setup-gWidth" /></li><li><span>Columns</span><select id="g-setup-gColumns"></select></li></ul><ul><li class="head">Horizontal</li><li><span>Color</span><input id="g-setup-pColor" /></li><li><span>Opacity</span><input id="g-setup-pOpacity" /></li><li><span>Height</span><input id="g-setup-pHeight" /></li><li><span>Offset</span><input id="g-setup-pOffset" /></li></ul><ul id="g-setup-misc"><li><span>Enable vertical (gutters)</span><input id="g-setup-gEnabled" type="checkbox" /></li><li><span>Enable horizontal (paragraphs)</span><input id="g-setup-pEnabled" type="checkbox" /></li><li><span>Invert vertical</span><input id="g-setup-invert" type="checkbox" /></li><li><span>Center grid</span><input id="g-setup-center" type="checkbox" /></li></ul><div style="clear: left;"></div><div id="g-setup-tab"><a href="javascript:;"><img src="http://gridder.andreehansson.se/releases/1.3.1/logo-sprite.png" alt="" /></a></div></div>').appendTo("body");
242 var d = ((c.settings.height - c.settings.pOffset) / c.settings.pHeight);
245 top: ((c.settings.height / d) * g) + c.settings.pOffset,
  /external/chromium_org/third_party/sqlite/src/src/
delete.c 137 Expr *pOffset, /* The OFFSET clause. May be null */
159 /* if pLimit is null, pOffset will always be null as well. */
160 assert( pOffset == 0 );
188 pOrderBy,0,pLimit,pOffset);
211 sqlite3ExprDelete(pParse->db, pOffset);
walker.c 86 if( sqlite3WalkExpr(pWalker, p->pOffset) ) return WRC_Abort;
select.c 31 sqlite3ExprDelete(db, p->pOffset);
60 Expr *pOffset /* OFFSET value. NULL means no offset */
66 assert( db->mallocFailed || !pOffset || pLimit ); /* OFFSET implies LIMIT */
83 pNew->pOffset = pOffset;
84 assert( pOffset==0 || pLimit!=0 );
    [all...]
parse.y 71 Expr *pOffset; /* The OFFSET expression. NULL if there is none */
425 A = sqlite3SelectNew(pParse,W,X,Y,P,Q,Z,D,L.pLimit,L.pOffset);
617 // sqlite3ExprDelete(pParse->db, $$.pOffset);
619 limit_opt(A) ::= . {A.pLimit = 0; A.pOffset = 0;}
620 limit_opt(A) ::= LIMIT expr(X). {A.pLimit = X.pExpr; A.pOffset = 0;}
622 {A.pLimit = X.pExpr; A.pOffset = Y.pExpr;}
624 {A.pOffset = X.pExpr; A.pLimit = Y.pExpr;}
632 W = sqlite3LimitWhere(pParse, X, W, O, L.pLimit, L.pOffset, "DELETE");
655 W = sqlite3LimitWhere(pParse, X, W, O, L.pLimit, L.pOffset, "UPDATE");
    [all...]
pager.c     [all...]
resolve.c     [all...]
insert.c     [all...]
sqliteInt.h     [all...]
  /art/runtime/verifier/
method_verifier.h 413 bool GetBranchOffset(uint32_t cur_offset, int32_t* pOffset, bool* pConditional,
method_verifier.cc     [all...]
  /external/chromium_org/third_party/icu/source/common/
ucnvscsu.c     [all...]
  /external/icu/icu4c/source/common/
ucnvscsu.c     [all...]

Completed in 278 milliseconds

1 2