Searched refs:temp_size (Results 1 - 5 of 5) sorted by relevance

/external/pdfium/core/src/fxcrt/
H A Dfx_basic_buffer.cpp459 FX_STRSIZE temp_size = (FX_STRSIZE)size; local
460 while (temp_size > 0) {
461 FX_STRSIZE buf_size = FX_MIN(m_BufSize - m_Length, (FX_STRSIZE)temp_size);
469 temp_size -= buf_size;
/external/opencv/cv/src/
H A Dcvfilter.cpp2289 CvSize temp_size;
2291 temp_size.width = cvAlign(src->cols + ksize.width - 1,8/CV_ELEM_SIZE(src->type & CV_MAT_DEPTH_MASK));
2292 //temp_size.width = src->cols + ksize.width - 1;
2293 temp_size.height = (stripe_size*2 + temp_size.width*pix_size) / (temp_size.width*pix_size*2);
2294 temp_size.height = MAX( temp_size.height, ksize.height );
2295 temp_size.height = MIN( temp_size
[all...]
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_flate.cpp909 unsigned long temp_size = dest_size;
910 FPDFAPI_FlateCompress(dest_buf, &temp_size, src_buf, src_size);
911 dest_size = (FX_DWORD)temp_size;
/external/libpng/
H A Dpngread.c785 const png_uint_32 temp_size = local
788 png_malloc(png_ptr, temp_size * sizeof(png_line_indexp));
797 for (i = 0; i < temp_size; i++)
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dj2k.c6274 OPJ_FLOAT32 temp_size;
6275 temp_size =(OPJ_FLOAT32)(image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0].prec)/
6277 parameters->max_cs_size = (int) floor(temp_size);

Completed in 317 milliseconds