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

/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:__anon14388
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/tpm2/
H A DMathFunctions.c195 // This function is used to multiply two large integers: p = a* b. If the size of p is not specified (pSize ==
197 // the resulting size is exactly aSize + bSize. If pSize is provided, then the actual size of the result is
198 // returned. The initial value for pSize must be at least aSize + pSize.
211 UINT32 *pSize, // IN/OUT: size of the product
221 // First check that pSize is large enough if present
222 if((pSize != NULL) && (*pSize < (aSize + bSize)))
224 pAssert(pSize == NULL || *pSize <
206 _math__Mul( const UINT32 aSize, const BYTE *a, const UINT32 bSize, const BYTE *b, UINT32 *pSize, BYTE *p ) argument
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_text.cpp121 CFX_GlyphBitmap* CPDF_Type3Cache::RenderGlyph(CPDF_Type3Glyphs* pSize, argument
151 pSize->AdjustBlue(top_y, bottom_y, top_line, bottom_line);
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_func.cpp503 CPDF_Array* pSize = pDict->GetArray("Size"); local
516 m_pEncodeInfo[i].sizes = pSize ? pSize->GetInteger(i) : 0;
517 if (!pSize && i == 0) {
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_mdls.c414 static EAS_RESULT NextChunk (SDLS_SYNTHESIZER_DATA *pDLSData, EAS_I32 *pPos, EAS_U32 *pChunkType, EAS_I32 *pSize);
770 static EAS_RESULT NextChunk (SDLS_SYNTHESIZER_DATA *pDLSData, EAS_I32 *pPos, EAS_U32 *pChunkType, EAS_I32 *pSize) argument
783 if ((result = EAS_HWGetDWord(pDLSData->hwInstData, pDLSData->fileHandle, pSize, EAS_FALSE)) != EAS_SUCCESS)
797 *pPos += *pSize + 8;
/external/icu/icu4c/source/common/
H A Dubidi.c193 * If *pMemory!=NULL, then assume *pSize>0.
200 ubidi_getMemory(BidiMemoryForAllocation *bidiMem, int32_t *pSize, UBool mayAllocate, int32_t sizeNeeded) { argument
206 *pSize=sizeNeeded;
212 if(sizeNeeded<=*pSize) {
228 *pSize=sizeNeeded;
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_parser.cpp2741 void GetLinearizedMainXRefInfo(FX_FILESIZE* pPos, FX_DWORD* pSize) override;
4554 FX_DWORD* pSize) {
4558 if (pSize) {
4559 *pSize = (FX_DWORD)(m_dwFileLen - m_dwLastXRefOffset);
4553 GetLinearizedMainXRefInfo(FX_FILESIZE* pPos, FX_DWORD* pSize) argument
/external/sqlite/dist/orig/
H A Dsqlite3.c953 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
10188 SQLITE_PRIVATE int sqlite3BtreeKeySize(BtCursor*, i64 *pSize);
10192 SQLITE_PRIVATE int sqlite3BtreeDataSize(BtCursor*, u32 *pSize);
11399 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file*, i64 *pSize);
17310 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){ argument
17312 return id->pMethods->xFileSize(id, pSize);
30287 unixFileSize(sqlite3_file *id, i64 *pSize) argument
37225 winFileSize(sqlite3_file *id, sqlite3_int64 *pSize) argument
58737 sqlite3BtreeKeySize(BtCursor *pCur, i64 *pSize) argument
58757 sqlite3BtreeDataSize(BtCursor *pCur, u32 *pSize) argument
82972 jrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize) argument
83266 memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize) argument
162259 rbuVfsFileSize(sqlite3_file *pFile, sqlite_int64 *pSize) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c953 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
10188 SQLITE_PRIVATE int sqlite3BtreeKeySize(BtCursor*, i64 *pSize);
10192 SQLITE_PRIVATE int sqlite3BtreeDataSize(BtCursor*, u32 *pSize);
11399 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file*, i64 *pSize);
17310 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){ argument
17312 return id->pMethods->xFileSize(id, pSize);
30305 unixFileSize(sqlite3_file *id, i64 *pSize) argument
37243 winFileSize(sqlite3_file *id, sqlite3_int64 *pSize) argument
58755 sqlite3BtreeKeySize(BtCursor *pCur, i64 *pSize) argument
58775 sqlite3BtreeDataSize(BtCursor *pCur, u32 *pSize) argument
82990 jrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize) argument
83284 memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize) argument
162289 rbuVfsFileSize(sqlite3_file *pFile, sqlite_int64 *pSize) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...

Completed in 1330 milliseconds