Lines Matching refs:in

12  *  GRUB is distributed in the hope that it will be useful,
466 grub_target_to_host32_real (struct image_target_desc *image_target, grub_uint32_t in)
469 return grub_be_to_cpu32 (in);
471 return grub_le_to_cpu32 (in);
475 grub_target_to_host64_real (struct image_target_desc *image_target, grub_uint64_t in)
478 return grub_be_to_cpu64 (in);
480 return grub_le_to_cpu64 (in);
484 grub_host_to_target64_real (struct image_target_desc *image_target, grub_uint64_t in)
487 return grub_cpu_to_be64 (in);
489 return grub_cpu_to_le64 (in);
493 grub_host_to_target32_real (struct image_target_desc *image_target, grub_uint32_t in)
496 return grub_cpu_to_be32 (in);
498 return grub_cpu_to_le32 (in);
502 grub_target_to_host16_real (struct image_target_desc *image_target, grub_uint16_t in)
505 return grub_be_to_cpu16 (in);
507 return grub_le_to_cpu16 (in);
511 grub_host_to_target16_real (struct image_target_desc *image_target, grub_uint16_t in)
514 return grub_cpu_to_be16 (in);
516 return grub_cpu_to_le16 (in);
520 grub_host_to_target_addr_real (struct image_target_desc *image_target, grub_uint64_t in)
523 return grub_host_to_target64_real (image_target, in);
525 return grub_host_to_target32_real (image_target, in);
529 grub_target_to_host_real (struct image_target_desc *image_target, grub_uint64_t in)
532 return grub_target_to_host64_real (image_target, in);
534 return grub_target_to_host32_real (image_target, in);
779 /* Fill in the grub_module_info structure. */
796 /* Fill in the grub_module_info structure. */
1014 /* This is filled elsewhere. Verify it just in case. */
1687 -O, --format=FORMAT generate an image in format\n\
1844 "modules in %s.\nRefusing to grub-mkimage with incompatible modules.\n"),