HomeSort by relevance Sort by last modified time
    Searched refs:inlength (Results 1 - 6 of 6) sorted by null

  /external/curl/lib/
escape.c 68 char *curl_escape(const char *string, int inlength)
70 return curl_easy_escape(NULL, string, inlength);
80 int inlength)
91 if(inlength < 0)
94 alloc = (inlength?(size_t)inlength:strlen(string)) + 1;
x509asn1.c 256 size_t inlength = end - from; local
288 if(inlength % size)
290 if(inlength / size > (CURL_SIZE_T_MAX - 1) / 4)
292 buf = malloc(4 * (inlength / size) + 1);
298 outlength = inlength;
    [all...]
  /external/curl/tests/server/
fake_ntlm.c 48 static char *printable(char *inbuf, size_t inlength)
62 if(!inlength)
63 inlength = strlen(inbuf);
65 if(inlength) {
66 outincr = ((inlength/2) < (HEX_STR_LEN + 1)) ?
67 HEX_STR_LEN + 1 : inlength/2;
68 outsize = inlength + outincr;
77 if(!inlength) {
82 for(i = 0; i<inlength; i++) {
  /external/libvpx/libvpx/vp9/encoder/
vp9_resize.c 139 static const interp_kernel *choose_interp_filter(int inlength, int outlength) {
141 if (outlength16 >= inlength * 16)
143 else if (outlength16 >= inlength * 13)
145 else if (outlength16 >= inlength * 11)
147 else if (outlength16 >= inlength * 9)
153 static void interpolate(const uint8_t *const input, int inlength,
156 (((uint64_t)inlength << 32) + outlength / 2) / outlength;
158 inlength > outlength
159 ? (((int64_t)(inlength - outlength) << 31) + outlength / 2) /
161 : -(((int64_t)(outlength - inlength) << 31) + outlength / 2)
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng_util.cpp 394 unsigned long huffmanDecodeSymbol(const unsigned char* in, size_t& bp, const HuffmanTree& codetree, size_t inlength)
400 if((bp & 0x07) == 0 && (bp >> 3) > inlength) { error = 10; return 0; } //error: end reached without endcode
408 const unsigned char* in, size_t& bp, size_t inlength)
413 if(bp >> 3 >= inlength - 2) { error = 49; return; } //the bit pointer is or will go past the memory
428 unsigned long code = huffmanDecodeSymbol(in, bp, codelengthcodetree, inlength); if(error) return;
433 if(bp >> 3 >= inlength) { error = 50; return; } //error, bit pointer jumps past memory
446 if(bp >> 3 >= inlength) { error = 50; return; } //error, bit pointer jumps past memory
457 if(bp >> 3 >= inlength) { error = 50; return; } //error, bit pointer jumps past memory
481 const unsigned char* in, size_t& bp, size_t& pos, size_t inlength, unsigned long btype)
485 else if(btype == 2) { getTreeInflateDynamic(codetree, codetreeD, in, bp, inlength); if(error) return;
    [all...]
lodepng.cpp 939 const unsigned char* in, size_t* bp, size_t inlength)
944 size_t inbitlength = inlength * 8;
953 if((*bp) >> 3 >= inlength - 2) return 49; /*error: the bit pointer is or will go past the memory*/
    [all...]

Completed in 233 milliseconds