/openbmc/qemu/target/riscv/ |
H A D | m128_helper.c | 27 target_ulong vl, target_ulong vh) in HELPER() 32 if (vl == 0 && vh == 0) { /* Handle special behavior on div by zero */ in HELPER() 36 q = int128_divu(int128_make128(ul, uh), int128_make128(vl, vh)); in HELPER() 47 target_ulong vl, target_ulong vh) in HELPER() 52 if (vl == 0 && vh == 0) { in HELPER() 56 r = int128_remu(int128_make128(ul, uh), int128_make128(vl, vh)); in HELPER() 67 target_ulong vl, target_ulong vh) in HELPER() 72 if (vl == 0 && vh == 0) { /* Div by zero check */ in HELPER() 76 vh == ~0x0 && vl == ~0x0) { in HELPER() 81 q = int128_divs(int128_make128(ul, uh), int128_make128(vl, vh)); in HELPER() [all …]
|
/openbmc/u-boot/drivers/mtd/ubispl/ |
H A D | ubispl.c | 49 struct ubi_vid_hdr *vh, int unused) in ubi_io_read_vid_hdr() argument 63 res = ubi_io_read(ubi, vh, pnum, ubi->vid_offset, sizeof(*vh)); in ubi_io_read_vid_hdr() 70 vh->magic = 0; in ubi_io_read_vid_hdr() 76 magic = be32_to_cpu(vh->magic); in ubi_io_read_vid_hdr() 86 if (crc32(UBI_CRC32_INIT, vh, UBI_VID_HDR_SIZE_CRC) != in ubi_io_read_vid_hdr() 87 be32_to_cpu(vh->hdr_crc)) { in ubi_io_read_vid_hdr() 93 ubi_dbg("RV: pnum: %i sqnum %llu", pnum, be64_to_cpu(vh->sqnum)); in ubi_io_read_vid_hdr() 99 struct ubi_vid_hdr *vh, in ubi_rescan_fm_vid_hdr() argument 107 res = ubi_io_read_vid_hdr(ubi, fm_pnum, vh, 0); in ubi_rescan_fm_vid_hdr() 110 if (be32_to_cpu(vh->vol_id) == fm_vol_id && in ubi_rescan_fm_vid_hdr() [all …]
|
/openbmc/linux/fs/efs/ |
H A D | super.c | 155 static efs_block_t efs_validate_vh(struct volume_header *vh) { in module_exit() 163 if (be32_to_cpu(vh->vh_magic) != VHMAGIC) { in module_exit() 172 ui = ((__be32 *) (vh + 1)) - 1; in module_exit() 173 for(csum = 0; ui >= ((__be32 *) vh);) { in module_exit() 183 pr_debug("bf: \"%16s\"\n", vh->vh_bootfile); in module_exit() 190 name[j] = vh->vh_vd[i].vd_name[j]; in module_exit() 196 name, (int) be32_to_cpu(vh->vh_vd[i].vd_lbn), in module_exit() 197 (int) be32_to_cpu(vh->vh_vd[i].vd_nbytes)); in module_exit() 203 pt_type = (int) be32_to_cpu(vh->vh_pt[i].pt_type); in module_exit() 208 if (be32_to_cpu(vh->vh_pt[i].pt_nblks)) { in module_exit() [all …]
|
/openbmc/linux/tools/testing/selftests/net/ |
H A D | tap.c | 309 struct virtio_net_hdr *vh = (struct virtio_net_hdr *)buf; in build_test_packet_valid_udp_gso() local 311 vh->hdr_len = ETH_HLEN + sizeof(struct iphdr) + sizeof(struct udphdr); in build_test_packet_valid_udp_gso() 312 vh->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM; in build_test_packet_valid_udp_gso() 313 vh->csum_start = ETH_HLEN + sizeof(struct iphdr); in build_test_packet_valid_udp_gso() 314 vh->csum_offset = __builtin_offsetof(struct udphdr, check); in build_test_packet_valid_udp_gso() 315 vh->gso_type = VIRTIO_NET_HDR_GSO_UDP; in build_test_packet_valid_udp_gso() 316 vh->gso_size = ETH_DATA_LEN - sizeof(struct iphdr); in build_test_packet_valid_udp_gso() 317 cur += sizeof(*vh); in build_test_packet_valid_udp_gso() 329 struct virtio_net_hdr *vh = (struct virtio_net_hdr *)buf; in build_test_packet_valid_udp_csum() local 331 vh->flags = VIRTIO_NET_HDR_F_DATA_VALID; in build_test_packet_valid_udp_csum() [all …]
|
H A D | psock_snd.c | 78 struct virtio_net_hdr *vh = header; in build_vnet_header() local 80 vh->hdr_len = ETH_HLEN + sizeof(struct iphdr) + sizeof(struct udphdr); in build_vnet_header() 83 vh->flags |= VIRTIO_NET_HDR_F_NEEDS_CSUM; in build_vnet_header() 84 vh->csum_start = ETH_HLEN + sizeof(struct iphdr); in build_vnet_header() 85 vh->csum_offset = __builtin_offsetof(struct udphdr, check); in build_vnet_header() 89 vh->csum_start += sizeof(struct udphdr) + cfg_payload_len - in build_vnet_header() 90 vh->csum_offset - 1; in build_vnet_header() 94 vh->gso_type = VIRTIO_NET_HDR_GSO_UDP; in build_vnet_header() 95 vh->gso_size = cfg_mtu - sizeof(struct iphdr); in build_vnet_header() 98 return sizeof(*vh); in build_vnet_header()
|
H A D | csum.c | 408 struct virtio_net_hdr vh = {0}; in send_packet() local 421 vh.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM; in send_packet() 423 vh.csum_start = sizeof(struct ethhdr) + sizeof(struct ipv6hdr); in send_packet() 426 vh.csum_start = sizeof(struct ethhdr) + sizeof(struct iphdr); in send_packet() 431 vh.csum_start += ENC_HEADER_LEN; in send_packet() 434 vh.csum_offset = __builtin_offsetof(struct tcphdr, check); in send_packet() 435 vh.hdr_len = vh.csum_start + sizeof(struct tcphdr); in send_packet() 437 vh.csum_offset = __builtin_offsetof(struct udphdr, check); in send_packet() 438 vh.hdr_len = vh.csum_start + sizeof(struct udphdr); in send_packet() 445 iov[0].iov_base = &vh; in send_packet() [all …]
|
/openbmc/linux/drivers/media/pci/solo6x10/ |
H A D | solo6x10-v4l2-enc.c | 89 const vop_header *vh; member 394 static inline __always_unused int vop_interlaced(const vop_header *vh) in vop_interlaced() argument 396 return (__le32_to_cpu((*vh)[0]) >> 30) & 1; in vop_interlaced() 399 static inline __always_unused u8 vop_channel(const vop_header *vh) in vop_channel() argument 401 return (__le32_to_cpu((*vh)[0]) >> 24) & 0x1F; in vop_channel() 404 static inline u8 vop_type(const vop_header *vh) in vop_type() argument 406 return (__le32_to_cpu((*vh)[0]) >> 22) & 3; in vop_type() 409 static inline u32 vop_mpeg_size(const vop_header *vh) in vop_mpeg_size() argument 411 return __le32_to_cpu((*vh)[0]) & 0xFFFFF; in vop_mpeg_size() 414 static inline u8 __always_unused vop_hsize(const vop_header *vh) in vop_hsize() argument [all …]
|
/openbmc/linux/fs/hfsplus/ |
H A D | ioctl.c | 32 struct hfsplus_vh *vh = sbi->s_vhdr; in hfsplus_ioctl_bless() local 42 vh->finder_info[0] = bvh->finder_info[0] = in hfsplus_ioctl_bless() 50 vh->finder_info[1] = bvh->finder_info[1] = cpu_to_be32(cnid); in hfsplus_ioctl_bless() 53 vh->finder_info[5] = bvh->finder_info[5] = in hfsplus_ioctl_bless()
|
/openbmc/qemu/host/include/aarch64/host/ |
H A D | store-insert-al16.h.inc | 27 uint64_t tl, th, vl, vh, ml, mh; 32 vh = int128_gethi(val); 40 "orr %[h], %[h], %[vh]\n\t" 44 : [vl] "r"(vl), [vh] "r"(vh), [ml] "r"(ml), [mh] "r"(mh));
|
/openbmc/u-boot/drivers/mtd/ubi/ |
H A D | fastmap.c | 463 struct ubi_vid_hdr *vh; in scan_pool() local 472 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL); in scan_pool() 473 if (!vh) { in scan_pool() 518 err = ubi_io_read_vid_hdr(ubi, pnum, vh, 0); in scan_pool() 543 new_aeb->lnum = be32_to_cpu(vh->lnum); in scan_pool() 544 new_aeb->sqnum = be64_to_cpu(vh->sqnum); in scan_pool() 545 new_aeb->copy_flag = vh->copy_flag; in scan_pool() 551 err = process_pool_aeb(ubi, ai, vh, new_aeb); in scan_pool() 566 ubi_free_vid_hdr(ubi, vh); in scan_pool() 881 struct ubi_vid_hdr *vh; in ubi_scan_fastmap() local [all …]
|
H A D | attach.c | 324 struct ubi_vid_hdr *vh = NULL; in ubi_compare_lebs() local 367 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL); in ubi_compare_lebs() 368 if (!vh) in ubi_compare_lebs() 372 err = ubi_io_read_vid_hdr(ubi, pnum, vh, 0); in ubi_compare_lebs() 386 vid_hdr = vh; in ubi_compare_lebs() 412 ubi_free_vid_hdr(ubi, vh); in ubi_compare_lebs() 424 ubi_free_vid_hdr(ubi, vh); in ubi_compare_lebs()
|
/openbmc/webui-vue/src/layouts/ |
H A D | LoginLayout.vue | 64 min-height: 100vh; 74 min-height: 50vh; 82 min-height: 100vh; 103 min-height: 100vh;
|
/openbmc/linux/arch/arm64/include/asm/ |
H A D | kvm_hyp.h | 42 #define read_sysreg_elx(r,nvh,vh) \ argument 46 __mrs_s("%0", r##vh), \ 52 #define write_sysreg_elx(v,r,nvh,vh) \ argument 56 __msr_s(r##vh, "%x0"), \
|
/openbmc/webui-vue/src/assets/styles/bmc/custom/ |
H A D | _kvm.scss | 2 height: calc(100vh - 300px); 5 height: calc(100vh - 80px);
|
/openbmc/linux/sound/usb/6fire/ |
H A D | comm.c | 56 u8 reg, u8 vl, u8 vh) in usb6fire_comm_init_buffer() argument 66 buffer[6] = vh; in usb6fire_comm_init_buffer() 125 u8 reg, u8 vl, u8 vh) in usb6fire_comm_write16() argument 135 usb6fire_comm_init_buffer(buffer, 0x00, request, reg, vl, vh); in usb6fire_comm_write16()
|
H A D | comm.h | 32 u8 vh, u8 vl);
|
/openbmc/linux/drivers/mtd/ubi/ |
H A D | fastmap.c | 107 struct ubi_vid_hdr *vh; in new_fm_vbuf() local 113 vh = ubi_get_vid_hdr(new); in new_fm_vbuf() 114 vh->vol_type = UBI_VID_DYNAMIC; in new_fm_vbuf() 115 vh->vol_id = cpu_to_be32(vol_id); in new_fm_vbuf() 120 vh->compat = UBI_COMPAT_DELETE; in new_fm_vbuf() 405 struct ubi_vid_hdr *vh; in scan_pool() local 420 vh = ubi_get_vid_hdr(vb); in scan_pool() 487 new_aeb->lnum = be32_to_cpu(vh->lnum); in scan_pool() 488 new_aeb->sqnum = be64_to_cpu(vh->sqnum); in scan_pool() 489 new_aeb->copy_flag = vh->copy_flag; in scan_pool() [all …]
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
H A D | gddr5.c | 37 int pd, lf, xd, vh, vr, vo, l3; in nvkm_gddr5_calc() local 47 vh = ram->next->bios.ramcfg_11_02_10; in nvkm_gddr5_calc() 114 ram->mr[7] |= (vh & 0x01) << 7; in nvkm_gddr5_calc()
|
/openbmc/linux/drivers/gpu/drm/nouveau/include/nvif/ |
H A D | unpack.h | 14 #define nvif_unpack(r,d,s,m,vl,vh,x) ({ \ argument 16 int _ret = (r), _vl = (vl), _vh = (vh); \
|
/openbmc/linux/include/linux/ |
H A D | if_vlan.h | 614 struct vlan_hdr vhdr, *vh; in __vlan_get_protocol_offset() local 616 vh = skb_header_pointer(skb, mac_offset + vlan_depth, in __vlan_get_protocol_offset() 618 if (unlikely(!vh || !--parse_depth)) in __vlan_get_protocol_offset() 621 type = vh->h_vlan_encapsulated_proto; in __vlan_get_protocol_offset()
|
/openbmc/linux/tools/testing/selftests/netfilter/ |
H A D | nf-queue.c | 170 struct nfqnl_msg_verdict_hdr vh = { in nfq_build_verdict() local 185 mnl_attr_put(nlh, NFQA_VERDICT_HDR, sizeof(vh), &vh); in nfq_build_verdict()
|
/openbmc/phosphor-webui/app/server-control/styles/ |
H A D | remote-console.scss | 28 height: 80vh;
|
/openbmc/linux/drivers/net/vxlan/ |
H A D | vxlan_core.c | 654 struct vxlanhdr *vh, size_t hdrlen, in vxlan_gro_remcsum() argument 662 return vh; in vxlan_gro_remcsum() 670 vh = skb_gro_remcsum_process(skb, (void *)vh, off, hdrlen, in vxlan_gro_remcsum() 675 return vh; in vxlan_gro_remcsum() 684 struct vxlanhdr *vh, *vh2; in vxlan_gro_prepare_receive() local 692 hlen = off_vx + sizeof(*vh); in vxlan_gro_prepare_receive() 693 vh = skb_gro_header(skb, hlen, off_vx); in vxlan_gro_prepare_receive() 694 if (unlikely(!vh)) in vxlan_gro_prepare_receive() 697 skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr)); in vxlan_gro_prepare_receive() 699 flags = vh->vx_flags; in vxlan_gro_prepare_receive() [all …]
|
/openbmc/linux/drivers/net/ethernet/qlogic/qlcnic/ |
H A D | qlcnic_io.c | 306 struct vlan_ethhdr *vh = (struct vlan_ethhdr *)(skb->data); in qlcnic_send_filter() local 321 vh = skb_vlan_eth_hdr(skb); in qlcnic_send_filter() 322 vlan_id = ntohs(vh->h_vlan_TCI); in qlcnic_send_filter() 466 struct vlan_ethhdr *vh; in qlcnic_tx_pkt() local 471 vh = skb_vlan_eth_hdr(skb); in qlcnic_tx_pkt() 473 vlan_tci = ntohs(vh->h_vlan_TCI); in qlcnic_tx_pkt() 474 protocol = ntohs(vh->h_vlan_encapsulated_proto); in qlcnic_tx_pkt() 526 vh = (struct vlan_ethhdr *)((char *) hwdesc + 2); in qlcnic_tx_pkt() 527 skb_copy_from_linear_data(skb, vh, 12); in qlcnic_tx_pkt() 528 vh->h_vlan_proto = htons(ETH_P_8021Q); in qlcnic_tx_pkt() [all …]
|
/openbmc/qemu/tcg/ |
H A D | tcg-op-ldst.c | 90 static void gen_ldst(TCGOpcode opc, TCGTemp *vl, TCGTemp *vh, in gen_ldst() argument 94 if (vh) { in gen_ldst() 95 tcg_gen_op4(opc, temp_arg(vl), temp_arg(vh), temp_arg(addr), oi); in gen_ldst() 104 if (vh) { in gen_ldst() 105 tcg_gen_op5(opc, temp_arg(vl), temp_arg(vh), in gen_ldst() 117 TCGTemp *vh = tcgv_i32_temp(TCGV_HIGH(v)); in gen_ldst_i64() local 118 gen_ldst(opc, vl, vh, addr, oi); in gen_ldst_i64()
|