Searched refs:iSize (Results 1 - 21 of 21) sorted by relevance

/external/pdfium/core/fxge/android/
H A Dcfpf_skiapathfont.cpp23 int32_t iSize = strlen(pPath); local
24 m_pPath = FX_Alloc(char, iSize + 1);
25 memcpy(m_pPath, pPath, iSize * sizeof(char));
26 m_pPath[iSize] = 0;
H A Dcfpf_skiafontdescriptor.cpp28 int32_t iSize = strlen(pFamily); local
29 m_pFamily = FX_Alloc(char, iSize + 1);
30 memcpy(m_pFamily, pFamily, iSize * sizeof(char));
31 m_pFamily[iSize] = 0;
/external/parameter-framework/upstream/xmlserializer/
H A DXmlStreamDocSink.cpp44 int iSize; local
45 xmlDocDumpFormatMemoryEnc(xmlDocSource.getDoc(), &dumpedDoc, &iSize, "UTF-8", 1);
/external/lz4/tests/
H A Dframetest.c244 size_t iSize = compressedBufferSize - missingBytes; local
251 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL);
258 cBuff += iSize;
259 iSize = decResult;
262 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL);
271 size_t iSize = 0; local
275 errorCode = LZ4F_decompress(dCtx, NULL, &oSize, ip, &iSize, NULL);
280 errorCode = LZ4F_getFrameInfo(dCtx, &fi, ip, &iSize);
285 iSize = 6;
286 errorCode = LZ4F_getFrameInfo(dCtx, &fi, ip, &iSize);
305 size_t iSize = 1; local
356 size_t iSize = (FUZ_rand(&randState) & ((1<<nbBits)-1)) + 1; local
481 size_t iSize = (FUZ_rand(&randState) & ((1<<nbBits)-1)) + 1; local
501 size_t iSize = (FUZ_rand(&randState) & ((1<<nbBits)-1)) + 1; local
518 size_t iSize = 10; local
641 size_t const iSize = MIN(sampleMax, (size_t)(iend-ip)); local
680 size_t iSize = MIN(iSizeMax, (size_t)(iend-ip)); local
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_points.c193 GLint iSize = (GLint) (size + 0.5F); local
198 iSize = MAX2(1, iSize);
199 iRadius = iSize / 2;
201 if (iSize & 1) {
212 xmax = xmin + iSize - 1;
214 ymax = ymin + iSize - 1;
409 GLint iSize = (GLint) (size + 0.5F); local
413 iSize = MAX2(1, iSize);
[all...]
/external/pdfium/core/fpdfapi/font/
H A Dcpdf_cmap.cpp453 int iSize = static_cast<int>( local
455 if (iSize == 0)
456 iSize = 1;
457 str[iSize - 1] = static_cast<char>(charcode);
458 if (iSize > 1)
459 memset(str, 0, iSize - 1);
460 return iSize;
/external/pdfium/fxjs/
H A Dcjs_util.cpp83 const size_t iSize = params.size(); local
84 if (iSize < 1)
112 if (iIndex >= iSize) {
145 const size_t iSize = params.size(); local
146 if (iSize < 2)
190 if (iSize > 2 && pRuntime->ToBoolean(params[2]))
H A Dcjs_color.cpp259 int iSize = params.size(); local
260 if (iSize < 2)
H A Dcjs_field.cpp2218 int iSize = params.size(); local
2219 if (iSize >= 1)
2300 int iSize = params.size(); local
2301 if (iSize < 1)
2309 if (iSize >= 2)
2345 int iSize = params.size(); local
2346 if (iSize < 1)
2407 int iSize = params.size(); local
2409 if (iSize >= 1)
2413 if (iSize >
[all...]
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTString.h610 @param[in] iSize number of characters to return (excluding null character)
611 @return The leftmost 'iSize' characters of the string.
613 the null character) in a new CPVRTString. If iSize is
616 CPVRTString left(size_t iSize) const;
620 @param[in] iSize number of characters to return (excluding null character)
621 @return The rightmost 'iSize' characters of the string.
623 the null character) in a new CPVRTString. If iSize is
626 CPVRTString right(size_t iSize) const;
H A DPVRTString.cpp1425 @Input iSize number of characters to return (excluding null character)
1426 @Returns The leftmost 'iSize' characters of the string.
1428 the null character) in a new CPVRTString. If iSize is
1431 CPVRTString CPVRTString::left(size_t iSize) const
1433 if(iSize>=m_Size) return *this;
1434 return CPVRTString(m_pString,iSize);
1439 @Input iSize number of characters to return (excluding null character)
1440 @Returns The rightmost 'iSize' characters of the string.
1442 the null character) in a new CPVRTString. If iSize is
1445 CPVRTString CPVRTString::right(size_t iSize) cons
[all...]
/external/pdfium/xfa/fxfa/parser/
H A Dcxfa_nodehelper.cpp223 int32_t iSize = NodeAcc_TraverseSiblings(parent, dwHashName, &siblings, local
225 for (int32_t i = 0; i < iSize; ++i) {
/external/pdfium/fxjs/xfa/
H A Dcjx_object.cpp639 size_t iSize = 0; local
658 iSize = wsSaveTextArray.size();
660 if (iSize == 0) {
668 if (iDatas < iSize) {
669 size_t iAddNodes = iSize - iDatas;
680 } else if (iDatas > iSize) {
681 size_t iDelNodes = iDatas - iSize;
1354 int32_t iSize = border->CountEdges(); local
1361 for (int32_t i = 0; i < iSize; ++i) {
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_data_avail.cpp654 int32_t iSize = pdfium::CollectionSize<int32_t>(pageNode.m_ChildNodes);
655 if (iSize <= 0 || iPage >= iSize) {
659 for (int32_t i = 0; i < iSize; ++i) {
/external/sqlite/dist/orig/
H A Dshell.c1727 ** Initialize a new hash. iSize determines the size of the hash
1728 ** in bits and should be one of 224, 256, 384, or 512. Or iSize
1731 static void SHA3Init(SHA3Context *p, int iSize){ argument
1733 if( iSize>=128 && iSize<=512 ){
1734 p->nRate = (1600 - ((iSize + 31)&~31)*2)/8;
1836 int iSize; local
1838 iSize = 256;
1840 iSize = sqlite3_value_int(argv[1]);
1841 if( iSize!
1921 int iSize; local
13882 int iSize = 224; /* Hash algorithm to use */ local
[all...]
H A Dsqlite3.c21732 i64 iSize; /* Size of this allocation */ member in struct:MemBlockHdr
21805 static void adjustStats(int iSize, int increment){ argument
21806 int i = ROUND8(iSize)/8;
21837 nReserve = ROUND8(p->iSize);
21845 while( nReserve-- > p->iSize ) assert( pU8[nReserve]==0x65 );
21858 return (int)pHdr->iSize;
21962 pHdr->iSize = nByte;
22003 adjustStats((int)pHdr->iSize, -1);
22005 (int)pHdr->iSize + sizeof(int) + pHdr->nTitle);
22027 memcpy(pNew, pPrior, (int)(nByte<pOldHdr->iSize
23099 int iSize, i; local
44859 u32 iSize; /* Maximum bit index. Max iSize is 4,294,967,296. */ member in struct:Bitvec
44879 sqlite3BitvecCreate(u32 iSize) argument
46446 int iSize; local
62070 freeSpace(MemPage *pPage, u16 iStart, u16 iSize) argument
70710 backupTruncateFile(sqlite3_file *pFile, i64 iSize) argument
70888 const i64 iSize = (i64)pgszSrc * (i64)nSrcPage; local
167395 u32 iSize; /* Size of this object */ member in struct:RtreeMatchArg
[all...]
/external/sqlite/dist/
H A Dshell.c1733 ** Initialize a new hash. iSize determines the size of the hash
1734 ** in bits and should be one of 224, 256, 384, or 512. Or iSize
1737 static void SHA3Init(SHA3Context *p, int iSize){ argument
1739 if( iSize>=128 && iSize<=512 ){
1740 p->nRate = (1600 - ((iSize + 31)&~31)*2)/8;
1842 int iSize; local
1844 iSize = 256;
1846 iSize = sqlite3_value_int(argv[1]);
1847 if( iSize!
1927 int iSize; local
13905 int iSize = 224; /* Hash algorithm to use */ local
[all...]
H A Dsqlite3.c21732 i64 iSize; /* Size of this allocation */ member in struct:MemBlockHdr
21805 static void adjustStats(int iSize, int increment){ argument
21806 int i = ROUND8(iSize)/8;
21837 nReserve = ROUND8(p->iSize);
21845 while( nReserve-- > p->iSize ) assert( pU8[nReserve]==0x65 );
21858 return (int)pHdr->iSize;
21962 pHdr->iSize = nByte;
22003 adjustStats((int)pHdr->iSize, -1);
22005 (int)pHdr->iSize + sizeof(int) + pHdr->nTitle);
22027 memcpy(pNew, pPrior, (int)(nByte<pOldHdr->iSize
23099 int iSize, i; local
44859 u32 iSize; /* Maximum bit index. Max iSize is 4,294,967,296. */ member in struct:Bitvec
44879 sqlite3BitvecCreate(u32 iSize) argument
46446 int iSize; local
62070 freeSpace(MemPage *pPage, u16 iStart, u16 iSize) argument
70710 backupTruncateFile(sqlite3_file *pFile, i64 iSize) argument
70888 const i64 iSize = (i64)pgszSrc * (i64)nSrcPage; local
167407 u32 iSize; /* Size of this object */ member in struct:RtreeMatchArg
[all...]
/external/pdfium/xfa/fxfa/
H A Dcxfa_widgetacc.cpp2046 int32_t iSize = pdfium::CollectionSize<int32_t>(iSelArray); local
2047 if (iSize >= 1) {
2050 for (int32_t i = 0; i < iSize; i++) {
2051 wsItemValue = (iSize == 1) ? wsSaveTextArray[iSelArray[i]]
/external/guice/extensions/persist/lib/
H A Dhsqldb.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hsqldb/ org/hsqldb/index/ org/hsqldb/jdbc/ org/ ...
/external/guice/extensions/struts2/lib/
H A Dstruts2-core-2.2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/struts2/ org/apache/struts2/dispatcher/ ...

Completed in 1251 milliseconds