Home
last modified time | relevance | path

Searched refs:pool_size (Results 1 – 8 of 8) sorted by relevance

/openbmc/u-boot/drivers/mtd/ubispl/
H A Dubispl.c247 static int scan_pool(struct ubi_scan_info *ubi, __be32 *pebs, int pool_size) in scan_pool() argument
253 ubi_dbg("Scanning pool size: %d", pool_size); in scan_pool()
255 for (i = 0; i < pool_size; i++) { in scan_pool()
290 int ret, i, j, pool_size, wl_pool_size; in ubi_attach_fastmap() local
331 pool_size = be16_to_cpu(fmpl1->size); in ubi_attach_fastmap()
336 if (pool_size > UBI_FM_MAX_POOL_SIZE || pool_size < 0) { in ubi_attach_fastmap()
337 ubi_err("bad pool size: %i", pool_size); in ubi_attach_fastmap()
463 ret = scan_pool(ubi, fmpl1->pebs, pool_size); in ubi_attach_fastmap()
/openbmc/libmctp/
H A Dlibmctp-cmds.h96 uint8_t pool_size; member
H A Dcontrol.c52 resp->pool_size = 0; in mctp_ctrl_set_endpoint_id()
/openbmc/u-boot/drivers/mtd/ubi/
H A Dfastmap.c455 __be32 *pebs, int pool_size, unsigned long long *max_sqnum, in scan_pool() argument
459 __be32 *pebs, int pool_size, unsigned long long *max_sqnum, in scan_pool()
478 dbg_bld("scanning fastmap pool: size = %i", pool_size); in scan_pool()
484 for (i = 0; i < pool_size; i++) { in scan_pool()
617 int ret, i, j, pool_size, wl_pool_size; in ubi_attach_fastmap() local
663 pool_size = be16_to_cpu(fmpl->size); in ubi_attach_fastmap()
668 if (pool_size > UBI_FM_MAX_POOL_SIZE || pool_size < 0) { in ubi_attach_fastmap()
669 ubi_err(ubi, "bad pool size: %i", pool_size); in ubi_attach_fastmap()
813 ret = scan_pool(ubi, ai, fmpl->pebs, pool_size, &max_sqnum, &free); in ubi_attach_fastmap()
/openbmc/qemu/hw/i2c/
H A Daspeed_i2c.c1209 uint32_t pool_offset = aic->pool_size + aic->pool_gap_size; in aspeed_i2c_realize()
1239 "aspeed.i2c-share-pool", aic->pool_size); in aspeed_i2c_realize()
1460 s, pool_name, aic->pool_size); in aspeed_i2c_bus_class_init()
1514 aic->pool_size = 0x800; in aspeed_2500_i2c_bus_get_irq()
1547 aic->pool_size = 0x10; in aspeed_2600_i2c_bus_get_irq()
1577 aic->pool_size = 0x20; in aspeed_1030_i2c_class_init()
1601 aic->pool_size = 0x20; in aspeed_2700_i2c_class_init()
1626 aic->pool_size = 0x20; in aspeed_i2c_register_types()
/openbmc/qemu/include/hw/i2c/
H A Daspeed_i2c.h296 uint64_t pool_size;
295 uint64_t pool_size; global() member
/openbmc/openbmc/meta-raspberrypi/dynamic-layers/multimedia-layer/recipes-multimedia/rpidistro-vlc/files/
H A D0004-mmal_20.patch1126 - int pool_size;
1160 - pool_size = NUM_DECODER_BUFFER_HEADERS;
1164 - pool_size = sys->output->buffer_num;
1180 - sys->output_pool = mmal_port_pool_create(sys->output, pool_size, 0);
1188 - dec->i_extra_picture_buffers = pool_size;
1190 - /* remove what VLC core reserves as it is part of the pool_size
7273 + unsigned int pool_size;
7299 + const unsigned int pool_size, const size_t el_size)
7304 + for (unsigned int n = 0; n != pool_size; ++n)
7316 + free_pool(p, p->pool, p->pool_size, p->el_size);
[all …]
/openbmc/qemu/tcg/
H A Dtcg.c1322 int pool_size; in tcg_malloc_internal()
1341 pool_size = TCG_POOL_CHUNK_SIZE; in tcg_malloc_internal()
1342 p = g_malloc(sizeof(TCGPool) + pool_size); in tcg_malloc_internal()
1343 p->size = pool_size; in tcg_malloc_internal()
1321 int pool_size; tcg_malloc_internal() local