Home
last modified time | relevance | path

Searched refs:nMax (Results 1 – 12 of 12) sorted by relevance

/external/skia/src/ports/
DSkFontMgr_android_parser.h133 const T nMax = std::numeric_limits<T>::max() / 10; in parse_non_negative_integer() local
134 const T dMax = std::numeric_limits<T>::max() - (nMax * 10); in parse_non_negative_integer()
143 if (n > nMax || (n == nMax && d > dMax)) { in parse_non_negative_integer()
177 const T nMax = (std::numeric_limits<T>::max() >> N) / 10; in parse_fixed() local
178 const T dMax = (std::numeric_limits<T>::max() >> N) - (nMax * 10); in parse_fixed()
203 if (n > nMax || (n == nMax && d > dMax)) { in parse_fixed()
/external/skqp/src/ports/
DSkFontMgr_android_parser.h133 const T nMax = std::numeric_limits<T>::max() / 10; in parse_non_negative_integer() local
134 const T dMax = std::numeric_limits<T>::max() - (nMax * 10); in parse_non_negative_integer()
143 if (n > nMax || (n == nMax && d > dMax)) { in parse_non_negative_integer()
177 const T nMax = (std::numeric_limits<T>::max() >> N) / 10; in parse_fixed() local
178 const T dMax = (std::numeric_limits<T>::max() >> N) - (nMax * 10); in parse_fixed()
203 if (n > nMax || (n == nMax && d > dMax)) { in parse_fixed()
/external/pdfium/core/fxge/android/
Dcfpf_skiafontmgr.cpp280 int32_t nMax = -1; in CreateFont() local
309 if (nFind > nMax && bMatchedName) { in CreateFont()
310 nMax = nFind; in CreateFont()
318 } else if (nFind > nMax) { in CreateFont()
319 nMax = nFind; in CreateFont()
/external/pdfium/third_party/lcms/src/
Dcmscnvrt.c1093 cmsUInt32Number CMSEXPORT cmsGetSupportedIntentsTHR(cmsContext ContextID, cmsUInt32Number nMax, cms… in cmsGetSupportedIntentsTHR() argument
1102 if (nIntents < nMax) { in cmsGetSupportedIntentsTHR()
1115 if (nIntents < nMax) { in cmsGetSupportedIntentsTHR()
1128 cmsUInt32Number CMSEXPORT cmsGetSupportedIntents(cmsUInt32Number nMax, cmsUInt32Number* Codes, char… in cmsGetSupportedIntents() argument
1130 return cmsGetSupportedIntentsTHR(NULL, nMax, Codes, Descriptions); in cmsGetSupportedIntents()
/external/icu/icu4c/source/samples/layout/
Dlayout.cpp70 si.nMax = context->paragraph->getLineCount() - 1; in InitParagraph()
192 si.nPos = si.nMax; in WndProc()
Dclayout.c71 si.nMax = pf_getLineCount(context->paragraph) - 1; in InitParagraph()
194 si.nPos = si.nMax; in WndProc()
/external/pdfium/third_party/lcms/include/
Dlcms2.h1631 CMSAPI cmsUInt32Number CMSEXPORT cmsGetSupportedIntents(cmsUInt32Number nMax, cmsUInt32Number* Cod…
1632 …CMSEXPORT cmsGetSupportedIntentsTHR(cmsContext ContextID, cmsUInt32Number nMax, cmsUInt32Number* C…
/external/sqlite/dist/
Dshell.c8521 int nMax =0; in idxPopulateStat1() local
8542 rc = idxLargestIndex(p->dbm, &nMax, pzErr); in idxPopulateStat1()
8543 if( nMax<=0 || rc!=SQLITE_OK ) return rc; in idxPopulateStat1()
8548 int nByte = sizeof(struct IdxRemCtx) + (sizeof(struct IdxRemSlot) * nMax); in idxPopulateStat1()
8565 pCtx->nSlot = nMax+1; in idxPopulateStat1()
12821 i64 nMax = (nNL > nCR) ? nNL : nCR; in shellEscapeCrnl() local
12822 i64 nAlloc = nMax * nText + (nMax+64)*2; in shellEscapeCrnl()
Dsqlite3.c46340 int nMax, nBuf, nDir, nLen;
46352 nMax = pVfs->mxPathname; nBuf = nMax + 2;
46363 nDir = nMax - (nPre + 15);
46376 sqlite3_snprintf(nMax, zBuf, "%s", sqlite3_temp_directory);
46417 sqlite3_snprintf(nMax, zBuf, "%s", zDir);
46423 zConverted = sqlite3MallocZero( nMax+1 );
46431 zConverted, nMax+1)<0 ){
46450 sqlite3_snprintf(nMax, zBuf, "%s", zUtf8);
46462 LPWSTR zWidePath = sqlite3MallocZero( nMax*sizeof(WCHAR) );
46468 if( osGetTempPathW(nMax, zWidePath)==0 ){
[all …]
/external/sqlite/dist/orig/
Dshell.c8516 int nMax =0; in idxPopulateStat1() local
8537 rc = idxLargestIndex(p->dbm, &nMax, pzErr); in idxPopulateStat1()
8538 if( nMax<=0 || rc!=SQLITE_OK ) return rc; in idxPopulateStat1()
8543 int nByte = sizeof(struct IdxRemCtx) + (sizeof(struct IdxRemSlot) * nMax); in idxPopulateStat1()
8560 pCtx->nSlot = nMax+1; in idxPopulateStat1()
12816 i64 nMax = (nNL > nCR) ? nNL : nCR; in shellEscapeCrnl() local
12817 i64 nAlloc = nMax * nText + (nMax+64)*2; in shellEscapeCrnl()
Dsqlite3.c46324 int nMax, nBuf, nDir, nLen;
46336 nMax = pVfs->mxPathname; nBuf = nMax + 2;
46347 nDir = nMax - (nPre + 15);
46360 sqlite3_snprintf(nMax, zBuf, "%s", sqlite3_temp_directory);
46401 sqlite3_snprintf(nMax, zBuf, "%s", zDir);
46407 zConverted = sqlite3MallocZero( nMax+1 );
46415 zConverted, nMax+1)<0 ){
46434 sqlite3_snprintf(nMax, zBuf, "%s", zUtf8);
46446 LPWSTR zWidePath = sqlite3MallocZero( nMax*sizeof(WCHAR) );
46452 if( osGetTempPathW(nMax, zWidePath)==0 ){
[all …]
/external/rust/crates/libsqlite3-sys/sqlite3/
Dsqlite3.c46412 int nMax, nBuf, nDir, nLen;
46424 nMax = pVfs->mxPathname; nBuf = nMax + 2;
46435 nDir = nMax - (nPre + 15);
46448 sqlite3_snprintf(nMax, zBuf, "%s", sqlite3_temp_directory);
46489 sqlite3_snprintf(nMax, zBuf, "%s", zDir);
46495 zConverted = sqlite3MallocZero( nMax+1 );
46503 zConverted, nMax+1)<0 ){
46522 sqlite3_snprintf(nMax, zBuf, "%s", zUtf8);
46534 LPWSTR zWidePath = sqlite3MallocZero( nMax*sizeof(WCHAR) );
46540 if( osGetTempPathW(nMax, zWidePath)==0 ){
[all …]