Searched refs:test_buf (Results 1 – 7 of 7) sorted by relevance
/linux-6.12.1/lib/ |
D | crc32test.c | 34 static u8 const __aligned(8) test_buf[] __initconst = 680 crc ^= __crc32c_le(test[i].crc, test_buf + in crc32c_test() 689 if (test[i].crc32c_le != __crc32c_le(test[i].crc, test_buf + in crc32c_test() 717 crc_full = __crc32c_le(test[i].crc, test_buf + test[i].start, in crc32c_combine_test() 723 crc1 = __crc32c_le(test[i].crc, test_buf + in crc32c_combine_test() 725 crc2 = __crc32c_le(0, test_buf + test[i].start + in crc32c_combine_test() 760 crc ^= crc32_le(test[i].crc, test_buf + in crc32_test() 763 crc ^= crc32_be(test[i].crc, test_buf + in crc32_test() 772 if (test[i].crc_le != crc32_le(test[i].crc, test_buf + in crc32_test() 776 if (test[i].crc_be != crc32_be(test[i].crc, test_buf + in crc32_test() [all …]
|
D | test_firmware.c | 867 void *test_buf; in test_fw_run_batch_request() local 869 test_buf = kzalloc(TEST_FIRMWARE_BUF_SIZE, GFP_KERNEL); in test_fw_run_batch_request() 870 if (!test_buf) in test_fw_run_batch_request() 878 test_buf, in test_fw_run_batch_request() 886 test_buf, in test_fw_run_batch_request() 889 kfree(test_buf); in test_fw_run_batch_request() 891 req->fw_buf = test_buf; in test_fw_run_batch_request()
|
/linux-6.12.1/fs/xfs/ |
D | xfs_dahash_test.c | 18 static uint8_t __initdata __attribute__((__aligned__(8))) test_buf[] = variable 654 hash = xfs_da_hashname(test_buf + test[i].start, in xfs_dahash_test() 659 xname.name = test_buf + test[i].start; in xfs_dahash_test()
|
/linux-6.12.1/tools/virtio/ |
D | vhost_net_test.c | 52 char *test_buf; member 122 char *sendbuf = dev->test_buf + HDR_LEN; in vdev_send_packet() 220 dev->test_buf = dev->buf; in vdev_info_init() 221 dev->res_buf = dev->test_buf + HDR_LEN + TEST_BUF_LEN; in vdev_info_init() 223 memset(dev->test_buf, 0, HDR_LEN + TEST_BUF_LEN); in vdev_info_init() 224 eh = (struct ether_header *)(dev->test_buf + HDR_LEN); in vdev_info_init() 230 dev->test_buf[i + HDR_LEN] = (char)i; in vdev_info_init() 291 sg_init_one(&sl, dev->test_buf, HDR_LEN + TEST_BUF_LEN); in run_tx_test() 293 dev->test_buf + vq->started, in run_tx_test()
|
/linux-6.12.1/drivers/spi/ |
D | spi-aspeed-smc.c | 86 const u8 *golden_buf, u8 *test_buf); 856 const u8 *golden_buf, u8 *test_buf) in aspeed_spi_check_reads() argument 861 memcpy_fromio(test_buf, chip->ahb_base, CALIBRATE_BUF_SIZE); in aspeed_spi_check_reads() 862 if (memcmp(test_buf, golden_buf, CALIBRATE_BUF_SIZE) != 0) { in aspeed_spi_check_reads() 865 test_buf, 0x100); in aspeed_spi_check_reads() 879 const u8 *golden_buf, u8 *test_buf) in aspeed_spi_calibrate() argument 900 pass = aspeed_spi_check_reads(chip, golden_buf, test_buf); in aspeed_spi_calibrate() 931 static bool aspeed_spi_check_calib_data(const u8 *test_buf, u32 size) in aspeed_spi_check_calib_data() argument 933 const u32 *tb32 = (const u32 *)test_buf; in aspeed_spi_check_calib_data() 968 u8 *test_buf = NULL; in aspeed_spi_do_calibration() local [all …]
|
/linux-6.12.1/drivers/mmc/core/ |
D | mmc_ops.c | 771 u8 *test_buf; in mmc_send_bus_test() local 784 test_buf = testdata_8bit; in mmc_send_bus_test() 786 test_buf = testdata_4bit; in mmc_send_bus_test() 795 memcpy(data_buf, test_buf, len); in mmc_send_bus_test() 824 if ((test_buf[i] ^ data_buf[i]) != 0xff) { in mmc_send_bus_test()
|
/linux-6.12.1/drivers/net/ethernet/microchip/ |
D | enc28j60.c | 1255 u8 test_buf[64]; /* limit the test to the first 64 bytes */ in enc28j60_hw_tx() local 1259 if (test_len > sizeof(test_buf)) in enc28j60_hw_tx() 1260 test_len = sizeof(test_buf); in enc28j60_hw_tx() 1263 enc28j60_mem_read(priv, TXSTART_INIT + 1, test_len, test_buf); in enc28j60_hw_tx() 1266 if (priv->tx_skb->data[k] != test_buf[k]) { in enc28j60_hw_tx() 1269 k, priv->tx_skb->data[k], test_buf[k]); in enc28j60_hw_tx()
|