Searched refs:outlength (Results 1 – 11 of 11) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_resize.c | 139 static const interp_kernel *choose_interp_filter(int inlength, int outlength) { in choose_interp_filter() argument 140 int outlength16 = outlength * 16; in choose_interp_filter() 154 uint8_t *output, int outlength) { in interpolate() argument 156 (((uint64_t)inlength << 32) + outlength / 2) / outlength; in interpolate() 158 inlength > outlength in interpolate() 159 ? (((int64_t)(inlength - outlength) << 31) + outlength / 2) / in interpolate() 160 outlength in interpolate() 161 : -(((int64_t)(outlength - inlength) << 31) + outlength / 2) / in interpolate() 162 outlength; in interpolate() 168 choose_interp_filter(inlength, outlength); in interpolate() [all …]
|
/external/curl/lib/ |
D | x509asn1.c | 268 size_t outlength; in utf8asn1str() local 302 outlength = inlength; in utf8asn1str() 303 if(outlength) in utf8asn1str() 304 memcpy(buf, from, outlength); in utf8asn1str() 307 for(outlength = 0; from < end;) { in utf8asn1str() 328 buf[outlength + 3] = (char) (0x80 | (wc & 0x3F)); in utf8asn1str() 332 buf[outlength + 2] = (char) (0x80 | (wc & 0x3F)); in utf8asn1str() 336 buf[outlength + 1] = (char) (0x80 | (wc & 0x3F)); in utf8asn1str() 340 buf[outlength] = (char) wc; in utf8asn1str() 341 outlength += charsize; in utf8asn1str() [all …]
|
/external/pdfium/fxbarcode/oned/ |
D | BC_OnedCode39Writer.cpp | 169 int32_t& outlength) { in EncodeImpl() argument 193 outlength = codeWidth; in EncodeImpl()
|
/external/testng/src/main/java/org/testng/log4testng/ |
D | Logger.java | 580 int outlength= out1.toString().length(); in testRootLoggerDefault() local 584 Assert.assertEquals(out1.toString().length(), outlength); in testRootLoggerDefault() local 587 Assert.assertEquals(out1.toString().length(), outlength); in testRootLoggerDefault() local
|
/external/curl/packages/OS400/ |
D | ccsidcurl.h | 38 int length, int * outlength,
|
D | ccsidcurl.c | 299 int * outlength, in curl_easy_unescape_ccsid() argument 316 d = curl_easy_unescape(handle, s, 0, outlength); in curl_easy_unescape_ccsid() 325 if(s && outlength) in curl_easy_unescape_ccsid() 326 *outlength = strlen(s); in curl_easy_unescape_ccsid()
|
D | curl.inc.in | 2277 d outlength 10i 0 options(*omit) 2666 d outlength 10i 0 options(*omit)
|
/external/zopfli/src/zopflipng/lodepng/ |
D | lodepng.h | 730 unsigned lodepng_chunk_append(unsigned char** out, size_t* outlength, const unsigned char* chunk); 738 unsigned lodepng_chunk_create(unsigned char** out, size_t* outlength, unsigned length,
|
D | lodepng.cpp | 2434 unsigned lodepng_chunk_append(unsigned char** out, size_t* outlength, const unsigned char* chunk) in lodepng_chunk_append() argument 2439 size_t new_length = (*outlength) + total_chunk_length; in lodepng_chunk_append() 2440 …if(new_length < total_chunk_length || new_length < (*outlength)) return 77; /*integer overflow hap… in lodepng_chunk_append() 2445 (*outlength) = new_length; in lodepng_chunk_append() 2453 unsigned lodepng_chunk_create(unsigned char** out, size_t* outlength, unsigned length, in lodepng_chunk_create() argument 2458 size_t new_length = (*outlength) + length + 12; in lodepng_chunk_create() 2459 if(new_length < length + 12 || new_length < (*outlength)) return 77; /*integer overflow happened*/ in lodepng_chunk_create() 2463 (*outlength) = new_length; in lodepng_chunk_create() 2464 chunk = &(*out)[(*outlength) - length - 12]; in lodepng_chunk_create()
|
/external/google-breakpad/src/third_party/curl/ |
D | curl.h | 1559 int *outlength);
|
/external/curl/include/curl/ |
D | curl.h | 2378 int *outlength);
|