Home
last modified time | relevance | path

Searched refs:row_height (Results 1 – 16 of 16) sorted by relevance

/third_party/mesa3d/src/intel/tools/
Daubinator_viewer_urb.h35 const float row_height = MAX2(RowHeight, label_size.y); in DrawAllocation() local
45 const float y = window_pos.y + s * row_height; in DrawAllocation()
51 y + row_height); in DrawAllocation()
54 y + row_height); in DrawAllocation()
/third_party/icu/tools/unicodetools/com/ibm/rbm/gui/
DBundleGroupEditDialog.java25 int row_height = 25; field in BundleGroupEditDialog
26 Dimension leftDim = new Dimension(left_col_width, row_height);
27 Dimension rightDim = new Dimension(right_col_width, row_height);
DBundleGroupCreationDialog.java25 int row_height = 25; field in BundleGroupCreationDialog
26 Dimension leftDim = new Dimension(left_col_width, row_height);
27 Dimension rightDim = new Dimension(right_col_width, row_height);
DBundleItemDialog.java29 int row_height = 25; field in BundleItemDialog
30 Dimension leftDim = new Dimension(left_col_width, row_height);
31 Dimension rightDim = new Dimension(right_col_width, row_height);
162 lookupLabels[i].setPreferredSize(new Dimension(30,row_height)); in initComponents()
164 lookupFields[i].setPreferredSize(new Dimension(right_col_width-35,row_height)); in initComponents()
DBundleItemCreationDialog.java29 int row_height = 25; field in BundleItemCreationDialog
30 Dimension leftDim = new Dimension(left_col_width, row_height);
31 Dimension rightDim = new Dimension(right_col_width, row_height);
/third_party/ffmpeg/libavcodec/
Dhevc_ps.c1313 av_freep(&pps->row_height); in hevc_pps_free()
1384 pps->row_height = av_malloc_array(pps->num_tile_rows, sizeof(*pps->row_height)); in setup_pps()
1386 if (!pps->column_width || !pps->row_height) in setup_pps()
1395 pps->row_height[i] = ((i + 1) * sps->ctb_height) / pps->num_tile_rows - in setup_pps()
1406 pps->row_bd[i + 1] = pps->row_bd[i] + pps->row_height[i]; in setup_pps()
1450 val += pps->row_height[tile_y] * pps->column_width[i]; in setup_pps()
1452 val += sps->ctb_width * pps->row_height[i]; in setup_pps()
1638 pps->row_height = av_malloc_array(pps->num_tile_rows, sizeof(*pps->row_height)); in ff_hevc_decode_nal_pps()
1639 if (!pps->column_width || !pps->row_height) { in ff_hevc_decode_nal_pps()
1660 pps->row_height[i] = get_ue_golomb_long(gb) + 1; in ff_hevc_decode_nal_pps()
[all …]
Dvaapi_encode.h314 int row_height[MAX_TILE_ROWS]; member
Dhevc_ps.h311 unsigned int *row_height; ///< RowHeight member
Dnvdec_hevc.c204 ppc->row_height_minus1[i] = pps->row_height[i] - 1; in nvdec_hevc_start_frame()
Ddxva2_hevc.c151 pp->row_height_minus1[i] = pps->row_height[i] - 1; in fill_picture_parameters()
Dvaapi_encode.c237 pic->slices[index].block_size = ctx->row_height[j] * ctx->col_width[i]; in vaapi_encode_make_tile_slice()
242 ctx->row_height[j], slice->block_size); in vaapi_encode_make_tile_slice()
1983 ctx->row_height[i] = ( i + 1 ) * ctx->slice_block_rows / ctx->tile_rows - in vaapi_encode_init_tile_slice_structure()
1985 ctx->row_bd[i + 1] = ctx->row_bd[i] + ctx->row_height[i]; in vaapi_encode_init_tile_slice_structure()
Dvaapi_encode_h265.c552 if (ctx->row_height[i] != in vaapi_encode_h265_init_sequence_params()
562 pps->row_height_minus1[i] = ctx->row_height[i] - 1; in vaapi_encode_h265_init_sequence_params()
Dvdpau_hevc.c168 info->row_height_minus1[i] = pps->row_height[i] - 1; in vdpau_hevc_start_frame()
Dvaapi_hevc.c211 pic_param->row_height_minus1[i] = pps->row_height[i] - 1; in vaapi_hevc_start_frame()
/third_party/skia/third_party/externals/imgui/
Dimgui_tables.cpp1841 float row_height = table->RowPosY2 - table->RowPosY1; in TableEndRow() local
1843 table->RowPosY1 = table->RowPosY2 - row_height; in TableEndRow()
2796 float row_height = GetTextLineHeight(); in TableGetHeaderRowHeight() local
2802 row_height = ImMax(row_height, CalcTextSize(TableGetColumnName(column_n)).y); in TableGetHeaderRowHeight()
2804 row_height += GetStyle().CellPadding.y * 2.0f; in TableGetHeaderRowHeight()
2805 return row_height; in TableGetHeaderRowHeight()
2826 const float row_height = TableGetHeaderRowHeight(); in TableHeadersRow() local
2827 TableNextRow(ImGuiTableRowFlags_Headers, row_height); in TableHeadersRow()
2849 if (mouse_pos.y >= row_y1 && mouse_pos.y < row_y1 + row_height) in TableHeadersRow()
/third_party/mesa3d/src/mesa/main/
Ddlist.c949 unsigned i, row_height = 0, xpos = 0, ypos = 0; in build_bitmap_atlas() local
1007 ypos += row_height; in build_bitmap_atlas()
1008 row_height = 0; in build_bitmap_atlas()
1024 row_height = MAX2(row_height, bitmap_height); in build_bitmap_atlas()
1028 atlas->texHeight = ypos + row_height; in build_bitmap_atlas()