Home
last modified time | relevance | path

Searched refs:flength (Results 1 – 2 of 2) sorted by relevance

/external/libvncserver/libvncserver/
Dwebsockets.c625 int flength, fhlen; in webSocketsDecodeHybi() local
667 flength = header->b1 & 0x7f; in webSocketsDecodeHybi()
681 if (flength < 126) { in webSocketsDecodeHybi()
684 } else if (flength == 126 && 4 <= ret) { in webSocketsDecodeHybi()
685 flength = WS_NTOH16(header->l16); in webSocketsDecodeHybi()
688 } else if (flength == 127 && 10 <= ret) { in webSocketsDecodeHybi()
689 flength = WS_NTOH64(header->l64); in webSocketsDecodeHybi()
700 total = fhlen + flength + 4; in webSocketsDecodeHybi()
717 for (i = 0; i < flength / 4; i++) { in webSocketsDecodeHybi()
721 for (i*=4; i < flength; i++) { in webSocketsDecodeHybi()
[all …]
/external/libxml2/
Dxmlschemas.c17226 flength = NULL, ftotdig = NULL, ffracdig = NULL, in xmlSchemaDeriveAndValidateFacets() local
17272 flength = facet; break; in xmlSchemaDeriveAndValidateFacets()
17321 if (flength && (fminlen || fmaxlen)) { in xmlSchemaDeriveAndValidateFacets()
17322 FACET_RESTR_ERR(flength, "It is an error for both 'length' and " in xmlSchemaDeriveAndValidateFacets()
17342 if (flength && bflength) { in xmlSchemaDeriveAndValidateFacets()
17347 res = xmlSchemaCompareValues(flength->val, bflength->val); in xmlSchemaDeriveAndValidateFacets()
17351 xmlSchemaDeriveFacetErr(pctxt, flength, bflength, 0, 0, 1); in xmlSchemaDeriveAndValidateFacets()
17353 FACET_RESTR_FIXED_ERR(flength) in xmlSchemaDeriveAndValidateFacets()
17388 if (! flength) in xmlSchemaDeriveAndValidateFacets()
17389 flength = bflength; in xmlSchemaDeriveAndValidateFacets()
[all …]