/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/ |
D | Base64Coder.java | 102 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/ |
D | TpmASN1.c | 480 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/ |
D | cfx_seekablestreamproxy.cpp | 208 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/ |
D | cfx_cssvaluelistparser.cpp | 12 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()
|
D | cfx_cssselector.cpp | 31 int32_t iLen, in CFX_CSSSelector() argument 34 m_dwHash(FX_HashCode_GetW(WideStringView(psz, iLen), bIgnoreCase)) {} in CFX_CSSSelector()
|
D | cfx_cssvaluelistparser.h | 15 CFX_CSSValueListParser(const wchar_t* psz, int32_t iLen, wchar_t separator);
|
D | cfx_cssselector.h | 22 int32_t iLen,
|
/external/pdfium/fxbarcode/oned/ |
D | BC_OnedEAN8Writer.cpp | 142 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/ |
D | cfx_xmlparser.cpp | 482 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/ |
D | cfxjse_resolveprocessor.cpp | 600 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()
|
D | cfxjse_formcalc_context.cpp | 871 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/ |
D | xfa_utils.cpp | 37 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/ |
D | cfwl_widgettp.cpp | 41 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/ |
D | s_aalinetemp.h | 111 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/ |
D | TpmASN1_fp.h | 218 INT16 iLen, // IN: octets of the integer
|
/external/pdfium/core/fxge/ |
D | cfx_fontmapper.cpp | 196 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/ |
D | cxfa_textlayout.cpp | 44 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/ |
D | catalog.c | 3242 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/ |
D | cfgas_stringformatter.cpp | 174 int32_t iLen = wsOutput.GetLength(); in GetLiteralTextReverse() local 176 for (; i < iLen && i < 5; i++) { in GetLiteralTextReverse()
|