Home
last modified time | relevance | path

Searched refs:outh (Results 1 – 7 of 7) sorted by relevance

/openbmc/u-boot/fs/yaffs2/
H A Dyaffs_uboot_glue.c282 int outh; in make_a_file() local
286 outh = yaffs_open(yaffsName, in make_a_file()
289 if (outh < 0) { in make_a_file()
290 printf("Error opening file: %d. %s\n", outh, yaffs_error_str()); in make_a_file()
302 yaffs_write(outh, buffer, i); in make_a_file()
307 yaffs_close(outh); in make_a_file()
385 int outh; in cmd_yaffs_mwrite_file() local
387 outh = yaffs_open(fn, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE); in cmd_yaffs_mwrite_file()
388 if (outh < 0) in cmd_yaffs_mwrite_file()
389 printf("Error opening file: %d, %s\n", outh, yaffs_error_str()); in cmd_yaffs_mwrite_file()
[all …]
/openbmc/qemu/scripts/
H A Ddisas-objdump.pl25 my ($outh, $outname) = tempfile();
26 binmode($outh);
70 sysseek $outh, 0, 0;
71 truncate $outh, 0;
72 syswrite $outh, $mem;
/openbmc/linux/drivers/video/fbdev/omap2/omapfb/dss/
H A Doverlay.c142 u16 outw, outh; in dss_ovl_check() local
150 outh = info->height; in dss_ovl_check()
158 outh = info->height; in dss_ovl_check()
160 outh = info->out_height; in dss_ovl_check()
170 if (dh < info->pos_y + outh) { in dss_ovl_check()
173 ovl->id, info->pos_y, outh, dh); in dss_ovl_check()
/openbmc/linux/drivers/media/platform/ti/omap/
H A Domap_vout.c280 int outh, dma_addr_t addr) in omapvid_setup_overlay() argument
287 (outw != vout->pix.width || outh != vout->pix.height)) { in omapvid_setup_overlay()
320 info.out_height = outh; in omapvid_setup_overlay()
360 int posx, posy, outw, outh; in omapvid_init() local
377 outh = win->w.height; in omapvid_init()
383 swap(outw, outh); in omapvid_init()
394 swap(outw, outh); in omapvid_init()
406 outw, outh, addr); in omapvid_init()
/openbmc/linux/drivers/video/fbdev/omap2/omapfb/
H A Domapfb.h124 u16 posx, u16 posy, u16 outw, u16 outh);
H A Domapfb-main.c832 u16 posx, u16 posy, u16 outw, u16 outh) in omapfb_setup_overlay() argument
858 posx, posy, outw, outh); in omapfb_setup_overlay()
910 info.out_height = outh; in omapfb_setup_overlay()
933 u16 outw, outh; in omapfb_apply_changes() local
961 outh = var->xres; in omapfb_apply_changes()
964 outh = var->yres; in omapfb_apply_changes()
970 outh = info.out_height; in omapfb_apply_changes()
983 r = omapfb_setup_overlay(fbi, ovl, posx, posy, outw, outh); in omapfb_apply_changes()
/openbmc/qemu/target/ppc/translate/
H A Dvsx-impl.c.inc147 static void gen_bswap16x8(TCGv_i64 outh, TCGv_i64 outl,
154 /* outh = ((inh & mask) << 8) | ((inh >> 8) & mask) */
159 tcg_gen_or_i64(outh, t0, t1);
169 static void gen_bswap32x4(TCGv_i64 outh, TCGv_i64 outl,
177 tcg_gen_shri_i64(outh, hi, 32);
178 tcg_gen_deposit_i64(outh, outh, hi, 32, 32);
377 TCGv_i64 outh = tcg_temp_new_i64();
380 gen_bswap16x8(outh, outl, xsh, xsl);
381 tcg_gen_qemu_st_i64(outh, EA, ctx->mem_idx, MO_BEUQ);