Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/swrast/
Ds_aalinetemp.h111 GLint iLen, i; in NAME() local
192 iLen = (GLint) line.len; in NAME()
195 for (i = 0; i < iLen; i++) { in NAME()
/external/pdfium/core/src/fxge/ge/
Dfx_ge_fontmap.cpp834 CFX_ByteString ParseStyle(FX_LPCSTR pStyle, int iLen, int iIndex) in ParseStyle() argument
837 if (!iLen || iLen <= iIndex) { in ParseStyle()
840 while (iIndex < iLen) { in ParseStyle()
851 FX_INT32 iLen = bsStyle.GetLength(); in GetStyleType() local
852 if (!iLen) { in GetStyleType()
859 if (!pStyle || pStyle->len > iLen) { in GetStyleType()
/external/libvncserver/webclients/java-applet/ssl/
Dtightvnc-1.3dev7_javasrc-vncviewer-ssl.patch2170 + * @param iLen number of bytes to process in <code>in</code>.
2173 + public static char[] encode (byte[] in, int iLen) {
2174 + int oDataLen = (iLen*4+2)/3; // output length without padding
2175 + int oLen = ((iLen+2)/3)*4; // output length including padding
2179 + while (ip < iLen) {
2181 + int i1 = ip < iLen ? in[ip++] & 0xff : 0;
2182 + int i2 = ip < iLen ? in[ip++] & 0xff : 0;
2219 + int iLen = in.length;
2220 + if (iLen%4 != 0) throw new IllegalArgumentException ("Length of Base64 encoded input string is…
2221 + while (iLen > 0 && in[iLen-1] == '=') iLen--;
[all …]
Dultravnc-102-JavaViewer-ssl-etc.patch4742 + * @param iLen number of bytes to process in <code>in</code>.
4745 + public static char[] encode (byte[] in, int iLen) {
4746 + int oDataLen = (iLen*4+2)/3; // output length without padding
4747 + int oLen = ((iLen+2)/3)*4; // output length including padding
4751 + while (ip < iLen) {
4753 + int i1 = ip < iLen ? in[ip++] & 0xff : 0;
4754 + int i2 = ip < iLen ? in[ip++] & 0xff : 0;
4791 + int iLen = in.length;
4792 + if (iLen%4 != 0) throw new IllegalArgumentException ("Length of Base64 encoded input string is…
4793 + while (iLen > 0 && in[iLen-1] == '=') iLen--;
[all …]
/external/pdfium/core/src/fxcrt/
Dfx_xml_parser.cpp159 FX_INT32 i = 0, iLen = str.GetLength(); in SkipLiterals() local
166 if (i == iLen) { in SkipLiterals()
172 if (i == iLen) { in SkipLiterals()
/external/libxml2/
Dcatalog.c3239 int i, iLen; in xmlLoadCatalogs() local
3254 iLen = strlen((const char*)path); in xmlLoadCatalogs()
3255 for(i = 0; i < iLen; i++) { in xmlLoadCatalogs()
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_parser.cpp96 FX_INT32 iLen = m_Trailers.GetSize(); in CloseParser() local
97 for (FX_INT32 i = 0; i < iLen; ++i) { in CloseParser()
4620 FX_INT32 iLen = m_number_array.GetSize(); in BinarySearch() local
4622 FX_INT32 iHigh = iLen - 1; in BinarySearch()