| /f-stack/dpdk/app/test/ |
| H A D | test_bitops.c | 10 uint64_t val64; variable 45 rte_bit_relaxed_set64(i, &val64); in test_bit_relaxed_set() 48 if (!rte_bit_relaxed_get64(i, &val64)) { in test_bit_relaxed_set() 71 rte_bit_relaxed_clear64(i, &val64); in test_bit_relaxed_clear() 74 if (rte_bit_relaxed_get64(i, &val64)) { in test_bit_relaxed_clear() 103 rte_bit_relaxed_test_and_set64(i, &val64); in test_bit_relaxed_test_set_clear() 106 if (!rte_bit_relaxed_test_and_clear64(i, &val64)) { in test_bit_relaxed_test_set_clear() 112 if (rte_bit_relaxed_get64(i, &val64)) { in test_bit_relaxed_test_set_clear() 124 val64 = 0; in test_bitops()
|
| H A D | test_common.c | 66 uint64_t val64; in test_bsf() local 68 val64 = 1ULL << shift; in test_bsf() 69 if ((uint32_t)rte_bsf64(val64) != shift) in test_bsf() 71 if (rte_bsf64_safe(val64, &pos) != 1) in test_bsf()
|
| /f-stack/dpdk/drivers/net/liquidio/base/ |
| H A D | lio_hw_defs.h | 189 #define lio_write_csr64(lio_dev, reg_off, val64) \ argument 193 typeof(val64) _val64 = val64; \ 218 uint64_t val64 = rte_read64(_dev->hw_addr + _reg_off); \ 223 (unsigned long long)val64); \ 224 val64; \ 230 #define lio_write_csr64(lio_dev, reg_off, val64) \ argument 231 rte_write64(val64, (lio_dev)->hw_addr + (reg_off))
|
| /f-stack/freebsd/contrib/ncsw/etc/ |
| H A D | memcpy.c | 522 uint64_t val64; in MemSet64() local 529 val64 = (uint64_t) val; in MemSet64() 530 val64 |= (val64 << 8); in MemSet64() 531 val64 |= (val64 << 16); in MemSet64() 532 val64 |= (val64 << 24); in MemSet64() 533 val64 |= (val64 << 32); in MemSet64() 546 *pDst64++ = val64; in MemSet64()
|
| /f-stack/freebsd/contrib/zstd/lib/common/ |
| H A D | mem.h | 111 MEM_STATIC void MEM_writeLE64(void* memPtr, U64 val64); 120 MEM_STATIC void MEM_writeBE64(void* memPtr, U64 val64); 344 MEM_STATIC void MEM_writeLE64(void* memPtr, U64 val64) in MEM_writeLE64() argument 347 MEM_write64(memPtr, val64); in MEM_writeLE64() 349 MEM_write64(memPtr, MEM_swap64(val64)); in MEM_writeLE64() 394 MEM_STATIC void MEM_writeBE64(void* memPtr, U64 val64) in MEM_writeBE64() argument 397 MEM_write64(memPtr, MEM_swap64(val64)); in MEM_writeBE64() 399 MEM_write64(memPtr, val64); in MEM_writeBE64()
|
| /f-stack/freebsd/amd64/vmm/io/ |
| H A D | vhpet.c | 479 uint64_t data, mask, oldval, val64; in vhpet_mmio_write() local 559 val64 = vhpet_counter(vhpet, NULL); in vhpet_mmio_write() 560 update_register(&val64, data, mask); in vhpet_mmio_write() 561 vhpet->countbase = val64; in vhpet_mmio_write() 585 val64 = vhpet->timer[i].comprate; in vhpet_mmio_write() 586 update_register(&val64, data, mask); in vhpet_mmio_write() 587 vhpet->timer[i].comprate = val64; in vhpet_mmio_write() 590 vhpet->timer[i].compval = val64; in vhpet_mmio_write() 596 val64 = vhpet->timer[i].compval; in vhpet_mmio_write() 597 update_register(&val64, data, mask); in vhpet_mmio_write() [all …]
|
| /f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/ |
| H A D | zio_crypt.c | 680 uint64_t val64; in zio_crypt_encode_params_bp() local 691 bcopy(salt, &val64, sizeof (uint64_t)); in zio_crypt_encode_params_bp() 694 bcopy(iv, &val64, sizeof (uint64_t)); in zio_crypt_encode_params_bp() 705 uint64_t val64; in zio_crypt_decode_params_bp() local 725 bcopy(&val64, salt, sizeof (uint64_t)); in zio_crypt_decode_params_bp() 728 bcopy(&val64, iv, sizeof (uint64_t)); in zio_crypt_decode_params_bp() 738 uint64_t val64; in zio_crypt_encode_mac_bp() local 748 bcopy(mac, &val64, sizeof (uint64_t)); in zio_crypt_encode_mac_bp() 749 bp->blk_cksum.zc_word[2] = BSWAP_64(val64); in zio_crypt_encode_mac_bp() 759 uint64_t val64; in zio_crypt_decode_mac_bp() local [all …]
|
| /f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/ |
| H A D | zio_crypt.c | 746 uint64_t val64; in zio_crypt_encode_params_bp() local 757 bcopy(salt, &val64, sizeof (uint64_t)); in zio_crypt_encode_params_bp() 760 bcopy(iv, &val64, sizeof (uint64_t)); in zio_crypt_encode_params_bp() 771 uint64_t val64; in zio_crypt_decode_params_bp() local 791 bcopy(&val64, salt, sizeof (uint64_t)); in zio_crypt_decode_params_bp() 794 bcopy(&val64, iv, sizeof (uint64_t)); in zio_crypt_decode_params_bp() 804 uint64_t val64; in zio_crypt_encode_mac_bp() local 814 bcopy(mac, &val64, sizeof (uint64_t)); in zio_crypt_encode_mac_bp() 815 bp->blk_cksum.zc_word[2] = BSWAP_64(val64); in zio_crypt_encode_mac_bp() 825 uint64_t val64; in zio_crypt_decode_mac_bp() local [all …]
|
| /f-stack/dpdk/drivers/net/bnxt/tf_ulp/ |
| H A D | ulp_mapper.c | 1076 uint64_t val64; in ulp_mapper_keymask_field_process() local 1160 if (!ulp_regfile_read(regfile, idx, &val64)) { in ulp_mapper_keymask_field_process() 1166 val = ulp_blob_push_64(blob, &val64, bitlen); in ulp_mapper_keymask_field_process() 1181 idx, &val64)) { in ulp_mapper_keymask_field_process() 1186 val = ulp_blob_push_64(blob, &val64, bitlen); in ulp_mapper_keymask_field_process() 1252 uint64_t val64; in ulp_mapper_mark_act_ptr_process() local 1268 &val64)) { in ulp_mapper_mark_act_ptr_process() 1272 act_idx = tfp_be_to_cpu_64(val64); in ulp_mapper_mark_act_ptr_process() 1300 uint64_t val64; in ulp_mapper_mark_vfr_idx_process() local 1314 &val64)) { in ulp_mapper_mark_vfr_idx_process() [all …]
|
| /f-stack/dpdk/lib/librte_ethdev/ |
| H A D | rte_ethdev_driver.h | 1129 uint64_t val64; in rte_eth_linkstatus_set() member 1135 orig.val64 = __atomic_exchange_n(dev_link, *(const uint64_t *)new_link, in rte_eth_linkstatus_set()
|
| /f-stack/freebsd/netgraph/ |
| H A D | ng_parse.c | 628 int64_t val64; in ng_int64_parse() local 635 val64 = (int64_t)val; in ng_int64_parse() 636 bcopy(&val64, buf, sizeof(int64_t)); in ng_int64_parse()
|
| /f-stack/freebsd/contrib/openzfs/cmd/zfs/ |
| H A D | zfs_main.c | 3037 uint64_t val64; in print_us_node() local 3052 (void) nvpair_value_uint64(nvp, &val64); in print_us_node() 3071 (u_longlong_t)val64); in print_us_node() 3080 (u_longlong_t)val64); in print_us_node() 3083 val64 == 0) { in print_us_node() 3086 zfs_nicebytes(val64, valstr, in print_us_node() 3097 (u_longlong_t)val64); in print_us_node() 3100 val64 == 0) { in print_us_node() 3103 zfs_nicenum(val64, valstr, in print_us_node()
|
| /f-stack/dpdk/drivers/net/qede/base/ |
| H A D | mcp_public.h | 1213 struct mcp_val64 val64; /* For PHY / AVS commands */ member
|
| /f-stack/freebsd/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.c | 578 MEM_STATIC void MEM_writeLE64(void* memPtr, U64 val64) in MEM_writeLE64() argument 581 MEM_write64(memPtr, val64); in MEM_writeLE64() 583 MEM_write64(memPtr, MEM_swap64(val64)); in MEM_writeLE64() 628 MEM_STATIC void MEM_writeBE64(void* memPtr, U64 val64) in MEM_writeBE64() argument 631 MEM_write64(memPtr, MEM_swap64(val64)); in MEM_writeBE64() 633 MEM_write64(memPtr, val64); in MEM_writeBE64()
|