Home
last modified time | relevance | path

Searched refs:iLen (Results 1 – 19 of 19) sorted by relevance

/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/
DBase64Coder.java102 public static String encodeLines(byte[] in, int iOff, int iLen, int lineLen, in encodeLines() argument
107 int lines = (iLen + blockLen - 1) / blockLen; in encodeLines()
108 int bufLen = ((iLen + 2) / 3) * 4 + lines * lineSeparator.length(); in encodeLines()
111 while (ip < iLen) { in encodeLines()
112 int l = Math.min(iLen - ip, blockLen); in encodeLines()
142 public static char[] encode(byte[] in, int iLen) { in encode() argument
143 return encode(in, 0, iLen); in encode()
159 public static char[] encode(byte[] in, int iOff, int iLen) { in encode() argument
160 int oDataLen = (iLen * 4 + 2) / 3; // output length without padding in encode()
161 int oLen = ((iLen + 2) / 3) * 4; // output length including padding in encode()
[all …]
/external/ms-tpm-20-ref/TPMCmd/tpm/src/X509/
DTpmASN1.c480 INT16 iLen, // IN: octets of the integer in ASN1PushInteger() argument
485 while((*integer == 0) && (--iLen > 0)) in ASN1PushInteger()
488 ASN1PushBytes(ctx, iLen, integer); in ASN1PushInteger()
491 iLen += (INT16)ASN1PushByte(ctx, 0); in ASN1PushInteger()
494 iLen += ASN1PushTagAndLength(ctx, ASN1_INTEGER, iLen); in ASN1PushInteger()
495 return iLen; in ASN1PushInteger()
/external/pdfium/core/fxcrt/
Dcfx_seekablestreamproxy.cpp208 size_t iLen = ReadData(reinterpret_cast<uint8_t*>(pStr), iBytes); in ReadBlock() local
209 size = iLen / 2; in ReadBlock()
224 size_t iLen = ReadData(buf.data(), iBytes); in ReadBlock() local
230 UTF8Decode(reinterpret_cast<const char*>(buf.data()), iLen, in ReadBlock()
232 Seek(From::Current, iSrc - iLen); in ReadBlock()
/external/pdfium/core/fxcrt/css/
Dcfx_cssvaluelistparser.cpp12 int32_t iLen, in CFX_CSSValueListParser() argument
14 : m_Separator(separator), m_pCur(psz), m_pEnd(psz + iLen) { in CFX_CSSValueListParser()
16 ASSERT(iLen > 0); in CFX_CSSValueListParser()
Dcfx_cssselector.cpp31 int32_t iLen, in CFX_CSSSelector() argument
34 m_dwHash(FX_HashCode_GetW(WideStringView(psz, iLen), bIgnoreCase)) {} in CFX_CSSSelector()
Dcfx_cssvaluelistparser.h15 CFX_CSSValueListParser(const wchar_t* psz, int32_t iLen, wchar_t separator);
Dcfx_cssselector.h22 int32_t iLen,
/external/pdfium/fxbarcode/oned/
DBC_OnedEAN8Writer.cpp142 size_t iLen = tempStr.GetLength(); in ShowChars() local
171 device->DrawNormalText(iLen, charpos.data(), m_pFont.Get(), in ShowChars()
176 iLen = tempStr.GetLength(); in ShowChars()
186 device->DrawNormalText(iLen, &charpos[4], m_pFont.Get(), in ShowChars()
/external/pdfium/core/fxcrt/xml/
Dcfx_xmlparser.cpp482 int32_t iLen = csEntity.GetLength(); in ProcessTextChar() local
483 if (iLen > 0) { in ProcessTextChar()
486 if (iLen > 1 && csEntity[1] == L'x') { in ProcessTextChar()
487 for (int32_t i = 2; i < iLen; i++) { in ProcessTextChar()
493 for (int32_t i = 1; i < iLen; i++) { in ProcessTextChar()
/external/pdfium/fxjs/xfa/
Dcfxjse_resolveprocessor.cpp600 size_t iLen = wsCondition.GetLength(); in ConditionArray() local
604 for (; i < iLen; ++i) { in ConditionArray()
633 if (iFoundCount == 1 && !iLen) in ConditionArray()
636 int32_t iIndex = wsCondition.Substr(i, iLen - 1 - i).GetInteger(); in ConditionArray()
668 int32_t iLen = wsCondition.GetLength(); in FilterCondition() local
669 if (!iLen) { in FilterCondition()
695 if (iLen > 1 && (wsCondition[1] == '[' || wsCondition[1] == '(')) in FilterCondition()
Dcfxjse_formcalc_context.cpp871 size_t iLen = wsURL.GetLength(); in DecodeURL() local
873 for (size_t i = 0; i < iLen; ++i) { in DecodeURL()
883 if (++i >= iLen) in DecodeURL()
900 size_t iLen = wsHTML.GetLength(); in DecodeMLInternal() local
902 for (size_t i = 0; i < iLen; ++i) { in DecodeMLInternal()
909 if (++i >= iLen) in DecodeMLInternal()
913 if (++i >= iLen) in DecodeMLInternal()
918 if (++i >= iLen) in DecodeMLInternal()
922 while (ch != ';' && i < iLen) { in DecodeMLInternal()
927 if (++i >= iLen) in DecodeMLInternal()
[all …]
/external/pdfium/xfa/fxfa/parser/
Dxfa_utils.cpp37 int32_t iLen = str.GetLength(); in ExportEncodeAttribute() local
38 for (int32_t i = 0; i < iLen; i++) { in ExportEncodeAttribute()
69 int32_t iLen = str.GetLength(); in ExportEncodeContent() local
70 for (int32_t i = 0; i < iLen; i++) { in ExportEncodeContent()
/external/pdfium/xfa/fwl/theme/
Dcfwl_widgettp.cpp41 int32_t iLen = pParams.m_wsText.GetLength(); in DrawText() local
42 if (iLen <= 0) in DrawText()
53 WideStringView(pParams.m_wsText.c_str(), iLen), in DrawText()
/external/mesa3d/src/mesa/swrast/
Ds_aalinetemp.h111 GLint iLen, i; in NAME() local
195 iLen = (GLint) line.len; in NAME()
198 for (i = 0; i < iLen; i++) { in NAME()
/external/ms-tpm-20-ref/TPMCmd/tpm/include/prototypes/
DTpmASN1_fp.h218 INT16 iLen, // IN: octets of the integer
/external/pdfium/core/fxge/
Dcfx_fontmapper.cpp196 ByteString ParseStyle(const char* pStyle, int iLen, int iIndex) { in ParseStyle() argument
198 if (!iLen || iLen <= iIndex) in ParseStyle()
200 while (iIndex < iLen) { in ParseStyle()
/external/pdfium/xfa/fxfa/
Dcxfa_textlayout.cpp44 int32_t iLen = pText->GetLength(); in ProcessText() local
45 if (iLen == 0) in ProcessText()
51 pdfium::span<wchar_t> psz = pText->GetBuffer(iLen); in ProcessText()
53 for (int32_t i = 0; i < iLen; i++) { in ProcessText()
/external/libxml2/
Dcatalog.c3242 int i, iLen; in xmlLoadCatalogs() local
3258 iLen = strlen((const char*)path); in xmlLoadCatalogs()
3259 for(i = 0; i < iLen; i++) { in xmlLoadCatalogs()
/external/pdfium/xfa/fgas/crt/
Dcfgas_stringformatter.cpp174 int32_t iLen = wsOutput.GetLength(); in GetLiteralTextReverse() local
176 for (; i < iLen && i < 5; i++) { in GetLiteralTextReverse()