Home
last modified time | relevance | path

Searched refs:this_width (Results 1 – 6 of 6) sorted by relevance

/external/libaom/libaom/av1/common/
Dscale.h58 int this_width, int this_height) { in valid_ref_frame_size() argument
59 return 2 * this_width >= ref_width && 2 * this_height >= ref_height && in valid_ref_frame_size()
60 this_width <= 16 * ref_width && this_height <= 16 * ref_height; in valid_ref_frame_size()
/external/libvpx/libvpx/vp9/common/
Dvp9_scale.h62 int this_width, int this_height) { in valid_ref_frame_size() argument
63 return 2 * this_width >= ref_width && 2 * this_height >= ref_height && in valid_ref_frame_size()
64 this_width <= 16 * ref_width && this_height <= 16 * ref_height; in valid_ref_frame_size()
/external/pdfium/core/fpdftext/
Dcpdf_textpage.cpp748 float this_width = GetCharWidth(item.m_CharCode, pTextObj->GetFont()) * in ProcessTextObject() local
750 this_width = fabs(this_width); in ProcessTextObject()
753 this_width = fabs(this_width); in ProcessTextObject()
755 this_width = this_matrix.TransformDistance(this_width); in ProcessTextObject()
757 float threshold = prev_width > this_width ? prev_width / 4 : this_width / 4; in ProcessTextObject()
1059 int this_width = abs(GetCharWidth(item.m_CharCode, pFont)); in ProcessTextObject() local
1061 this_width > last_width ? (float)this_width : (float)last_width; in ProcessTextObject()
1282 float this_width = nThisWidth * pObj->GetFontSize() / 1000; in ProcessInsertObject() local
1283 this_width = fabs(this_width); in ProcessInsertObject()
1284 float threshold = last_width > this_width ? last_width / 4 : this_width / 4; in ProcessInsertObject()
[all …]
/external/libaom/libaom/av1/encoder/
Dreconinter_enc.c401 int this_width = xd->n4_w * MI_SIZE; in av1_build_prediction_by_left_preds() local
402 int pred_width = AOMMIN(this_width / 2, 32); in av1_build_prediction_by_left_preds()
403 xd->mb_to_right_edge += (this_width - pred_width) * 8; in av1_build_prediction_by_left_preds()
415 xd->mb_to_right_edge -= (this_width - pred_width) * 8; in av1_build_prediction_by_left_preds()
/external/libvterm/src/
Dstate.c326 int this_width = vterm_unicode_width(codepoints[i]); in on_text() local
328 if(this_width < 0) { in on_text()
333 width += this_width; in on_text()
/external/libaom/libaom/av1/decoder/
Ddecodeframe.c989 int this_width = xd->n4_w * MI_SIZE; in dec_build_prediction_by_left_preds() local
990 int pred_width = AOMMIN(this_width / 2, 32); in dec_build_prediction_by_left_preds()
991 xd->mb_to_right_edge += (this_width - pred_width) * 8; in dec_build_prediction_by_left_preds()
1003 xd->mb_to_right_edge -= (this_width - pred_width) * 8; in dec_build_prediction_by_left_preds()