/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gem/selftests/ |
H A D | i915_gem_coherency.c | 314 u32 *offsets, *values; in igt_gem_coherency() local 332 values = offsets + ncachelines; in igt_gem_coherency() 372 values[n] = prandom_u32_state(&prng); in igt_gem_coherency() 375 err = over->set(&ctx, offsets[n], ~values[n]); in igt_gem_coherency() 384 err = write->set(&ctx, offsets[n], values[n]); in igt_gem_coherency() 402 if (found != values[n]) { in igt_gem_coherency() 405 write->name, values[n], in igt_gem_coherency() 407 ~values[n], offsets[n]); in igt_gem_coherency()
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
H A D | inner_array_lookup.c | 17 __array(values, struct inner_map); 19 .values = {
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/ |
H A D | selftest_workarounds.c | 460 const u32 values[] = { in check_dirty_whitelist() local 492 scratch = create_scratch(ce->vm, 2 * ARRAY_SIZE(values) + 1); in check_dirty_whitelist() 543 for (v = 0; v < ARRAY_SIZE(values); v++) { in check_dirty_whitelist() 547 *cs++ = values[v]; in check_dirty_whitelist() 556 for (v = 0; v < ARRAY_SIZE(values); v++) { in check_dirty_whitelist() 560 *cs++ = ~values[v]; in check_dirty_whitelist() 633 GEM_BUG_ON(values[ARRAY_SIZE(values) - 1] != 0xffffffff); in check_dirty_whitelist() 636 rsvd = results[ARRAY_SIZE(values)]; in check_dirty_whitelist() 649 for (v = 0; v < ARRAY_SIZE(values); in check_dirty_whitelist() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gt/ |
H A D | selftest_workarounds.c | 476 const u32 values[] = { in check_dirty_whitelist() local 508 sz = (2 * ARRAY_SIZE(values) + 1) * sizeof(u32); in check_dirty_whitelist() 578 for (v = 0; v < ARRAY_SIZE(values); v++) { in check_dirty_whitelist() 582 *cs++ = values[v]; in check_dirty_whitelist() 591 for (v = 0; v < ARRAY_SIZE(values); v++) { in check_dirty_whitelist() 595 *cs++ = ~values[v]; in check_dirty_whitelist() 655 GEM_BUG_ON(values[ARRAY_SIZE(values) - 1] != 0xffffffff); in check_dirty_whitelist() 658 rsvd = results[ARRAY_SIZE(values)]; in check_dirty_whitelist() 671 for (v = 0; v < ARRAY_SIZE(values); in check_dirty_whitelist() [all...] |
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | counts.h | 15 struct xyarray *values; member 23 return xyarray__entry(counts->values, cpu, thread); in perf_counts()
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | counts.h | 14 struct xyarray *values; member 22 return xyarray__entry(counts->values, cpu_map_idx, thread); in perf_counts()
|
/kernel/linux/linux-5.10/drivers/mux/ |
H A D | gpio.c | 25 DECLARE_BITMAP(values, BITS_PER_TYPE(state)); in mux_gpio_set() 27 values[0] = state; in mux_gpio_set() 31 mux_gpio->gpios->info, values); in mux_gpio_set()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlxsw/ |
H A D | resources.h | 121 u64 values[__MLXSW_RES_ID_MAX]; member 138 return res->values[res_id]; in mlxsw_res_get() 148 res->values[res_id] = value; in mlxsw_res_set()
|
/kernel/linux/linux-5.10/samples/bpf/ |
H A D | xdp1_user.c | 47 __u64 values[nr_cpus], prev[UINT8_MAX] = { 0 }; in poll_stats() local 58 assert(bpf_map_lookup_elem(map_fd, &key, values) == 0); in poll_stats() 60 sum += values[i]; in poll_stats()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlxsw/ |
H A D | resources.h | 125 u64 values[__MLXSW_RES_ID_MAX]; member 142 return res->values[res_id]; in mlxsw_res_get() 152 res->values[res_id] = value; in mlxsw_res_set()
|
/kernel/linux/linux-6.6/drivers/mux/ |
H A D | gpio.c | 26 DECLARE_BITMAP(values, BITS_PER_TYPE(state)); in mux_gpio_set() 29 bitmap_from_arr32(values, &value, BITS_PER_TYPE(value)); in mux_gpio_set() 33 mux_gpio->gpios->info, values); in mux_gpio_set()
|
/kernel/linux/linux-6.6/drivers/gpio/ |
H A D | gpio-aggregator.c | 258 unsigned long tmp[]; /* values and descs for multiple ops */ 300 unsigned long *values = fwd_tmp_values(fwd); in gpio_fwd_get_multiple() local 304 bitmap_clear(values, 0, fwd->chip.ngpio); in gpio_fwd_get_multiple() 309 error = gpiod_get_array_value_cansleep(j, descs, NULL, values); in gpio_fwd_get_multiple() 311 error = gpiod_get_array_value(j, descs, NULL, values); in gpio_fwd_get_multiple() 317 __assign_bit(i, bits, test_bit(j++, values)); in gpio_fwd_get_multiple() 380 unsigned long *values = fwd_tmp_values(fwd); in gpio_fwd_set_multiple() local 384 __assign_bit(j, values, test_bit(i, bits)); in gpio_fwd_set_multiple() 389 gpiod_set_array_value_cansleep(j, descs, NULL, values); in gpio_fwd_set_multiple() 391 gpiod_set_array_value(j, descs, NULL, values); in gpio_fwd_set_multiple() [all...] |
H A D | gpio-max3191x.c | 317 unsigned long *values; in gpiod_set_array_single_value_cansleep() local 319 values = bitmap_alloc(ndescs, GFP_KERNEL); in gpiod_set_array_single_value_cansleep() 320 if (!values) in gpiod_set_array_single_value_cansleep() 324 bitmap_fill(values, ndescs); in gpiod_set_array_single_value_cansleep() 326 bitmap_zero(values, ndescs); in gpiod_set_array_single_value_cansleep() 328 gpiod_set_array_value_cansleep(ndescs, desc, info, values); in gpiod_set_array_single_value_cansleep() 329 bitmap_free(values); in gpiod_set_array_single_value_cansleep()
|
/kernel/linux/linux-6.6/drivers/crypto/intel/qat/qat_common/ |
H A D | adf_fw_counters.c | 32 u64 values[ADF_FW_COUNTERS_COUNT]; member 44 ae_counters->values[ADF_FW_REQUESTS] = req_count; in adf_fw_counters_parse_ae_values() 45 ae_counters->values[ADF_FW_RESPONSES] = resp_count; in adf_fw_counters_parse_ae_values() 178 ae_counters->values[i]); in qat_fw_counters_seq_show() 237 * QAT acceleration device. The table stores device specific execution values
|
/kernel/linux/linux-5.10/drivers/char/agp/ |
H A D | efficeon-agp.c | 92 struct aper_size_info_lvl2 *values; in efficeon_fetch_size() local 95 values = A_SIZE_LVL2(agp_bridge->driver->aperture_sizes); in efficeon_fetch_size() 98 if (temp == values[i].size_value) { in efficeon_fetch_size() 100 agp_bridge->current_size = (void *) (values + i); in efficeon_fetch_size() 102 return values[i].size; in efficeon_fetch_size()
|
H A D | ali-agp.c | 25 struct aper_size_info_32 *values; in ali_fetch_size() local 29 values = A_SIZE_32(agp_bridge->driver->aperture_sizes); in ali_fetch_size() 32 if (temp == values[i].size_value) { in ali_fetch_size() 34 agp_bridge->current_size = (void *) (values + i); in ali_fetch_size() 36 return values[i].size; in ali_fetch_size()
|
/kernel/linux/linux-5.10/drivers/iio/pressure/ |
H A D | hp206c.c | 96 u8 values[3]; in hp206c_read_20bit() local 98 ret = i2c_smbus_read_i2c_block_data(client, cmd, sizeof(values), values); in hp206c_read_20bit() 101 if (ret != sizeof(values)) in hp206c_read_20bit() 103 return get_unaligned_be24(&values[0]) & GENMASK(19, 0); in hp206c_read_20bit()
|
/kernel/linux/linux-6.6/drivers/char/agp/ |
H A D | efficeon-agp.c | 92 struct aper_size_info_lvl2 *values; in efficeon_fetch_size() local 95 values = A_SIZE_LVL2(agp_bridge->driver->aperture_sizes); in efficeon_fetch_size() 98 if (temp == values[i].size_value) { in efficeon_fetch_size() 100 agp_bridge->current_size = (void *) (values + i); in efficeon_fetch_size() 102 return values[i].size; in efficeon_fetch_size()
|
H A D | ali-agp.c | 25 struct aper_size_info_32 *values; in ali_fetch_size() local 29 values = A_SIZE_32(agp_bridge->driver->aperture_sizes); in ali_fetch_size() 32 if (temp == values[i].size_value) { in ali_fetch_size() 34 agp_bridge->current_size = (void *) (values + i); in ali_fetch_size() 36 return values[i].size; in ali_fetch_size()
|
/kernel/linux/linux-6.6/drivers/iio/pressure/ |
H A D | hp206c.c | 96 u8 values[3]; in hp206c_read_20bit() local 98 ret = i2c_smbus_read_i2c_block_data(client, cmd, sizeof(values), values); in hp206c_read_20bit() 101 if (ret != sizeof(values)) in hp206c_read_20bit() 103 return get_unaligned_be24(&values[0]) & GENMASK(19, 0); in hp206c_read_20bit()
|
/kernel/linux/linux-5.10/drivers/gpio/ |
H A D | gpio-max3191x.c | 317 unsigned long *values; in gpiod_set_array_single_value_cansleep() local 319 values = bitmap_alloc(ndescs, GFP_KERNEL); in gpiod_set_array_single_value_cansleep() 320 if (!values) in gpiod_set_array_single_value_cansleep() 324 bitmap_fill(values, ndescs); in gpiod_set_array_single_value_cansleep() 326 bitmap_zero(values, ndescs); in gpiod_set_array_single_value_cansleep() 328 gpiod_set_array_value_cansleep(ndescs, desc, info, values); in gpiod_set_array_single_value_cansleep() 329 kfree(values); in gpiod_set_array_single_value_cansleep()
|
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/ |
H A D | ams-delta.c | 60 DECLARE_BITMAP(values, BITS_PER_TYPE(byte)) = { byte, }; in gpio_nand_io_write() 63 data_gpiods->info, values); in gpio_nand_io_write() 71 DECLARE_BITMAP(values, BITS_PER_TYPE(byte)) = { byte, }; in gpio_nand_dir_output() 76 test_bit(i, values)); in gpio_nand_dir_output() 87 DECLARE_BITMAP(values, BITS_PER_TYPE(res)) = { 0, }; in gpio_nand_io_read() 93 data_gpiods->info, values); in gpio_nand_io_read() 97 res = values[0]; in gpio_nand_io_read()
|
/kernel/linux/linux-5.10/net/ax25/ |
H A D | ax25_std_in.c | 44 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state1_machine() 50 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state1_machine() 86 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state1_machine() 150 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state3_machine() 153 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state3_machine() 275 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state4_machine() 278 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state4_machine()
|
/kernel/linux/linux-6.6/drivers/mtd/nand/raw/ |
H A D | ams-delta.c | 60 DECLARE_BITMAP(values, BITS_PER_TYPE(byte)) = { byte, }; in gpio_nand_io_write() 63 data_gpiods->info, values); in gpio_nand_io_write() 71 DECLARE_BITMAP(values, BITS_PER_TYPE(byte)) = { byte, }; in gpio_nand_dir_output() 76 test_bit(i, values)); in gpio_nand_dir_output() 87 DECLARE_BITMAP(values, BITS_PER_TYPE(res)) = { 0, }; in gpio_nand_io_read() 93 data_gpiods->info, values); in gpio_nand_io_read() 97 res = values[0]; in gpio_nand_io_read()
|
/kernel/linux/linux-6.6/net/ax25/ |
H A D | ax25_std_in.c | 44 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state1_machine() 50 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state1_machine() 86 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state1_machine() 150 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state3_machine() 153 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state3_machine() 275 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state4_machine() 278 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state4_machine()
|