Searched refs:pSize (Results 1 - 25 of 60) sorted by relevance

123

/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_S16S32.c47 * [out] pSize pointer to the number of bytes required for the
57 OMX_INT *pSize
66 *pSize = sizeof(ARMsFFTSpec_R_SC32)
77 *pSize = sizeof(ARMsFFTSpec_R_SC32)
H A DomxSP_FFTGetBufSize_R_S32.c47 * [out] pSize pointer to the number of bytes required for the
57 OMX_INT *pSize
66 *pSize = sizeof(ARMsFFTSpec_R_SC32)
77 *pSize = sizeof(ARMsFFTSpec_R_SC32)
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/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/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))
31 *pSize = sizeof(MIPSFFTSpec_R_FC32) +
/external/qemu/android/utils/
H A Dlineinput.h41 * '*pSize' to save you a strlen() call.
43 const char* lineInput_getLineAndSize( LineInput* input, size_t *pSize );
H A Dlineinput.c85 lineInput_getLineAndSize( LineInput* input, size_t *pSize )
90 if (pSize)
91 *pSize = 0;
110 if (pSize != NULL) {
111 *pSize = ret;
H A Dpath.h164 * if 'pSize' is not NULL, this will set the file's size in '*pSize'
168 extern void* path_load_file( const char* path, size_t *pSize );
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/chromium_org/third_party/openmax_dl/dl/sp/api/
H A DomxSP.h1623 * pSize - pointer to the number of bytes required for the specification
1631 * - pSize is NULL
1637 OMX_INT *pSize
1658 * pSize - pointer to the number of bytes required for the specification
1666 * - pSize is NULL
1672 OMX_INT *pSize
1691 * pSize - pointer to the number of bytes required for the specification
1699 * - pSize is NULL
1705 OMX_INT* pSize
1724 * pSize
[all...]
/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 Dbtree.h166 int sqlite3BtreeKeySize(BtCursor*, i64 *pSize);
170 int sqlite3BtreeDataSize(BtCursor*, u32 *pSize);
H A Dmemjournal.c207 static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){ argument
209 *pSize = (sqlite_int64) p->endpoint.iOffset;
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_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 Dos.h242 int sqlite3OsFileSize(sqlite3_file*, i64 *pSize);
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;
/external/nanopb-c/
H A Dpb_decode.c31 void *pSize; /* Pointer where to store the size of current array field */ member in struct:__anon28047
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...]
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))
/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

Completed in 368 milliseconds

123