Home
last modified time | relevance | path

Searched refs:clength (Results 1 – 6 of 6) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_convert.c155 int clength = 1; in convert_posix() local
170 GETCHARLENTEST(c, posix, clength); in convert_posix()
172 posix += clength; in convert_posix()
173 plength -= clength; in convert_posix()
218 if (p + clength > endp) return PCRE2_ERROR_NOMEMORY; in convert_posix()
219 memcpy(p, posix - clength, CU2BYTES(clength)); in convert_posix()
220 p += clength; in convert_posix()
346 if (p + clength > endp) return PCRE2_ERROR_NOMEMORY; in convert_posix()
347 memcpy(p, posix - clength, CU2BYTES(clength)); in convert_posix()
348 p += clength; in convert_posix()
/external/icu/icu4c/source/test/intltest/
Dcolldata.cpp533 int32_t clength = ceList2->size(); in minLengthInChars() local
535 int32_t roffset = offset + clength; in minLengthInChars()
637 int32_t clength = ceList->size(); in minLengthInChars() local
638 int32_t *history = NEW_ARRAY(int32_t, clength); in minLengthInChars()
640 for (int32_t i = 0; i < clength; i += 1) { in minLengthInChars()
/external/python/cpython2/Lib/
Dcgi.py153 clength = int(environ['CONTENT_LENGTH'])
154 if maxlen and clength > maxlen:
156 qs = fp.read(clength)
236 clength = headers.getheader('content-length')
237 if clength:
239 bytes = int(clength)
/external/nist-sip/java/gov/nist/javax/sip/stack/
DMessageChannel.java409 int clength = badReq.length(); in createBadReqRes() local
411 clength + buf.length() + ContentTypeHeader.NAME.length() in createBadReqRes()
420 ContentLength clengthHeader = new ContentLength(clength); in createBadReqRes()
/external/python/cpython3/Lib/
Dcgi.py161 clength = int(environ['CONTENT_LENGTH'])
162 if maxlen and clength > maxlen:
164 qs = fp.read(clength).decode(encoding)
/external/zopfli/src/zopflipng/lodepng/
Dlodepng_util.cpp182 unsigned clength = lodepng_chunk_length(chunk); in getFilterTypesInterlaced() local
184 for(unsigned i = 0; i < clength; i++) in getFilterTypesInterlaced()