Home
last modified time | relevance | path

Searched refs:output_bytes (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dlzwenc.c60 int output_bytes; ///< Number of written bytes member
193 ret -= s->output_bytes; in writtenBytes()
194 s->output_bytes += ret; in writtenBytes()
215 s->output_bytes = 0; in ff_lzw_encode_init()
233 if(insize * 3 > (s->bufsize - s->output_bytes) * 2){ in ff_lzw_encode()
/third_party/mbedtls/tests/scripts/
Dtest_psa_constant_names.py134 output_bytes = subprocess.check_output([self.options.program,
136 output = output_bytes.decode('ascii')
/third_party/node/test/js-native-api/test_typedarray/
Dtest_typedarray.c58 uint8_t* output_bytes = (uint8_t*)(output_ptr); in Multiply() local
60 output_bytes[i] = (uint8_t)(input_bytes[i] * multiplier); in Multiply()
/third_party/skia/third_party/externals/libpng/
Dpngwrite.c1520 png_alloc_size_t output_bytes; /* running total */ member
2169 png_alloc_size_t ob = display->output_bytes;
2181 display->output_bytes = ob+size;
2240 display.output_bytes = 0; in png_image_write_to_memory()
2251 if (memory != NULL && display.output_bytes > *memory_bytes) in png_image_write_to_memory()
2254 *memory_bytes = display.output_bytes; in png_image_write_to_memory()
/third_party/astc-encoder/Source/
Dstb_image.h4596 int output_bytes = out_n*bytes; in stbi__create_png_image_raw() local
4601 …a->out = (stbi_uc *) stbi__malloc_mad3(x, y, output_bytes, 0); // extra bytes to write off the end… in stbi__create_png_image_raw()
4657 cur += output_bytes; in stbi__create_png_image_raw()
4658 prior += output_bytes; in stbi__create_png_image_raw()
4687 …=x-1; i >= 1; --i, cur[filter_bytes]=255,raw+=filter_bytes,cur+=output_bytes,prior+=output_bytes) \ in stbi__create_png_image_raw()
4691 …STBI__CASE(STBI__F_sub) { cur[k] = STBI__BYTECAST(raw[k] + cur[k- output_bytes]); } break; in stbi__create_png_image_raw()
4693 …_avg) { cur[k] = STBI__BYTECAST(raw[k] + ((prior[k] + cur[k- output_bytes])>>1)); } break; in stbi__create_png_image_raw()
4694 …{ cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k- output_bytes],prior[k],prior[k- output_bytes in stbi__create_png_image_raw()
4695 …CASE(STBI__F_avg_first) { cur[k] = STBI__BYTECAST(raw[k] + (cur[k- output_bytes] >> 1)); } brea… in stbi__create_png_image_raw()
4696 …F_paeth_first) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k- output_bytes],0,0)); } break; in stbi__create_png_image_raw()
[all …]