Searched defs:pSize (Results 1 - 25 of 37) sorted by relevance

12

/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/
H A DomxSP_FFTGetBufSize_C_FC32.c33 * pSize - pointer to the number of bytes required for the specification
43 OMXResult omxSP_FFTGetBufSize_C_FC32(OMX_INT order, OMX_INT *pSize) { argument
44 if (!pSize || (order < 1) || (order > TWIDDLE_TABLE_ORDER))
51 return omxSP_FFTGetBufSize_C_SC32(order, pSize);
H A DomxSP_FFTGetBufSize_R_F32.c31 * [out] pSize pointer to the number of bytes required for the
39 OMXResult omxSP_FFTGetBufSize_R_F32(OMX_INT order, OMX_INT *pSize) { argument
40 if (!pSize || (order < 1) || (order > TWIDDLE_TABLE_ORDER))
48 return omxSP_FFTGetBufSize_R_S32(order, pSize);
H A DomxSP_FFTGetBufSize_C_SC16.c50 * pSize - pointer to the number of bytes required for the specification
64 OMX_INT *pSize)
72 *pSize = sizeof(ARMsFFTSpec_SC16);
83 *pSize = sizeof(ARMsFFTSpec_SC16)
62 omxSP_FFTGetBufSize_C_SC16( OMX_INT order, OMX_INT *pSize) argument
H A DomxSP_FFTGetBufSize_C_SC32.c50 * pSize - pointer to the number of bytes required for the specification
63 OMX_INT *pSize)
71 *pSize = sizeof(ARMsFFTSpec_SC32);
81 *pSize = sizeof(ARMsFFTSpec_SC32)
61 omxSP_FFTGetBufSize_C_SC32( OMX_INT order, OMX_INT *pSize) argument
H A DomxSP_FFTGetBufSize_R_S16.c40 * [out] pSize pointer to the number of bytes required for the
48 OMXResult omxSP_FFTGetBufSize_R_S16(OMX_INT order, OMX_INT *pSize) { argument
61 *pSize = sizeof(ARMsFFTSpec_R_SC16)
/external/chromium_org/third_party/openmax_dl/dl/sp/src/mips/
H A DomxSP_FFTGetBufSize_R_F32.c16 OMXResult omxSP_FFTGetBufSize_R_F32(OMX_INT order, OMX_INT* pSize) { argument
19 if (!pSize || (order < 1) || (order > TWIDDLE_TABLE_ORDER))
28 *pSize = sizeof(MIPSFFTSpec_R_FC32) +
/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
H A DomxSP_FFTGetBufSize_R_F32.c30 * [out] pSize pointer to the number of bytes required for the
38 OMXResult omxSP_FFTGetBufSize_R_F32(OMX_INT order, OMX_INT *pSize) { argument
42 if (!pSize || (order < 1) || (order > TWIDDLE_TABLE_ORDER))
48 *pSize = sizeof(X86FFTSpec_R_FC32) +
/external/chromium_org/third_party/sqlite/src/src/
H A Djournal.c158 static int jrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){ argument
162 rc = sqlite3OsFileSize(p->pReal, pSize);
164 *pSize = (sqlite_int64) p->iSize;
H A Dmemjournal.c207 static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){ argument
209 *pSize = (sqlite_int64) p->endpoint.iOffset;
H A Dos.c78 int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){ argument
80 return id->pMethods->xFileSize(id, pSize);
H A Dtest_demovfs.c329 ** Write the size of the file in bytes to *pSize.
331 static int demoFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
348 *pSize = sStat.st_size;
H A Dtest_devsym.c46 static int devsymFileSize(sqlite3_file*, sqlite3_int64 *pSize);
184 static int devsymFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
186 return sqlite3OsFileSize(p->pReal, pSize);
H A Dtest_journal.c142 static int jtFileSize(sqlite3_file*, sqlite3_int64 *pSize);
623 static int jtFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
625 return sqlite3OsFileSize(p->pReal, pSize);
H A Dtest_onefile.c136 static int fsFileSize(sqlite3_file*, sqlite3_int64 *pSize);
152 static int tmpFileSize(sqlite3_file*, sqlite3_int64 *pSize);
323 static int tmpFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
325 *pSize = pTmp->nSize;
526 static int fsFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
530 *pSize = pReal->nDatabase;
532 *pSize = pReal->nJournal;
H A Dtest_vfstrace.c52 static int vfstraceFileSize(sqlite3_file*, sqlite3_int64 *pSize);
285 static int vfstraceFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
290 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize);
292 vfstrace_printf(pInfo, " size=%lld\n", *pSize);
H A Dtest6.c489 static int cfFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
491 *pSize = (i64)pCrash->iSize;
H A Dtest_multiplex.c649 static int multiplexFileSize(sqlite3_file *pConn, sqlite3_int64 *pSize){ argument
658 rc = ( !pSubOpen ) ? SQLITE_IOERR_FSTAT : pSubOpen->pMethods->xFileSize(pSubOpen, pSize);
660 *pSize = 0;
700 *pSize += sz;
H A Dtest_quota.c461 static int quotaFileSize(sqlite3_file *pConn, sqlite3_int64 *pSize){ argument
477 *pSize = sz;
H A Dos_win.c874 static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){ argument
889 *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;
/external/chromium_org/tools/win/ChromeDebug/LowLevel/
H A DNativeMethods.cs29 out int pSize);
24 NtQueryInformationProcess( IntPtr hProcess, LowLevelTypes.PROCESSINFOCLASS pic, ref LowLevelTypes.PROCESS_BASIC_INFORMATION pbi, int cb, out int pSize) argument
/external/nanopb-c/
H A Dpb_encode.c204 const void *pSize; local
210 pSize = (const char*)pData + field->size_offset;
212 pSize = &implicit_has;
237 if (*(const bool*)pSize)
248 if (!encode_array(stream, field, pData, *(const size_t*)pSize, func))
H A Dpb_decode.c31 void *pSize; /* Pointer where to store the size of current array field */ member in struct:__anon27209
347 iter->pSize = (char*)iter->pData + iter->pos->size_offset;
385 iter->pSize = (char*)iter->pData + iter->pos->size_offset;
423 *(bool*)iter->pSize = true;
432 size_t *size = (size_t*)iter->pSize;
457 size_t *size = (size_t*)iter->pSize;
542 size_t *size = (size_t*)iter->pSize;
583 size_t *size = (size_t*)iter->pSize;
683 iter.pSize = &extension->found;
750 *(bool*)iter.pSize
[all...]
/external/qemu/android/utils/
H A Dpath.c586 path_load_file(const char *fn, size_t *pSize) argument
592 if (pSize)
593 *pSize = 0;
604 if (pSize)
605 *pSize = (size_t) sz;
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_text.cpp125 CFX_GlyphBitmap* CPDF_Type3Cache::RenderGlyph(CPDF_Type3Glyphs* pSize, FX_DWORD charcode, const CFX_AffineMatrix* pMatrix, FX_FLOAT retinaScaleX, FX_FLOAT retinaScaleY) argument
151 pSize->AdjustBlue(top_y, bottom_y, top_line, bottom_line);
/external/chromium_org/third_party/icu/source/common/
H A Dubidi.c187 * If *pMemory!=NULL, then assume *pSize>0.
194 ubidi_getMemory(BidiMemoryForAllocation *bidiMem, int32_t *pSize, UBool mayAllocate, int32_t sizeNeeded) { argument
200 *pSize=sizeNeeded;
206 if(sizeNeeded<=*pSize) {
222 *pSize=sizeNeeded;

Completed in 272 milliseconds

12