Searched defs:outlength (Results 1 - 5 of 5) sorted by relevance

/external/pdfium/xfa/fxbarcode/oned/
H A DBC_OnedCode39Writer.cpp188 int32_t& outlength,
215 outlength = codeWidth;
187 Encode(const CFX_ByteString& contents, int32_t& outlength, int32_t& e) argument
/external/curl/lib/
H A Dx509asn1.c253 size_t outlength; local
291 outlength = inlength;
292 if(outlength)
293 memcpy(buf, from, outlength);
296 for(outlength = 0; from < end;) {
317 buf[outlength + 3] = (char) (0x80 | (wc & 0x3F));
321 buf[outlength + 2] = (char) (0x80 | (wc & 0x3F));
325 buf[outlength + 1] = (char) (0x80 | (wc & 0x3F));
329 buf[outlength] = (char) wc;
330 outlength
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_resize.c139 static const interp_kernel *choose_interp_filter(int inlength, int outlength) { argument
140 int outlength16 = outlength * 16;
154 uint8_t *output, int outlength) {
156 (((uint64_t)inlength << 32) + outlength / 2) / outlength;
158 inlength > outlength
159 ? (((int64_t)(inlength - outlength) << 31) + outlength / 2) /
160 outlength
161 : -(((int64_t)(outlength
153 interpolate(const uint8_t *const input, int inlength, uint8_t *output, int outlength) argument
455 highbd_interpolate(const uint16_t *const input, int inlength, uint16_t *output, int outlength, int bd) argument
[all...]
/external/curl/packages/OS400/
H A Dccsidcurl.c291 int * outlength,
308 d = curl_easy_unescape(handle, s, 0, outlength);
317 if(s && outlength)
318 *outlength = strlen(s);
290 curl_easy_unescape_ccsid(CURL * handle, const char * string, int length, int * outlength, unsigned int sccsid, unsigned int dccsid) argument
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp2434 unsigned lodepng_chunk_append(unsigned char** out, size_t* outlength, const unsigned char* chunk) argument
2439 size_t new_length = (*outlength) + total_chunk_length;
2440 if(new_length < total_chunk_length || new_length < (*outlength)) return 77; /*integer overflow happened*/
2445 (*outlength) = new_length;
2453 unsigned lodepng_chunk_create(unsigned char** out, size_t* outlength, unsigned length, argument
2458 size_t new_length = (*outlength) + length + 12;
2459 if(new_length < length + 12 || new_length < (*outlength)) return 77; /*integer overflow happened*/
2463 (*outlength) = new_length;
2464 chunk = &(*out)[(*outlength) - length - 12];

Completed in 1123 milliseconds