Home
last modified time | relevance | path

Searched refs:temp_size (Results 1 – 7 of 7) sorted by relevance

/external/opencv3/modules/cudastereo/src/
Dstereocsbp.cpp216 Size temp_size = data_cost.size(); in compute() local
217 if ((size_t)temp_size.area() < elem_step * rows_pyr[levels_ - 1] * ndisp_) in compute()
218 temp_size = Size(static_cast<int>(elem_step), rows_pyr[levels_ - 1] * ndisp_); in compute()
220 temp_.create(temp_size, msg_type_); in compute()
/external/pdfium/core/src/fxcrt/
Dfx_basic_buffer.cpp404 FX_STRSIZE temp_size = (FX_STRSIZE)size; in AppendBlock() local
405 while (temp_size > 0) { in AppendBlock()
406 FX_STRSIZE buf_size = std::min(m_BufSize - m_Length, (FX_STRSIZE)temp_size); in AppendBlock()
414 temp_size -= buf_size; in AppendBlock()
/external/webrtc/webrtc/base/
Dhttpbase.cc153 unsigned int temp_size; in ProcessLine() local
154 if (sscanf(value_str.c_str(), "%u", &temp_size) != 1) { in ProcessLine()
158 data_size_ = static_cast<size_t>(temp_size); in ProcessLine()
/external/opencv/cv/src/
Dcvfilter.cpp2289 CvSize temp_size; in icvIPPFilterInit() local
2291temp_size.width = cvAlign(src->cols + ksize.width - 1,8/CV_ELEM_SIZE(src->type & CV_MAT_DEPTH_MASK… in icvIPPFilterInit()
2293 temp_size.height = (stripe_size*2 + temp_size.width*pix_size) / (temp_size.width*pix_size*2); in icvIPPFilterInit()
2294 temp_size.height = MAX( temp_size.height, ksize.height ); in icvIPPFilterInit()
2295 temp_size.height = MIN( temp_size.height, src->rows + ksize.height - 1 ); in icvIPPFilterInit()
2297 return cvCreateMat( temp_size.height, temp_size.width, src->type ); in icvIPPFilterInit()
2310 CvSize stripe_size, temp_size; in icvIPPFilterNextStripe() local
2340 temp_size = cvSize(temp->cols, temp_rows); in icvIPPFilterNextStripe()
2342 stripe_size, temp_ptr, temp_step, temp_size, in icvIPPFilterNextStripe()
/external/pdfium/core/src/fxcodec/codec/
Dfx_codec_flate.cpp1001 unsigned long temp_size = dest_size; in Encode() local
1002 FPDFAPI_FlateCompress(dest_buf, &temp_size, src_buf, src_size); in Encode()
1003 dest_size = (FX_DWORD)temp_size; in Encode()
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
Dvp8_impl.cc1236 uint32_t temp_size = last_keyframe_._size; // Save size. in Decode() local
1239 last_keyframe_._size = temp_size; // Restore buffer size. in Decode()
/external/pdfium/third_party/libopenjpeg20/
Dj2k.c6221 OPJ_FLOAT32 temp_size; in opj_j2k_setup_encoder() local
6222temp_size =(OPJ_FLOAT32)(image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0]… in opj_j2k_setup_encoder()
6224 parameters->max_cs_size = (int) floor(temp_size); in opj_j2k_setup_encoder()