/third_party/mesa3d/src/intel/tools/ |
D | aubinator_viewer_urb.h | 35 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/ |
D | BundleGroupEditDialog.java | 25 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);
|
D | BundleGroupCreationDialog.java | 25 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);
|
D | BundleItemDialog.java | 29 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()
|
D | BundleItemCreationDialog.java | 29 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/ |
D | hevc_ps.c | 1313 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 …]
|
D | vaapi_encode.h | 314 int row_height[MAX_TILE_ROWS]; member
|
D | hevc_ps.h | 311 unsigned int *row_height; ///< RowHeight member
|
D | nvdec_hevc.c | 204 ppc->row_height_minus1[i] = pps->row_height[i] - 1; in nvdec_hevc_start_frame()
|
D | dxva2_hevc.c | 151 pp->row_height_minus1[i] = pps->row_height[i] - 1; in fill_picture_parameters()
|
D | vaapi_encode.c | 237 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()
|
D | vaapi_encode_h265.c | 552 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()
|
D | vdpau_hevc.c | 168 info->row_height_minus1[i] = pps->row_height[i] - 1; in vdpau_hevc_start_frame()
|
D | vaapi_hevc.c | 211 pic_param->row_height_minus1[i] = pps->row_height[i] - 1; in vaapi_hevc_start_frame()
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui_tables.cpp | 1841 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/ |
D | dlist.c | 949 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()
|