HomeSort by relevance Sort by last modified time
    Searched refs:nLen (Results 1 - 20 of 20) sorted by null

  /external/pdfium/core/fxcrt/
string_data_template.h 19 static StringDataTemplate* Create(size_t nLen) {
20 ASSERT(nLen > 0);
25 pdfium::base::CheckedNumeric<size_t> nSize = nLen;
37 ASSERT(usableLen >= nLen);
41 return new (pData) StringDataTemplate(nLen, usableLen);
50 static StringDataTemplate* Create(const CharType* pStr, size_t nLen) {
51 StringDataTemplate* result = Create(nLen);
52 result->CopyContents(pStr, nLen);
73 void CopyContents(const CharType* pStr, size_t nLen) {
74 ASSERT(nLen >= 0 && nLen <= m_nAllocLength)
    [all...]
cfx_checksumcontext.cpp 135 int32_t nLen = Base64EncodeA(digest, 20, nullptr);
136 char* pBuffer = m_bsChecksum.GetBuffer(nLen);
138 m_bsChecksum.ReleaseBuffer(nLen);
widestring.h 196 void ReallocBeforeWrite(size_t nLen);
197 void AllocBeforeWrite(size_t nLen);
bytestring.cpp 149 ByteString::ByteString(const char* pStr, size_t nLen) {
150 if (nLen)
151 m_pData.Reset(StringData::Create(pStr, nLen));
154 ByteString::ByteString(const uint8_t* pStr, size_t nLen) {
155 if (nLen)
157 StringData::Create(reinterpret_cast<const char*>(pStr), nLen));
widestring.cpp 363 WideString::WideString(const wchar_t* pStr, size_t nLen) {
364 if (nLen)
365 m_pData.Reset(StringData::Create(pStr, nLen));
  /external/swiftshader/third_party/PowerVR_SDK/Builds/Include/
PVRScopeComms.h 153 const unsigned int nLen ///< String length
164 const unsigned int nLen, ///< String length
  /external/pdfium/xfa/fxfa/parser/
cxfa_localevalue.cpp 438 int nLen = wsDate.GetLength();
439 if (nLen < wCountY || nLen > wCountY + wCountM + wCountD + 2)
463 while (pDate[nIndex] != '\0' && nIndex - nStart < wCountM && nIndex < nLen) {
477 while (pDate[nIndex] != '\0' && nIndex - nStart < wCountD && nIndex < nLen) {
484 if (nIndex != nLen)
489 return wMonth == 0 && nLen == wCountY;
491 return wDay == 0 && (nLen == wCountY + wCountM);
509 int nLen = wsTime.GetLength();
510 if (nLen < 2
    [all...]
xfa_utils.cpp 349 size_t nLen = buf.GetLength();
350 if (nLen > 0)
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTModelPOD.cpp 309 bool ReadMarker(unsigned int &nName, unsigned int &nLen);
360 bool CSource::ReadMarker(unsigned int &nName, unsigned int &nLen)
364 if(!Read32(nLen))
635 @Input nLen
644 const unsigned int nLen = 0)
653 bRet &= WriteFileSafe32(pFile, &nLen, 1);
663 @Input nLen
665 @Description Write nLen bytes of data from pData, bracketed by an nName
672 const unsigned int nLen)
676 _ASSERT(nLen);
    [all...]
PVRTPFXParser.cpp 322 size_t nLen;
324 nLen = 0;
329 nLen += strlen(ppszLines[i]) + 1;
336 if(nLen)
338 ++nLen;
340 Out.reserve(nLen);
750 unsigned int nLen;
774 nLen = (unsigned int)(pszEnd - pszCurr);
778 nLen = (unsigned int)strlen(pszCurr);
783 while(nLen - nReduce > 0 && pszCurr[nLen - 1 - nReduce] == '\r'
    [all...]
  /external/epid-sdk/ext/ipp/sources/ippcp/
pcpsms4.h 178 int cpSMS4_ECB_aesni(Ipp8u* pDst, const Ipp8u* pSrc, int nLen, const Ipp32u* pRKey);
180 int cpSMS4_CBC_dec_aesni(Ipp8u* pDst, const Ipp8u* pSrc, int nLen, const Ipp32u* pRKey, Ipp8u* pIV);
  /external/pdfium/core/fxge/
cfx_fontmapper.cpp 477 int nLen = family.GetLength();
483 family = family.Left(nLen - len);
495 int nLen = style.GetLength();
500 while (i < nLen) {
501 buf = ParseStyle(pStyle, nLen, i);
  /external/pdfium/core/fpdfdoc/
cpdf_annot.cpp 432 size_t nLen = pDashArray->GetCount();
434 for (; i < nLen; ++i) {
440 if (i == nLen) {
  /external/pdfium/core/fpdftext/
cpdf_textpagefind.cpp 379 int nLen = lpchEnd ? static_cast<int>(lpchEnd - lpszFullString)
381 if (nLen < 0)
384 return {WideString(lpszFullString, static_cast<size_t>(nLen))};
cpdf_linkextract.cpp 280 size_t nLen = str->GetLength();
282 for (size_t i = aPos.value() + 1; i < nLen; i++) {
  /external/pdfium/core/fpdfapi/parser/
cpdf_parser.cpp 855 FX_FILESIZE nLen = obj_end - obj_pos - offset;
856 if ((uint32_t)nLen > size - i) {
860 i += (uint32_t)nLen;
    [all...]
  /external/pdfium/xfa/fwl/
cfwl_edit.cpp 1060 int32_t nLen = wsText.GetLength();
1062 WideString r = wsText.Right(nLen - m_CursorPosition);
    [all...]
  /external/pdfium/fxjs/
cjs_publicmethods.cpp 402 size_t nLen = value.GetLength();
405 while (i < nLen) {
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 1541 milliseconds