Home
last modified time | relevance | path

Searched refs:new_var (Results 1 – 10 of 10) sorted by relevance

/openbmc/linux/drivers/video/fbdev/omap/
H A Domapfb_main.c603 struct fb_var_screeninfo *new_var = &fbdev->new_var; in omapfb_pan_display() local
605 memcpy(new_var, &fbi->var, sizeof(*new_var)); in omapfb_pan_display()
606 new_var->xoffset = var->xoffset; in omapfb_pan_display()
607 new_var->yoffset = var->yoffset; in omapfb_pan_display()
608 if (set_fb_var(fbi, new_var)) in omapfb_pan_display()
611 memcpy(&fbi->var, new_var, sizeof(*new_var)); in omapfb_pan_display()
833 struct fb_var_screeninfo *new_var = &fbdev->new_var; in omapfb_setup_mem() local
848 memcpy(new_var, &fbi->var, sizeof(*new_var)); in omapfb_setup_mem()
849 r = set_fb_var(fbi, new_var); in omapfb_setup_mem()
868 memcpy(&fbi->var, new_var, sizeof(fbi->var)); in omapfb_setup_mem()
H A Domapfb.h212 struct fb_var_screeninfo new_var; /* for mode changes */ member
/openbmc/linux/drivers/video/fbdev/omap2/omapfb/
H A Domapfb-sysfs.c98 struct fb_var_screeninfo new_var; in store_mirror() local
110 memcpy(&new_var, &fbi->var, sizeof(new_var)); in store_mirror()
111 r = check_fb_var(fbi, &new_var); in store_mirror()
114 memcpy(&fbi->var, &new_var, sizeof(fbi->var)); in store_mirror()
H A Domapfb-main.c1042 struct fb_var_screeninfo new_var; in omapfb_pan_display() local
1051 new_var = fbi->var; in omapfb_pan_display()
1052 new_var.xoffset = var->xoffset; in omapfb_pan_display()
1053 new_var.yoffset = var->yoffset; in omapfb_pan_display()
1055 fbi->var = new_var; in omapfb_pan_display()
1633 struct fb_var_screeninfo new_var; in omapfb_realloc_fbmem() local
1634 memcpy(&new_var, &fbi->var, sizeof(new_var)); in omapfb_realloc_fbmem()
1635 r = check_fb_var(fbi, &new_var); in omapfb_realloc_fbmem()
1638 memcpy(&fbi->var, &new_var, sizeof(fbi->var)); in omapfb_realloc_fbmem()
/openbmc/linux/drivers/video/fbdev/
H A Dda8xx-fb.c1212 struct fb_var_screeninfo new_var; in da8xx_pan_display() local
1221 memcpy(&new_var, &fbi->var, sizeof(new_var)); in da8xx_pan_display()
1222 new_var.xoffset = var->xoffset; in da8xx_pan_display()
1223 new_var.yoffset = var->yoffset; in da8xx_pan_display()
1224 if (fb_check_var(&new_var, fbi)) in da8xx_pan_display()
1227 memcpy(&fbi->var, &new_var, sizeof(new_var)); in da8xx_pan_display()
1230 new_var.yoffset * fix->line_length + in da8xx_pan_display()
1231 new_var.xoffset * fbi->var.bits_per_pixel / 8; in da8xx_pan_display()
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-security/trusted-services/corstone1000/
H A D0015-Add-timestamp-validation-for-uefi-variables.patch21 @@ -76,6 +76,7 @@ static efi_status_t verify_var_by_key_var(const efi_data_map *new_var,
79 @@ -1106,6 +1113,7 @@ static efi_status_t verify_var_by_key_var(const efi_data_map *new_var,
H A D0017-Implement-Private-Authenticated-Variable-verificatio.patch24 @@ -75,15 +75,25 @@ static efi_status_t verify_var_by_key_var(const efi_data_map *new_var,
99 @@ -1030,15 +1045,6 @@ select_verification_keys(const efi_data_map new_var, EFI_GUID global_variabl…
115 @@ -1114,13 +1120,39 @@ static efi_status_t verify_var_by_key_var(const efi_data_map *new_var,
H A D0016-Isolate-common-uefi-variable-authentication-steps.patch20 @@ -78,6 +78,12 @@ static efi_status_t verify_var_by_key_var(const efi_data_map *new_var,
/openbmc/linux/Documentation/ABI/stable/
H A Dsysfs-firmware-efi-vars71 new_var: Takes a "struct efi_variable" and
/openbmc/qemu/target/hexagon/idef-parser/
H A Dparser-helpers.c489 Var new_var; in gen_varid_allocate() local
491 memset(&new_var, 0, sizeof(Var)); in gen_varid_allocate()
497 new_var.name = varid->var.name; in gen_varid_allocate()
498 new_var.bit_width = bit_width; in gen_varid_allocate()
499 new_var.signedness = signedness; in gen_varid_allocate()
503 g_array_append_val(c->inst.allocated, new_var); in gen_varid_allocate()