/kernel/linux/linux-5.10/kernel/ |
H A D | stacktrace.c | 75 unsigned long *store; member 92 c->store[c->len++] = addr; in stack_trace_consume_entry() 105 * @store: Pointer to storage array 111 unsigned int stack_trace_save(unsigned long *store, unsigned int size, in stack_trace_save() argument 116 .store = store, in stack_trace_save() 129 * @store: Pointer to storage array 135 unsigned int stack_trace_save_tsk(struct task_struct *tsk, unsigned long *store, in stack_trace_save_tsk() argument 140 .store = store, in stack_trace_save_tsk() 163 stack_trace_save_regs(struct pt_regs *regs, unsigned long *store, unsigned int size, unsigned int skipnr) stack_trace_save_regs() argument 190 stack_trace_save_tsk_reliable(struct task_struct *tsk, unsigned long *store, unsigned int size) stack_trace_save_tsk_reliable() argument 221 stack_trace_save_user(unsigned long *store, unsigned int size) stack_trace_save_user() argument 269 stack_trace_save(unsigned long *store, unsigned int size, unsigned int skipnr) stack_trace_save() argument 292 stack_trace_save_tsk(struct task_struct *task, unsigned long *store, unsigned int size, unsigned int skipnr) stack_trace_save_tsk() argument 316 stack_trace_save_regs(struct pt_regs *regs, unsigned long *store, unsigned int size, unsigned int skipnr) stack_trace_save_regs() argument 342 stack_trace_save_tsk_reliable(struct task_struct *tsk, unsigned long *store, unsigned int size) stack_trace_save_tsk_reliable() argument 363 stack_trace_save_user(unsigned long *store, unsigned int size) stack_trace_save_user() argument [all...] |
/kernel/linux/linux-6.6/kernel/ |
H A D | stacktrace.c | 76 unsigned long *store; member 93 c->store[c->len++] = addr; in stack_trace_consume_entry() 106 * @store: Pointer to storage array 112 unsigned int stack_trace_save(unsigned long *store, unsigned int size, in stack_trace_save() argument 117 .store = store, in stack_trace_save() 130 * @store: Pointer to storage array 136 unsigned int stack_trace_save_tsk(struct task_struct *tsk, unsigned long *store, in stack_trace_save_tsk() argument 141 .store = store, in stack_trace_save_tsk() 164 stack_trace_save_regs(struct pt_regs *regs, unsigned long *store, unsigned int size, unsigned int skipnr) stack_trace_save_regs() argument 191 stack_trace_save_tsk_reliable(struct task_struct *tsk, unsigned long *store, unsigned int size) stack_trace_save_tsk_reliable() argument 222 stack_trace_save_user(unsigned long *store, unsigned int size) stack_trace_save_user() argument 267 stack_trace_save(unsigned long *store, unsigned int size, unsigned int skipnr) stack_trace_save() argument 290 stack_trace_save_tsk(struct task_struct *task, unsigned long *store, unsigned int size, unsigned int skipnr) stack_trace_save_tsk() argument 314 stack_trace_save_regs(struct pt_regs *regs, unsigned long *store, unsigned int size, unsigned int skipnr) stack_trace_save_regs() argument 340 stack_trace_save_tsk_reliable(struct task_struct *tsk, unsigned long *store, unsigned int size) stack_trace_save_tsk_reliable() argument 361 stack_trace_save_user(unsigned long *store, unsigned int size) stack_trace_save_user() argument [all...] |
/kernel/linux/linux-5.10/drivers/md/ |
H A D | dm-snap-persistent.c | 8 #include "dm-exception-store.h" 30 * We need to store a record of which parts of the origin have 33 * of the COW store. It makes sense therefore, to store the 100 * The top level structure for a persistent exception store. 103 struct dm_exception_store *store; member 139 * the exception store because chunks can be committed out of 172 len = ps->store->chunk_size << SECTOR_SHIFT; in alloc_area() 233 .bdev = dm_snap_cow(ps->store->snap)->bdev, in chunk_io() 234 .sector = ps->store in chunk_io() 563 get_info(struct dm_exception_store *store) get_info() argument 568 persistent_usage(struct dm_exception_store *store, sector_t *total_sectors, sector_t *sectors_allocated, sector_t *metadata_sectors) persistent_usage() argument 587 persistent_dtr(struct dm_exception_store *store) persistent_dtr() argument 604 persistent_read_metadata(struct dm_exception_store *store, int (*callback)(void *callback_context, chunk_t old, chunk_t new), void *callback_context) persistent_read_metadata() argument 669 persistent_prepare_exception(struct dm_exception_store *store, struct dm_exception *e) persistent_prepare_exception() argument 692 persistent_commit_exception(struct dm_exception_store *store, struct dm_exception *e, int valid, void (*callback) (void *, int success), void *callback_context) persistent_commit_exception() argument 758 persistent_prepare_merge(struct dm_exception_store *store, chunk_t *last_old_chunk, chunk_t *last_new_chunk) persistent_prepare_merge() argument 804 persistent_commit_merge(struct dm_exception_store *store, int nr_merged) persistent_commit_merge() argument 837 persistent_drop_snapshot(struct dm_exception_store *store) persistent_drop_snapshot() argument 846 persistent_ctr(struct dm_exception_store *store, char *options) persistent_ctr() argument 899 persistent_status(struct dm_exception_store *store, status_type_t status, char *result, unsigned maxlen) persistent_status() argument [all...] |
H A D | dm-snap-transient.c | 8 #include "dm-exception-store.h" 20 * Implementation of the store for non-persistent snapshots. 26 static void transient_dtr(struct dm_exception_store *store) in transient_dtr() argument 28 kfree(store->context); in transient_dtr() 31 static int transient_read_metadata(struct dm_exception_store *store, in transient_read_metadata() argument 39 static int transient_prepare_exception(struct dm_exception_store *store, in transient_prepare_exception() argument 42 struct transient_c *tc = store->context; in transient_prepare_exception() 43 sector_t size = get_dev_size(dm_snap_cow(store->snap)->bdev); in transient_prepare_exception() 45 if (size < (tc->next_free + store->chunk_size)) in transient_prepare_exception() 48 e->new_chunk = sector_to_chunk(store, t in transient_prepare_exception() 54 transient_commit_exception(struct dm_exception_store *store, struct dm_exception *e, int valid, void (*callback) (void *, int success), void *callback_context) transient_commit_exception() argument 63 transient_usage(struct dm_exception_store *store, sector_t *total_sectors, sector_t *sectors_allocated, sector_t *metadata_sectors) transient_usage() argument 73 transient_ctr(struct dm_exception_store *store, char *options) transient_ctr() argument 87 transient_status(struct dm_exception_store *store, status_type_t status, char *result, unsigned maxlen) transient_status() argument [all...] |
H A D | dm-exception-store.c | 8 #include "dm-exception-store.h" 64 * 'dm-exception-store-<type_name>' is too long of a name in my 66 * containing exception store implementations be 'dm-exstore-<type_name>'. 142 static int set_chunk_size(struct dm_exception_store *store, in set_chunk_size() argument 153 store->chunk_size = store->chunk_mask = store->chunk_shift = 0; in set_chunk_size() 157 return dm_exception_store_set_chunk_size(store, chunk_size, error); in set_chunk_size() 160 int dm_exception_store_set_chunk_size(struct dm_exception_store *store, in dm_exception_store_set_chunk_size() argument 172 (bdev_logical_block_size(dm_snap_cow(store in dm_exception_store_set_chunk_size() 191 dm_exception_store_create(struct dm_target *ti, int argc, char **argv, struct dm_snapshot *snap, unsigned *args_used, struct dm_exception_store **store) dm_exception_store_create() argument 254 dm_exception_store_destroy(struct dm_exception_store *store) dm_exception_store_destroy() argument [all...] |
H A D | dm-exception-store.h | 5 * Device-mapper snapshot exception store. 46 int (*ctr) (struct dm_exception_store *store, char *options); 51 void (*dtr) (struct dm_exception_store *store); 58 int (*read_metadata) (struct dm_exception_store *store, 64 * Find somewhere to store the next exception. 66 int (*prepare_exception) (struct dm_exception_store *store, 72 void (*commit_exception) (struct dm_exception_store *store, 78 * Returns 0 if the exception store is empty. 85 int (*prepare_merge) (struct dm_exception_store *store, 92 int (*commit_merge) (struct dm_exception_store *store, in 174 sector_to_chunk(struct dm_exception_store *store, sector_t sector) sector_to_chunk() argument [all...] |
H A D | dm-snap.c | 24 #include "dm-exception-store.h" 107 struct dm_exception_store *store; member 188 static sector_t chunk_to_sector(struct dm_exception_store *store, in chunk_to_sector() argument 191 return chunk << store->chunk_shift; in chunk_to_sector() 524 if (!snap_src->store->type->prepare_merge || in __validate_exception_handover() 525 !snap_src->store->type->commit_merge) { in __validate_exception_handover() 526 snap->ti->error = "Snapshot exception store does not " in __validate_exception_handover() 540 if (l->store->chunk_size < s->store->chunk_size) in __insert_snapshot() 549 * Also validate snapshot exception store handover [all...] |
/kernel/linux/linux-6.6/drivers/md/ |
H A D | dm-snap-persistent.c | 9 #include "dm-exception-store.h" 33 * We need to store a record of which parts of the origin have 36 * of the COW store. It makes sense therefore, to store the 103 * The top level structure for a persistent exception store. 106 struct dm_exception_store *store; member 142 * the exception store because chunks can be committed out of 175 len = ps->store->chunk_size << SECTOR_SHIFT; in alloc_area() 236 .bdev = dm_snap_cow(ps->store->snap)->bdev, in chunk_io() 237 .sector = ps->store in chunk_io() 568 get_info(struct dm_exception_store *store) get_info() argument 573 persistent_usage(struct dm_exception_store *store, sector_t *total_sectors, sector_t *sectors_allocated, sector_t *metadata_sectors) persistent_usage() argument 592 persistent_dtr(struct dm_exception_store *store) persistent_dtr() argument 609 persistent_read_metadata(struct dm_exception_store *store, int (*callback)(void *callback_context, chunk_t old, chunk_t new), void *callback_context) persistent_read_metadata() argument 674 persistent_prepare_exception(struct dm_exception_store *store, struct dm_exception *e) persistent_prepare_exception() argument 697 persistent_commit_exception(struct dm_exception_store *store, struct dm_exception *e, int valid, void (*callback)(void *, int success), void *callback_context) persistent_commit_exception() argument 763 persistent_prepare_merge(struct dm_exception_store *store, chunk_t *last_old_chunk, chunk_t *last_new_chunk) persistent_prepare_merge() argument 809 persistent_commit_merge(struct dm_exception_store *store, int nr_merged) persistent_commit_merge() argument 842 persistent_drop_snapshot(struct dm_exception_store *store) persistent_drop_snapshot() argument 851 persistent_ctr(struct dm_exception_store *store, char *options) persistent_ctr() argument 905 persistent_status(struct dm_exception_store *store, status_type_t status, char *result, unsigned int maxlen) persistent_status() argument [all...] |
H A D | dm-snap-transient.c | 9 #include "dm-exception-store.h" 22 * Implementation of the store for non-persistent snapshots. 29 static void transient_dtr(struct dm_exception_store *store) in transient_dtr() argument 31 kfree(store->context); in transient_dtr() 34 static int transient_read_metadata(struct dm_exception_store *store, in transient_read_metadata() argument 42 static int transient_prepare_exception(struct dm_exception_store *store, in transient_prepare_exception() argument 45 struct transient_c *tc = store->context; in transient_prepare_exception() 46 sector_t size = get_dev_size(dm_snap_cow(store->snap)->bdev); in transient_prepare_exception() 48 if (size < (tc->next_free + store->chunk_size)) in transient_prepare_exception() 51 e->new_chunk = sector_to_chunk(store, t in transient_prepare_exception() 57 transient_commit_exception(struct dm_exception_store *store, struct dm_exception *e, int valid, void (*callback)(void *, int success), void *callback_context) transient_commit_exception() argument 66 transient_usage(struct dm_exception_store *store, sector_t *total_sectors, sector_t *sectors_allocated, sector_t *metadata_sectors) transient_usage() argument 76 transient_ctr(struct dm_exception_store *store, char *options) transient_ctr() argument 90 transient_status(struct dm_exception_store *store, status_type_t status, char *result, unsigned int maxlen) transient_status() argument [all...] |
H A D | dm-exception-store.c | 9 #include "dm-exception-store.h" 65 * 'dm-exception-store-<type_name>' is too long of a name in my 67 * containing exception store implementations be 'dm-exstore-<type_name>'. 143 static int set_chunk_size(struct dm_exception_store *store, in set_chunk_size() argument 154 store->chunk_size = store->chunk_mask = store->chunk_shift = 0; in set_chunk_size() 158 return dm_exception_store_set_chunk_size(store, chunk_size, error); in set_chunk_size() 161 int dm_exception_store_set_chunk_size(struct dm_exception_store *store, in dm_exception_store_set_chunk_size() argument 173 (bdev_logical_block_size(dm_snap_cow(store in dm_exception_store_set_chunk_size() 192 dm_exception_store_create(struct dm_target *ti, int argc, char **argv, struct dm_snapshot *snap, unsigned int *args_used, struct dm_exception_store **store) dm_exception_store_create() argument 255 dm_exception_store_destroy(struct dm_exception_store *store) dm_exception_store_destroy() argument [all...] |
H A D | dm-exception-store.h | 6 * Device-mapper snapshot exception store. 47 int (*ctr)(struct dm_exception_store *store, char *options); 52 void (*dtr)(struct dm_exception_store *store); 59 int (*read_metadata)(struct dm_exception_store *store, 65 * Find somewhere to store the next exception. 67 int (*prepare_exception)(struct dm_exception_store *store, 73 void (*commit_exception)(struct dm_exception_store *store, 79 * Returns 0 if the exception store is empty. 86 int (*prepare_merge)(struct dm_exception_store *store, 93 int (*commit_merge)(struct dm_exception_store *store, in 175 sector_to_chunk(struct dm_exception_store *store, sector_t sector) sector_to_chunk() argument [all...] |
/kernel/linux/linux-5.10/tools/perf/ui/gtk/ |
H A D | hists.c | 97 static void perf_gtk__add_callchain_flat(struct rb_root *root, GtkTreeStore *store, in perf_gtk__add_callchain_flat() argument 119 gtk_tree_store_append(store, &iter, &new_parent); in perf_gtk__add_callchain_flat() 122 gtk_tree_store_set(store, &iter, 0, buf, -1); in perf_gtk__add_callchain_flat() 125 gtk_tree_store_set(store, &iter, col, buf, -1); in perf_gtk__add_callchain_flat() 140 gtk_tree_store_append(store, &iter, &new_parent); in perf_gtk__add_callchain_flat() 143 gtk_tree_store_set(store, &iter, 0, buf, -1); in perf_gtk__add_callchain_flat() 146 gtk_tree_store_set(store, &iter, col, buf, -1); in perf_gtk__add_callchain_flat() 160 static void perf_gtk__add_callchain_folded(struct rb_root *root, GtkTreeStore *store, in perf_gtk__add_callchain_folded() argument 209 gtk_tree_store_append(store, &iter, parent); in perf_gtk__add_callchain_folded() 212 gtk_tree_store_set(store, in perf_gtk__add_callchain_folded() 220 perf_gtk__add_callchain_graph(struct rb_root *root, GtkTreeStore *store, GtkTreeIter *parent, int col, u64 total) perf_gtk__add_callchain_graph() argument 270 perf_gtk__add_callchain(struct rb_root *root, GtkTreeStore *store, GtkTreeIter *parent, int col, u64 total) perf_gtk__add_callchain() argument 299 GtkTreeStore *store; perf_gtk__show_hists() local 405 perf_gtk__add_hierarchy_entries(struct hists *hists, struct rb_root_cached *root, GtkTreeStore *store, GtkTreeIter *parent, struct perf_hpp *hpp, float min_pcnt) perf_gtk__add_hierarchy_entries() argument 504 GtkTreeStore *store; perf_gtk__show_hierarchy() local [all...] |
/kernel/linux/linux-6.6/tools/perf/ui/gtk/ |
H A D | hists.c | 97 static void perf_gtk__add_callchain_flat(struct rb_root *root, GtkTreeStore *store, in perf_gtk__add_callchain_flat() argument 119 gtk_tree_store_append(store, &iter, &new_parent); in perf_gtk__add_callchain_flat() 122 gtk_tree_store_set(store, &iter, 0, buf, -1); in perf_gtk__add_callchain_flat() 125 gtk_tree_store_set(store, &iter, col, buf, -1); in perf_gtk__add_callchain_flat() 140 gtk_tree_store_append(store, &iter, &new_parent); in perf_gtk__add_callchain_flat() 143 gtk_tree_store_set(store, &iter, 0, buf, -1); in perf_gtk__add_callchain_flat() 146 gtk_tree_store_set(store, &iter, col, buf, -1); in perf_gtk__add_callchain_flat() 160 static void perf_gtk__add_callchain_folded(struct rb_root *root, GtkTreeStore *store, in perf_gtk__add_callchain_folded() argument 209 gtk_tree_store_append(store, &iter, parent); in perf_gtk__add_callchain_folded() 212 gtk_tree_store_set(store, in perf_gtk__add_callchain_folded() 220 perf_gtk__add_callchain_graph(struct rb_root *root, GtkTreeStore *store, GtkTreeIter *parent, int col, u64 total) perf_gtk__add_callchain_graph() argument 270 perf_gtk__add_callchain(struct rb_root *root, GtkTreeStore *store, GtkTreeIter *parent, int col, u64 total) perf_gtk__add_callchain() argument 299 GtkTreeStore *store; perf_gtk__show_hists() local 405 perf_gtk__add_hierarchy_entries(struct hists *hists, struct rb_root_cached *root, GtkTreeStore *store, GtkTreeIter *parent, struct perf_hpp *hpp, float min_pcnt) perf_gtk__add_hierarchy_entries() argument 504 GtkTreeStore *store; perf_gtk__show_hierarchy() local [all...] |
/kernel/linux/linux-5.10/sound/usb/ |
H A D | mixer_us16x08.c | 358 /* gets a current mixer value from common store */ 421 struct snd_us16x08_comp_store *store = elem->private_data; in snd_us16x08_comp_get() local 425 ucontrol->value.integer.value[0] = store->val[val_idx][index]; in snd_us16x08_comp_get() 435 struct snd_us16x08_comp_store *store = elem->private_data; in snd_us16x08_comp_put() local 451 store->val[val_idx][index] = ucontrol->value.integer.value[0]; in snd_us16x08_comp_put() 457 buf[8] = store->val[ in snd_us16x08_comp_put() 460 buf[11] = ratio_map[store->val[ in snd_us16x08_comp_put() 462 buf[14] = store->val[COMP_STORE_IDX(SND_US16X08_ID_COMP_ATTACK)][index] in snd_us16x08_comp_put() 464 buf[17] = store->val[COMP_STORE_IDX(SND_US16X08_ID_COMP_RELEASE)][index] in snd_us16x08_comp_put() 466 buf[20] = store in snd_us16x08_comp_put() 489 struct snd_us16x08_eq_store *store = elem->private_data; snd_us16x08_eqswitch_get() local 505 struct snd_us16x08_eq_store *store = elem->private_data; snd_us16x08_eqswitch_put() local 548 struct snd_us16x08_eq_store *store = elem->private_data; snd_us16x08_eq_get() local 565 struct snd_us16x08_eq_store *store = elem->private_data; snd_us16x08_eq_put() local 619 snd_get_meter_comp_index(struct snd_us16x08_meter_store *store) snd_get_meter_comp_index() argument 654 get_meter_levels_from_urb(int s, struct snd_us16x08_meter_store *store, u8 *meter_urb) get_meter_levels_from_urb() argument 689 struct snd_us16x08_meter_store *store = elem->private_data; snd_us16x08_meter_get() local 748 struct snd_us16x08_meter_store *store = elem->private_data; snd_us16x08_meter_put() local [all...] |
/kernel/linux/linux-6.6/sound/usb/ |
H A D | mixer_us16x08.c | 358 /* gets a current mixer value from common store */ 421 struct snd_us16x08_comp_store *store = elem->private_data; in snd_us16x08_comp_get() local 425 ucontrol->value.integer.value[0] = store->val[val_idx][index]; in snd_us16x08_comp_get() 435 struct snd_us16x08_comp_store *store = elem->private_data; in snd_us16x08_comp_put() local 451 store->val[val_idx][index] = ucontrol->value.integer.value[0]; in snd_us16x08_comp_put() 457 buf[8] = store->val[ in snd_us16x08_comp_put() 460 buf[11] = ratio_map[store->val[ in snd_us16x08_comp_put() 462 buf[14] = store->val[COMP_STORE_IDX(SND_US16X08_ID_COMP_ATTACK)][index] in snd_us16x08_comp_put() 464 buf[17] = store->val[COMP_STORE_IDX(SND_US16X08_ID_COMP_RELEASE)][index] in snd_us16x08_comp_put() 466 buf[20] = store in snd_us16x08_comp_put() 489 struct snd_us16x08_eq_store *store = elem->private_data; snd_us16x08_eqswitch_get() local 505 struct snd_us16x08_eq_store *store = elem->private_data; snd_us16x08_eqswitch_put() local 548 struct snd_us16x08_eq_store *store = elem->private_data; snd_us16x08_eq_get() local 565 struct snd_us16x08_eq_store *store = elem->private_data; snd_us16x08_eq_put() local 619 snd_get_meter_comp_index(struct snd_us16x08_meter_store *store) snd_get_meter_comp_index() argument 654 get_meter_levels_from_urb(int s, struct snd_us16x08_meter_store *store, u8 *meter_urb) get_meter_levels_from_urb() argument 689 struct snd_us16x08_meter_store *store = elem->private_data; snd_us16x08_meter_get() local 748 struct snd_us16x08_meter_store *store = elem->private_data; snd_us16x08_meter_put() local [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/gpio/ |
H A D | hw_gpio.c | 45 REG_GET(MASK_reg, MASK, &gpio->store.mask); in store_registers() 46 REG_GET(A_reg, A, &gpio->store.a); in store_registers() 47 REG_GET(EN_reg, EN, &gpio->store.en); in store_registers() 48 /* TODO store GPIO_MUX_CONTROL if we ever use it */ in store_registers() 54 REG_UPDATE(MASK_reg, MASK, gpio->store.mask); in restore_registers() 55 REG_UPDATE(A_reg, A, gpio->store.a); in restore_registers() 56 REG_UPDATE(EN_reg, EN, gpio->store.en); in restore_registers() 191 pin->store.mask = 0; in dal_hw_gpio_construct() 192 pin->store.a = 0; in dal_hw_gpio_construct() 193 pin->store in dal_hw_gpio_construct() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/gpio/ |
H A D | hw_gpio.c | 45 REG_GET(MASK_reg, MASK, &gpio->store.mask); in store_registers() 46 REG_GET(A_reg, A, &gpio->store.a); in store_registers() 47 REG_GET(EN_reg, EN, &gpio->store.en); in store_registers() 48 /* TODO store GPIO_MUX_CONTROL if we ever use it */ in store_registers() 54 REG_UPDATE(MASK_reg, MASK, gpio->store.mask); in restore_registers() 55 REG_UPDATE(A_reg, A, gpio->store.a); in restore_registers() 56 REG_UPDATE(EN_reg, EN, gpio->store.en); in restore_registers() 191 pin->store.mask = 0; in dal_hw_gpio_construct() 192 pin->store.a = 0; in dal_hw_gpio_construct() 193 pin->store in dal_hw_gpio_construct() [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/ptrace/ |
H A D | ptrace-vsx.h | 67 * unsigned long store[128] 70 int compare_vsx_vmx(unsigned long *store, unsigned long *load) in compare_vsx_vmx() argument 75 if (store[1 + 2 * i] != load[1 + 2 * i]) { in compare_vsx_vmx() 76 printf("store[%d]: %lx load[%d] %lx\n", in compare_vsx_vmx() 77 1 + 2 * i, store[i], in compare_vsx_vmx() 85 if (store[i] != load[i]) { in compare_vsx_vmx() 86 printf("store[%d]: %lx load[%d] %lx\n", in compare_vsx_vmx() 87 i, store[i], i, load[i]); in compare_vsx_vmx() 93 if (!(i % 2) && (store[i] != load[i+1])) { in compare_vsx_vmx() 94 printf("store[ in compare_vsx_vmx() [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/ptrace/ |
H A D | ptrace-vsx.h | 67 * unsigned long store[128] 70 int compare_vsx_vmx(unsigned long *store, unsigned long *load) in compare_vsx_vmx() argument 75 if (store[1 + 2 * i] != load[1 + 2 * i]) { in compare_vsx_vmx() 76 printf("store[%d]: %lx load[%d] %lx\n", in compare_vsx_vmx() 77 1 + 2 * i, store[i], in compare_vsx_vmx() 85 if (store[i] != load[i]) { in compare_vsx_vmx() 86 printf("store[%d]: %lx load[%d] %lx\n", in compare_vsx_vmx() 87 i, store[i], i, load[i]); in compare_vsx_vmx() 93 if (!(i % 2) && (store[i] != load[i+1])) { in compare_vsx_vmx() 94 printf("store[ in compare_vsx_vmx() [all...] |
/kernel/linux/linux-5.10/include/linux/ |
H A D | stacktrace.h | 16 unsigned int stack_trace_save(unsigned long *store, unsigned int size, 19 unsigned long *store, unsigned int size, 21 unsigned int stack_trace_save_regs(struct pt_regs *regs, unsigned long *store, 23 unsigned int stack_trace_save_user(unsigned long *store, unsigned int size); 34 * False, if there is no space left to store 79 int stack_trace_save_tsk_reliable(struct task_struct *tsk, unsigned long *store, 83 unsigned long *store, in stack_trace_save_tsk_reliable() 82 stack_trace_save_tsk_reliable(struct task_struct *tsk, unsigned long *store, unsigned int size) stack_trace_save_tsk_reliable() argument
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | stacktrace.h | 19 * False, if there is no space left to store 70 unsigned int stack_trace_save(unsigned long *store, unsigned int size, 73 unsigned long *store, unsigned int size, 75 unsigned int stack_trace_save_regs(struct pt_regs *regs, unsigned long *store, 77 unsigned int stack_trace_save_user(unsigned long *store, unsigned int size); 100 int stack_trace_save_tsk_reliable(struct task_struct *tsk, unsigned long *store, 104 unsigned long *store, in stack_trace_save_tsk_reliable() 103 stack_trace_save_tsk_reliable(struct task_struct *tsk, unsigned long *store, unsigned int size) stack_trace_save_tsk_reliable() argument
|
/kernel/linux/linux-5.10/drivers/media/pci/cx23885/ |
H A D | altera-ci.c | 264 u8 store; in altera_ci_op_cam() local 274 store = netup_fpga_op_rw(inter, NETUP_CI_BUSCTRL, 0, NETUP_CI_FLG_RD); in altera_ci_op_cam() 276 store &= 0x0f; in altera_ci_op_cam() 277 store |= ((state->nr << 7) | (flag << 6)); in altera_ci_op_cam() 279 netup_fpga_op_rw(inter, NETUP_CI_BUSCTRL, store, 0); in altera_ci_op_cam() 518 u8 store = 0; in altera_pid_control() local 530 store = netup_fpga_op_rw(inter, NETUP_CI_PID_DATA, 0, NETUP_CI_FLG_RD); in altera_pid_control() 533 store |= (1 << (pid & 7)); in altera_pid_control() 535 store &= ~(1 << (pid & 7)); in altera_pid_control() 537 netup_fpga_op_rw(inter, NETUP_CI_PID_DATA, store, in altera_pid_control() 549 u8 store = 0; altera_toggle_fullts_streaming() local 707 u8 store = 0; altera_ci_init() local 813 u8 store; altera_ci_tuner_reset() local [all...] |
/kernel/linux/linux-6.6/drivers/media/pci/cx23885/ |
H A D | altera-ci.c | 264 u8 store; in altera_ci_op_cam() local 274 store = netup_fpga_op_rw(inter, NETUP_CI_BUSCTRL, 0, NETUP_CI_FLG_RD); in altera_ci_op_cam() 276 store &= 0x0f; in altera_ci_op_cam() 277 store |= ((state->nr << 7) | (flag << 6)); in altera_ci_op_cam() 279 netup_fpga_op_rw(inter, NETUP_CI_BUSCTRL, store, 0); in altera_ci_op_cam() 518 u8 store = 0; in altera_pid_control() local 530 store = netup_fpga_op_rw(inter, NETUP_CI_PID_DATA, 0, NETUP_CI_FLG_RD); in altera_pid_control() 533 store |= (1 << (pid & 7)); in altera_pid_control() 535 store &= ~(1 << (pid & 7)); in altera_pid_control() 537 netup_fpga_op_rw(inter, NETUP_CI_PID_DATA, store, in altera_pid_control() 549 u8 store = 0; altera_toggle_fullts_streaming() local 707 u8 store = 0; altera_ci_init() local 813 u8 store; altera_ci_tuner_reset() local [all...] |
/kernel/linux/linux-5.10/tools/perf/scripts/python/ |
H A D | stat-cpi.py | 23 def store(time, event, cpu, thread, val, ena, run): function 36 store(time, "cycles", cpu, thread, val, ena, run); 39 store(time, "instructions", cpu, thread, val, ena, run); 42 store(time, "cycles", cpu, thread, val, ena, run); 45 store(time, "instructions", cpu, thread, val, ena, run); 48 store(time, "cycles", cpu, thread, val, ena, run); 51 store(time, "instructions", cpu, thread, val, ena, run);
|
/kernel/linux/linux-6.6/tools/perf/scripts/python/ |
H A D | stat-cpi.py | 23 def store(time, event, cpu, thread, val, ena, run): function 36 store(time, "cycles", cpu, thread, val, ena, run); 39 store(time, "instructions", cpu, thread, val, ena, run); 42 store(time, "cycles", cpu, thread, val, ena, run); 45 store(time, "instructions", cpu, thread, val, ena, run); 48 store(time, "cycles", cpu, thread, val, ena, run); 51 store(time, "instructions", cpu, thread, val, ena, run);
|