Home
last modified time | relevance | path

Searched refs:card_size (Results 1 – 25 of 143) sorted by relevance

123456

/dports/games/aisleriot/aisleriot-3.22.19/src/lib/
H A Dar-card-theme-svg.c69 preimage_card_theme->card_size.width, in ar_card_theme_svg_paint_card()
70 preimage_card_theme->card_size.height); in ar_card_theme_svg_paint_card()
80 width = preimage_card_theme->card_size.width - 2 * DELTA; in ar_card_theme_svg_paint_card()
81 height = preimage_card_theme->card_size.height - 2 * DELTA; in ar_card_theme_svg_paint_card()
94 preimage_card_theme->card_size.width, in ar_card_theme_svg_paint_card()
95 preimage_card_theme->card_size.height, in ar_card_theme_svg_paint_card()
H A Dar-card-theme-fixed.c48 CardSize card_size; member
143 theme->card_size.width = theme->card_size.height = -1; in ar_card_theme_fixed_init()
151 theme->card_size.width = theme->card_size.height = theme->slot_size.width = in ar_card_theme_fixed_init()
213 if (size.width == theme->card_size.width && in ar_card_theme_fixed_set_card_size()
214 size.height == theme->card_size.height) in ar_card_theme_fixed_set_card_size()
228 theme->card_size = size; in ar_card_theme_fixed_set_card_size()
260 *size = theme->card_size; in ar_card_theme_fixed_get_card_size()
268 return ((double) theme->card_size.width) / ((double) theme->card_size.height); in ar_card_theme_fixed_get_card_aspect()
H A Dar-card-theme-preimage.c95 theme->card_size.width = theme->card_size.height = theme->slot_size.width = in ar_card_theme_preimage_init()
174 if (theme->card_size.width == (int) twidth && in ar_card_theme_preimage_set_card_size()
175 theme->card_size.height == (int) theight) in ar_card_theme_preimage_set_card_size()
178 theme->card_size.width = twidth; in ar_card_theme_preimage_set_card_size()
179 theme->card_size.height = theight; in ar_card_theme_preimage_set_card_size()
193 *size = theme->card_size; in ar_card_theme_preimage_get_card_size()
H A Dar-card-surface-cache.c326 CardSize card_size; in ar_card_surface_cache_get_card_surface_by_id() local
330 ar_card_theme_get_size (priv->theme, &card_size); in ar_card_surface_cache_get_card_surface_by_id()
334 card_size.width, card_size.height); in ar_card_surface_cache_get_card_surface_by_id()
337 card_size.width, card_size.height); in ar_card_surface_cache_get_card_surface_by_id()
348 card_size.width, card_size.height); in ar_card_surface_cache_get_card_surface_by_id()
H A Dar-card-theme.c189 CardSize card_size; in ar_card_theme_class_real_get_card_pixbuf() local
193 ar_card_theme_get_size (card_theme, &card_size); in ar_card_theme_class_real_get_card_pixbuf()
195 rowstride = cairo_format_stride_for_width (CAIRO_FORMAT_ARGB32, card_size.width); in ar_card_theme_class_real_get_card_pixbuf()
197 data = g_try_malloc0 (rowstride * card_size.height); in ar_card_theme_class_real_get_card_pixbuf()
203 card_size.width, card_size.height, in ar_card_theme_class_real_get_card_pixbuf()
208 cairo_pixels_to_pixbuf (data, rowstride, card_size.height); in ar_card_theme_class_real_get_card_pixbuf()
214 card_size.width, card_size.height, in ar_card_theme_class_real_get_card_pixbuf()
H A Dar-card-theme-qsvg.cpp152 if (theme->card_size == size) in ar_card_theme_qsvg_set_card_size()
169 if (theme->card_size == tsize) in ar_card_theme_qsvg_set_card_size()
172 theme->card_size = tsize; in ar_card_theme_qsvg_set_card_size()
184 size->width = theme->card_size.width(); in ar_card_theme_qsvg_get_card_size()
185 size->height = theme->card_size.height(); in ar_card_theme_qsvg_get_card_size()
254 theme->card_size = QSize(); in ar_card_theme_qsvg_init()
H A Dar-card-theme-pysol.c88 CardSize card_size; member
203 if (!parse_int (g_strstrip (fields[0]), &data->card_size.width) || in pysol_config_txt_parse_line_2()
204 !parse_int (g_strstrip (fields[1]), &data->card_size.height) || in pysol_config_txt_parse_line_2()
322 *size = pysol_data->card_size; in ar_card_theme_pysol_get_card_size()
330 return ((double) pysol_data->card_size.width) / ((double) pysol_data->card_size.height); in ar_card_theme_pysol_get_card_aspect()
H A Drender-cards.c177 CardSize card_size; in main() local
227 ar_card_theme_get_size (theme, &card_size); in main()
228 g_key_file_set_integer (key_file, sizestr, "Width", card_size.width); in main()
229 g_key_file_set_integer (key_file, sizestr, "Height", card_size.height); in main()
/dports/math/py-or-tools/or-tools-9.2/ortools/constraint_solver/
H A Dcount_cst.cc192 int64_t card_size() const { return cards_.size(); } in card_size() function in operations_research::__anon08f892b00111::Distribute
214 for (int i = 0; i < card_size(); ++i) { in Post()
225 for (int j = 0; j < card_size(); ++j) { in InitialPropagate()
256 for (int j = 0; j < card_size(); ++j) { in OneBound()
279 for (int j = 0; j < card_size(); ++j) { in OneDomain()
368 int64_t card_size() const { return cards_.size(); } in card_size() function in operations_research::__anon08f892b00111::FastDistribute
618 for (int i = 0; i < card_size(); ++i) { in InitialPropagate()
816 for (int i = 0; i < card_size(); ++i) { in InitialPropagate()
827 vars_[i]->SetRange(0, card_size() - 1); in InitialPropagate()
1027 std::vector<int64_t> mins(card_size, card_min); in MakeDistribute()
[all …]
/dports/emulators/mess/mame-mame0226/src/devices/bus/psx/
H A Dmemcard.cpp25 static constexpr int card_size = block_size * 1024; variable
263 if (addr<(card_size/block_size)) in read_card()
283 if (addr<(card_size/block_size)) in write_card()
306 if(length() != card_size) in call_load()
323 for(i = 0; i < (card_size/block_size); i++) in call_create()
/dports/emulators/mame/mame-mame0226/src/devices/bus/psx/
H A Dmemcard.cpp25 static constexpr int card_size = block_size * 1024; variable
263 if (addr<(card_size/block_size)) in read_card()
283 if (addr<(card_size/block_size)) in write_card()
306 if(length() != card_size) in call_load()
323 for(i = 0; i < (card_size/block_size); i++) in call_create()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/compiler/runtime/
H A DTest8010927.java80 static final int card_size = 512; field in Test8010927
81 static final int one_card = (card_size - obj_header_size) / heap_oop_size;
86 static final Object[] cache = new Object[(surv_size / card_size)];
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/hotspot/jtreg/compiler/runtime/
H A DTest8010927.java80 static final int card_size = 512; field in Test8010927
81 static final int one_card = (card_size - obj_header_size) / heap_oop_size;
86 static final Object[] cache = new Object[(surv_size / card_size)];
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/hotspot/jtreg/compiler/runtime/
H A DTest8010927.java79 static final int card_size = 512; field in Test8010927
80 static final int one_card = (card_size - obj_header_size) / heap_oop_size;
85 static final Object[] cache = new Object[(surv_size / card_size)];
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/jtreg/compiler/runtime/
H A DTest8010927.java79 static final int card_size = 512; field in Test8010927
80 static final int one_card = (card_size - obj_header_size) / heap_oop_size;
85 static final Object[] cache = new Object[(surv_size / card_size)];
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/jtreg/compiler/runtime/
H A DTest8010927.java79 static final int card_size = 512; field in Test8010927
80 static final int one_card = (card_size - obj_header_size) / heap_oop_size;
85 static final Object[] cache = new Object[(surv_size / card_size)];
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/compiler/runtime/
H A DTest8010927.java80 static final int card_size = 512; field in Test8010927
81 static final int one_card = (card_size - obj_header_size) / heap_oop_size;
86 static final Object[] cache = new Object[(surv_size / card_size)];
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/hotspot/jtreg/compiler/runtime/
H A DTest8010927.java80 static final int card_size = 512; field in Test8010927
81 static final int one_card = (card_size - obj_header_size) / heap_oop_size;
86 static final Object[] cache = new Object[(surv_size / card_size)];
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/hotspot/jtreg/compiler/runtime/
H A DTest8010927.java80 static final int card_size = 512; field in Test8010927
81 static final int one_card = (card_size - obj_header_size) / heap_oop_size;
86 static final Object[] cache = new Object[(surv_size / card_size)];
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/test/compiler/8010927/
H A DTest8010927.java72 static final int card_size = 512; field in Test8010927
73 static final int one_card = (card_size - obj_header_size)/heap_oop_size;
78 static final Object[] cache = new Object[(surv_size / card_size)];
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/test/compiler/8010927/
H A DTest8010927.java72 static final int card_size = 512; field in Test8010927
73 static final int one_card = (card_size - obj_header_size)/heap_oop_size;
78 static final Object[] cache = new Object[(surv_size / card_size)];
/dports/games/aisleriot/aisleriot-3.22.19/src/
H A Dboard-noclutter.c83 CardSize card_size; member
753 CardSize card_size; in aisleriot_board_setup_geometry() local
774 ar_card_theme_get_size (theme, &card_size); in aisleriot_board_setup_geometry()
776 priv->card_size = card_size; in aisleriot_board_setup_geometry()
781 priv->xslotstep = (card_size.width * 3) / 2; in aisleriot_board_setup_geometry()
786 priv->yslotstep = (card_size.height * 3) / 2; in aisleriot_board_setup_geometry()
864 x += hslot->rect.width - priv->card_size.width; in drag_begin()
2998 card_rect.width = priv->card_size.width; in aisleriot_board_draw()
2999 card_rect.height = priv->card_size.height; in aisleriot_board_draw()
3122 card_rect.width = priv->card_size.width; in aisleriot_board_draw()
[all …]
/dports/emulators/qemu-utils/qemu-4.2.1/roms/u-boot-sam460ex/drivers/mmc/
H A Domap3_mmc.c350 unsigned int size, count, blk_len, blk_no, card_size, argument; in mmc_read_cardsize() local
356 card_size = in mmc_read_cardsize()
362 mmc_dev_data->size = card_size * 1024; in mmc_read_cardsize()
387 card_size = (cur_csd->c_size_lsb & MMC_CSD_C_SIZE_LSB_MASK) | in mmc_read_cardsize()
390 blk_no = (card_size + 1) * count; in mmc_read_cardsize()
/dports/emulators/qemu5/qemu-5.2.0/roms/u-boot-sam460ex/drivers/mmc/
H A Domap3_mmc.c350 unsigned int size, count, blk_len, blk_no, card_size, argument; in mmc_read_cardsize() local
356 card_size = in mmc_read_cardsize()
362 mmc_dev_data->size = card_size * 1024; in mmc_read_cardsize()
387 card_size = (cur_csd->c_size_lsb & MMC_CSD_C_SIZE_LSB_MASK) | in mmc_read_cardsize()
390 blk_no = (card_size + 1) * count; in mmc_read_cardsize()
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/u-boot-sam460ex/drivers/mmc/
H A Domap3_mmc.c350 unsigned int size, count, blk_len, blk_no, card_size, argument; in mmc_read_cardsize() local
356 card_size = in mmc_read_cardsize()
362 mmc_dev_data->size = card_size * 1024; in mmc_read_cardsize()
387 card_size = (cur_csd->c_size_lsb & MMC_CSD_C_SIZE_LSB_MASK) | in mmc_read_cardsize()
390 blk_no = (card_size + 1) * count; in mmc_read_cardsize()

123456