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

  /hardware/intel/common/wrs_omxil_core/core/inc/khronos/openmax/include/
OMX_IntelVideoExt.h 133 * nCapacity : Specifies the private unit size
140 OMX_U32 nCapacity;
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c 488 ** data currently stored (nData) and buffer capacity (nCapacity).
501 int nCapacity; /* Size of pData buffer. */
505 static void dataBufferInit(DataBuffer *pBuffer, int nCapacity){
506 assert( nCapacity>=0 );
508 pBuffer->nCapacity = nCapacity;
509 pBuffer->pData = nCapacity==0 ? NULL : sqlite3_malloc(nCapacity);
529 if( pBuffer->nData+nAddCapacity>pBuffer->nCapacity ){
530 pBuffer->nCapacity = pBuffer->nData+nAddCapacity
    [all...]

Completed in 135 milliseconds