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

/external/pdfium/core/fpdfapi/page/
H A Dcpdf_sampledfunc.cpp45 CPDF_Array* pSize = pDict->GetArrayFor("Size"); local
58 m_EncodeInfo[i].sizes = pSize ? pSize->GetIntegerAt(i) : 0;
59 if (!pSize && i == 0)
/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:__anon17386
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/pdfium/core/fpdfapi/render/
H A Dcpdf_type3cache.cpp116 CPDF_Type3Glyphs* pSize,
146 pSize->AdjustBlue(top_y, bottom_y, top_line, bottom_line);
115 RenderGlyph( CPDF_Type3Glyphs* pSize, uint32_t charcode, const CFX_Matrix* pMatrix, float retinaScaleX, float retinaScaleY) argument
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTResourceFile.cpp296 @Output pSize File size
301 bool CPVRTMemoryFileSystem::GetFile(const char* pszFilename, const void** ppBuffer, size_t* pSize) argument
308 if (pSize) *pSize = s_pFileInfo[i].Size;
/external/tpm2/
H A DMathFunctions.c198 // This function is used to multiply two large integers: p = a* b. If the size of p is not specified (pSize ==
200 // the resulting size is exactly aSize + bSize. If pSize is provided, then the actual size of the result is
201 // returned. The initial value for pSize must be at least aSize + pSize.
214 UINT32 *pSize, // IN/OUT: size of the product
224 // First check that pSize is large enough if present
225 if((pSize != NULL) && (*pSize < (aSize + bSize)))
227 pAssert(pSize == NULL || *pSize <
209 _math__Mul( const UINT32 aSize, const BYTE *a, const UINT32 bSize, const BYTE *b, UINT32 *pSize, BYTE *p ) argument
[all...]
/external/swiftshader/src/Renderer/
H A DRenderer.cpp1918 float pSize; local
1924 pSize = v.v[pts].y;
1928 pSize = data.point.pointSize[0];
1931 pSize = clamp(pSize, data.point.pointSizeMin, data.point.pointSizeMax);
1943 const float X = pSize * P[0].w * data.halfPixelX[0];
1944 const float Y = pSize * P[0].w * data.halfPixelY[0];
1965 triangle.v1.X += iround(16 * 0.5f * pSize);
1966 triangle.v2.Y -= iround(16 * 0.5f * pSize) * (data.Hx16[0] > 0.0f ? 1 : -1); // Both Direct3D and OpenGL expect (0, 0) in the top-left corner
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_mdls.c418 static EAS_RESULT NextChunk (SDLS_SYNTHESIZER_DATA *pDLSData, EAS_I32 *pPos, EAS_U32 *pChunkType, EAS_I32 *pSize);
779 static EAS_RESULT NextChunk (SDLS_SYNTHESIZER_DATA *pDLSData, EAS_I32 *pPos, EAS_U32 *pChunkType, EAS_I32 *pSize) argument
792 if ((result = EAS_HWGetDWord(pDLSData->hwInstData, pDLSData->fileHandle, pSize, EAS_FALSE)) != EAS_SUCCESS)
795 if (*pSize < 0) {
811 *pPos += *pSize + 8;
/external/icu/icu4c/source/common/
H A Dubidi.cpp195 * If *pMemory!=NULL, then assume *pSize>0.
202 ubidi_getMemory(BidiMemoryForAllocation *bidiMem, int32_t *pSize, UBool mayAllocate, int32_t sizeNeeded) { argument
208 *pSize=sizeNeeded;
214 if(sizeNeeded<=*pSize) {
230 *pSize=sizeNeeded;
/external/sqlite/dist/orig/
H A Dshell.c3496 static int apndFileSize(sqlite3_file*, sqlite3_int64 *pSize);
3668 static int apndFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
3672 rc = pFile->pMethods->xFileSize(pFile, pSize);
3674 *pSize -= p->iPgOne + APND_MARK_SIZE;
H A Dsqlite3.c1801 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
14882 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file*, i64 *pSize);
20913 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){ argument
20915 return id->pMethods->xFileSize(id, pSize);
34423 unixFileSize(sqlite3_file *id, i64 *pSize) argument
41711 winFileSize(sqlite3_file *id, sqlite3_int64 *pSize) argument
90860 memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize) argument
176930 rbuVfsFileSize(sqlite3_file *pFile, sqlite_int64 *pSize) argument
[all...]
/external/sqlite/dist/
H A Dshell.c3502 static int apndFileSize(sqlite3_file*, sqlite3_int64 *pSize);
3674 static int apndFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ argument
3678 rc = pFile->pMethods->xFileSize(pFile, pSize);
3680 *pSize -= p->iPgOne + APND_MARK_SIZE;
H A Dsqlite3.c1801 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
14882 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file*, i64 *pSize);
20913 SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){ argument
20915 return id->pMethods->xFileSize(id, pSize);
34423 unixFileSize(sqlite3_file *id, i64 *pSize) argument
41711 winFileSize(sqlite3_file *id, sqlite3_int64 *pSize) argument
90860 memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize) argument
176942 rbuVfsFileSize(sqlite3_file *pFile, sqlite_int64 *pSize) argument
[all...]
/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 3333 milliseconds