Searched refs:outlength (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_resize.c214 static const interp_kernel *choose_interp_filter(int inlength, int outlength) { argument
215 int outlength16 = outlength * 16;
229 uint8_t *output, int outlength) {
230 const int64_t delta = (((uint64_t)inlength << 32) + outlength / 2) /
231 outlength;
232 const int64_t offset = inlength > outlength ?
233 (((int64_t)(inlength - outlength) << 31) + outlength / 2) / outlength :
234 -(((int64_t)(outlength
228 interpolate(const uint8_t *const input, int inlength, uint8_t *output, int outlength) argument
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_resize.c214 static const interp_kernel *choose_interp_filter(int inlength, int outlength) { argument
215 int outlength16 = outlength * 16;
229 uint8_t *output, int outlength) {
230 const int64_t delta = (((uint64_t)inlength << 32) + outlength / 2) /
231 outlength;
232 const int64_t offset = inlength > outlength ?
233 (((int64_t)(inlength - outlength) << 31) + outlength / 2) / outlength :
234 -(((int64_t)(outlength
228 interpolate(const uint8_t *const input, int inlength, uint8_t *output, int outlength) argument
[all...]
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.h727 The out variable and outlength are updated to reflect the new reallocated buffer.
730 unsigned lodepng_chunk_append(unsigned char** out, size_t* outlength, const unsigned char* chunk);
735 The out variable and outlength are updated to reflect the new reallocated buffer.
738 unsigned lodepng_chunk_create(unsigned char** out, size_t* outlength, unsigned length,
1409 unsigned lodepng_chunk_append(unsigned char** out, size_t* outlength, const unsigned char* chunk):
1410 unsigned lodepng_chunk_create(unsigned char** out, size_t* outlength, unsigned length,
1414 length *outlength. The append function appends an existing chunk to the new data. The create
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 344 milliseconds