/linux-6.8/drivers/gpu/drm/radeon/ |
D | r200.c | 150 struct r100_cs_track *track; in r200_packet0_check() local 160 track = (struct r100_cs_track *)p->track; in r200_packet0_check() 188 track->zb.robj = reloc->robj; in r200_packet0_check() 189 track->zb.offset = idx_value; in r200_packet0_check() 190 track->zb_dirty = true; in r200_packet0_check() 201 track->cb[0].robj = reloc->robj; in r200_packet0_check() 202 track->cb[0].offset = idx_value; in r200_packet0_check() 203 track->cb_dirty = true; in r200_packet0_check() 231 track->textures[i].robj = reloc->robj; in r200_packet0_check() 232 track->tex_dirty = true; in r200_packet0_check() [all …]
|
D | r600_cs.c | 43 /* value we track */ 299 static void r600_cs_track_init(struct r600_cs_track *track) in r600_cs_track_init() argument 304 track->sq_config = DX9_CONSTS; in r600_cs_track_init() 306 track->cb_color_base_last[i] = 0; in r600_cs_track_init() 307 track->cb_color_size[i] = 0; in r600_cs_track_init() 308 track->cb_color_size_idx[i] = 0; in r600_cs_track_init() 309 track->cb_color_info[i] = 0; in r600_cs_track_init() 310 track->cb_color_view[i] = 0xFFFFFFFF; in r600_cs_track_init() 311 track->cb_color_bo[i] = NULL; in r600_cs_track_init() 312 track->cb_color_bo_offset[i] = 0xFFFFFFFF; in r600_cs_track_init() [all …]
|
D | evergreen_cs.c | 46 /* value we track */ 117 static void evergreen_cs_track_init(struct evergreen_cs_track *track) in evergreen_cs_track_init() argument 122 track->cb_color_fmask_bo[i] = NULL; in evergreen_cs_track_init() 123 track->cb_color_cmask_bo[i] = NULL; in evergreen_cs_track_init() 124 track->cb_color_cmask_slice[i] = 0; in evergreen_cs_track_init() 125 track->cb_color_fmask_slice[i] = 0; in evergreen_cs_track_init() 129 track->cb_color_bo[i] = NULL; in evergreen_cs_track_init() 130 track->cb_color_bo_offset[i] = 0xFFFFFFFF; in evergreen_cs_track_init() 131 track->cb_color_info[i] = 0; in evergreen_cs_track_init() 132 track->cb_color_view[i] = 0xFFFFFFFF; in evergreen_cs_track_init() [all …]
|
D | r300.c | 630 struct r100_cs_track *track; in r300_packet0_check() local 638 track = (struct r100_cs_track *)p->track; in r300_packet0_check() 670 track->cb[i].robj = reloc->robj; in r300_packet0_check() 671 track->cb[i].offset = idx_value; in r300_packet0_check() 672 track->cb_dirty = true; in r300_packet0_check() 683 track->zb.robj = reloc->robj; in r300_packet0_check() 684 track->zb.offset = idx_value; in r300_packet0_check() 685 track->zb_dirty = true; in r300_packet0_check() 728 track->textures[i].robj = reloc->robj; in r300_packet0_check() 729 track->tex_dirty = true; in r300_packet0_check() [all …]
|
D | r100.c | 1315 struct r100_cs_track *track; in r100_packet3_load_vbpntr() local 1321 track = (struct r100_cs_track *)p->track; in r100_packet3_load_vbpntr() 1329 track->num_arrays = c; in r100_packet3_load_vbpntr() 1341 track->arrays[i + 0].esize = idx_value >> 8; in r100_packet3_load_vbpntr() 1342 track->arrays[i + 0].robj = reloc->robj; in r100_packet3_load_vbpntr() 1343 track->arrays[i + 0].esize &= 0x7F; in r100_packet3_load_vbpntr() 1352 track->arrays[i + 1].robj = reloc->robj; in r100_packet3_load_vbpntr() 1353 track->arrays[i + 1].esize = idx_value >> 24; in r100_packet3_load_vbpntr() 1354 track->arrays[i + 1].esize &= 0x7F; in r100_packet3_load_vbpntr() 1366 track->arrays[i + 0].robj = reloc->robj; in r100_packet3_load_vbpntr() [all …]
|
/linux-6.8/drivers/gpu/drm/i915/gvt/ |
D | page_track.c | 27 * intel_vgpu_find_page_track - find page track rcord of guest page 44 * @handler: page track handler 53 struct intel_vgpu_page_track *track; in intel_vgpu_register_page_track() local 56 track = intel_vgpu_find_page_track(vgpu, gfn); in intel_vgpu_register_page_track() 57 if (track) in intel_vgpu_register_page_track() 60 track = kzalloc(sizeof(*track), GFP_KERNEL); in intel_vgpu_register_page_track() 61 if (!track) in intel_vgpu_register_page_track() 64 track->handler = handler; in intel_vgpu_register_page_track() 65 track->priv_data = priv; in intel_vgpu_register_page_track() 67 ret = radix_tree_insert(&vgpu->page_track_tree, gfn, track); in intel_vgpu_register_page_track() [all …]
|
/linux-6.8/net/netfilter/ |
D | nft_bitwise.c | 284 static bool nft_bitwise_reduce(struct nft_regs_track *track, in nft_bitwise_reduce() argument 293 if (!track->regs[priv->sreg].selector) in nft_bitwise_reduce() 296 bitwise = nft_expr_priv(track->regs[priv->dreg].selector); in nft_bitwise_reduce() 297 if (track->regs[priv->sreg].selector == track->regs[priv->dreg].selector && in nft_bitwise_reduce() 298 track->regs[priv->sreg].num_reg == 0 && in nft_bitwise_reduce() 299 track->regs[priv->dreg].bitwise && in nft_bitwise_reduce() 300 track->regs[priv->dreg].bitwise->ops == expr->ops && in nft_bitwise_reduce() 308 track->cur = expr; in nft_bitwise_reduce() 312 if (track->regs[priv->sreg].bitwise || in nft_bitwise_reduce() 313 track->regs[priv->sreg].num_reg != 0) { in nft_bitwise_reduce() [all …]
|
D | nft_hash.c | 168 static bool nft_jhash_reduce(struct nft_regs_track *track, in nft_jhash_reduce() argument 173 nft_reg_track_cancel(track, priv->dreg, sizeof(u32)); in nft_jhash_reduce() 198 static bool nft_symhash_reduce(struct nft_regs_track *track, in nft_symhash_reduce() argument 204 if (!nft_reg_track_cmp(track, expr, priv->dreg)) { in nft_symhash_reduce() 205 nft_reg_track_update(track, expr, priv->dreg, sizeof(u32)); in nft_symhash_reduce() 209 symhash = nft_expr_priv(track->regs[priv->dreg].selector); in nft_symhash_reduce() 212 nft_reg_track_update(track, expr, priv->dreg, sizeof(u32)); in nft_symhash_reduce() 216 if (!track->regs[priv->dreg].bitwise) in nft_symhash_reduce()
|
D | nft_osf.c | 136 static bool nft_osf_reduce(struct nft_regs_track *track, in nft_osf_reduce() argument 142 if (!nft_reg_track_cmp(track, expr, priv->dreg)) { in nft_osf_reduce() 143 nft_reg_track_update(track, expr, priv->dreg, NFT_OSF_MAXGENRELEN); in nft_osf_reduce() 147 osf = nft_expr_priv(track->regs[priv->dreg].selector); in nft_osf_reduce() 150 nft_reg_track_update(track, expr, priv->dreg, NFT_OSF_MAXGENRELEN); in nft_osf_reduce() 154 if (!track->regs[priv->dreg].bitwise) in nft_osf_reduce()
|
D | nft_socket.c | 216 static bool nft_socket_reduce(struct nft_regs_track *track, in nft_socket_reduce() argument 222 if (!nft_reg_track_cmp(track, expr, priv->dreg)) { in nft_socket_reduce() 223 nft_reg_track_update(track, expr, priv->dreg, priv->len); in nft_socket_reduce() 227 socket = nft_expr_priv(track->regs[priv->dreg].selector); in nft_socket_reduce() 231 nft_reg_track_update(track, expr, priv->dreg, priv->len); in nft_socket_reduce() 235 if (!track->regs[priv->dreg].bitwise) in nft_socket_reduce() 238 return nft_expr_reduce_bitwise(track, expr); in nft_socket_reduce()
|
D | nft_fib.c | 168 bool nft_fib_reduce(struct nft_regs_track *track, in nft_fib_reduce() argument 191 if (!nft_reg_track_cmp(track, expr, priv->dreg)) { in nft_fib_reduce() 192 nft_reg_track_update(track, expr, priv->dreg, len); in nft_fib_reduce() 196 fib = nft_expr_priv(track->regs[priv->dreg].selector); in nft_fib_reduce() 199 nft_reg_track_update(track, expr, priv->dreg, len); in nft_fib_reduce() 203 if (!track->regs[priv->dreg].bitwise) in nft_fib_reduce()
|
/linux-6.8/drivers/block/ |
D | amiflop.c | 10 * - added support for 40 Track 5.25" drives, 80-track hopefully behaves 29 * - usage ioctl(d, RAW_TRACK, ptr); the raw track buffer (MFM-encoded data 93 #define DSKTRACK0 (0x1<<4) /* head at track zero when low */ 108 #define DSKSTEP (0x1) /* pulse low to step head 1 track */ 154 #define FD_RECALIBRATE 0x07 /* move to track 0 */ 155 #define FD_SEEK 0x0F /* seek track */ 160 #define FD_FORMAT 0x4D /* format one track */ 166 #define FLOPPY_MAX_SECTORS 22 /* Max. Number of sectors per track */ 170 int sects; /* sectors per track */ 171 int (*read_fkt)(int); /* read whole track */ [all …]
|
D | ataflop.c | 28 * - Initialize track register when testing presence of floppy 51 * - increase gap size at start of track for HD/ED disks 94 #define FDCSELREG_TRA (0x82) /* track register */ 128 #define FDCCMDADD_U (0x10) /* update track register */ 142 #define FDCSTAT_TR00 (0x04) /* Track 00 flag (Type I) */ 163 int track; /* to be formatted */ member 171 unsigned spt; /* sectors per track */ 174 unsigned stretch; /* track doubling ? */ 295 int track; /* current head position or -1 if member 341 * operations. Second, a track buffer is used to cache a whole track [all …]
|
D | swim.c | 32 unsigned char track; member 186 int track; member 426 static inline int swim_track(struct floppy_state *fs, int track) in swim_track() argument 431 ret = swim_seek(base, track - fs->track); in swim_track() 434 fs->track = track; in swim_track() 437 fs->track = 0; in swim_track() 458 int side, int track, in swim_read_sector() argument 467 swim_track(fs, track); in swim_read_sector() 487 if ((header.side != side) || (header.track != track) || in swim_read_sector() 500 int side, track, sector; in floppy_read_sectors() local [all …]
|
D | floppy.c | 34 * 28.02.92 - made track-buffering routines, based on the routines written 313 #define TRACK 2 macro 432 | Sectors per track 525 * Track buffer 591 static unsigned char fsector_t; /* sector in track */ 849 (mode || drive_state[drive].track != NEED_1_RECAL)) in reset_fdc_info() 850 drive_state[drive].track = NEED_2_RECAL; in reset_fdc_info() 1254 output_byte(fdc, 0); /* pre-compensation from track 0 upwards */ in fdc_configure() 1384 pr_cont(": track %d, head %d, sector %d, size %d", in tell_sector() 1462 drive_state[current_drive].track = NEED_2_RECAL; in interpret_errors() [all …]
|
/linux-6.8/mm/kfence/ |
D | report.c | 108 const struct kfence_track *track = show_alloc ? &meta->alloc_track : &meta->free_track; in kfence_print_stack() local 109 u64 ts_sec = track->ts_nsec; in kfence_print_stack() 114 show_alloc ? "allocated" : "freed", track->pid, in kfence_print_stack() 115 track->cpu, (unsigned long)ts_sec, rem_nsec / 1000); in kfence_print_stack() 117 if (track->num_stack_entries) { in kfence_print_stack() 119 int i = get_stack_skipnr(track->stack_entries, track->num_stack_entries, NULL); in kfence_print_stack() 122 for (; i < track->num_stack_entries; i++) in kfence_print_stack() 123 seq_con_printf(seq, " %pS\n", (void *)track->stack_entries[i]); in kfence_print_stack() 282 static void kfence_to_kp_stack(const struct kfence_track *track, void **kp_stack) in kfence_to_kp_stack() argument 286 i = get_stack_skipnr(track->stack_entries, track->num_stack_entries, NULL); in kfence_to_kp_stack() [all …]
|
/linux-6.8/drivers/gpu/drm/i915/ |
D | i915_active.h | 24 * is reading them. We also track fences at a higher level to provide 30 * In order to use a fence, the object must track the fence it needs to 31 * serialise with. For example, GEM objects want to track both read and 35 * object then embeds a #i915_active_fence to track the most recent (in 38 * track the most recent fence request, typically this is done as part of 53 * @fence: initial fence to track, can be NULL 134 * often though we want to track the status of a bunch of tasks, for example 137 * track every single request associated with the task, but knowing that 139 * timeline must wait for earlier requests), we need only track the 146 * different resources that need to track their associated GPU activity to
|
/linux-6.8/Documentation/sound/designs/ |
D | compress-offload.rst | 209 delay and padding and directly move from one track content to another. The end 211 switching from one track to another 219 switch from one track to another and start using data for second track. 225 decoder to strip the silence. This needs to be set before the data in the track 230 correspond to subsequent track 235 data would belong to next track 241 - Set metadata of the first track 242 - Fill data of the first track 245 - Indicate next track data by sending set_next_track 246 - Set metadata of the next track [all …]
|
/linux-6.8/tools/perf/pmu-events/arch/x86/jaketown/ |
D | uncore-power.json | 142 …track up to 4 configurable bands. One can use edge detect in conjunction with this event to track… 150 …track up to 4 configurable bands. One can use edge detect in conjunction with this event to track… 158 …track up to 4 configurable bands. One can use edge detect in conjunction with this event to track… 166 …track up to 4 configurable bands. One can use edge detect in conjunction with this event to track…
|
/linux-6.8/scripts/gdb/linux/ |
D | slab.py | 34 track_type = gdb.lookup_type('struct track') 64 p += gdb.lookup_type('struct track').sizeof * 2 117 def add_location(loc_track, cache, track, orig_size): argument 119 age = jiffies - track['when'] 122 pid = int(track['pid']) 123 cpuid = int(track['cpu']) 124 addr = track['addr'] 126 handle = track['handle'] 131 if track['when']: 173 track = gdb.Value(p).cast(track_type.pointer()) [all …]
|
/linux-6.8/drivers/of/unittest-data/ |
D | overlay.dtso | 25 track@30 { 29 track@40 { 48 ride_200_left: track@10 { 52 ride_200_right: track@20 {
|
/linux-6.8/include/uapi/linux/ |
D | fd.h | 16 sect, /* sectors per track */ 18 track, /* nr of tracks */ member 19 stretch; /* bit 0 !=0 means double track steps */ 74 unsigned int device,head,track; member 80 /* format the specified track */ 92 * entire track at once */ 217 short track; /* current track */ member 219 short maxtrack; /* id of highest half track read */ 279 unsigned char track[4]; member 382 int track; member
|
/linux-6.8/arch/s390/include/uapi/asm/ |
D | vtoc.h | 78 __u16 DS4DEVTK; /* device track length */ 84 __u8 DS4DEVDT; /* number of DSCB's per track */ 85 __u8 DS4DEVDB; /* number of directory blocks per track */ 115 struct vtoc_ttr DS1LSTAR; /* last used track and block on track */ 116 __u16 DS1TRBAL; /* space remaining on last used track */ 130 struct vtoc_cchh DS4HCCHH; /* CCHH of next available alternate track */ 159 __u16 t; /* RTA of the first track of free extent */
|
/linux-6.8/tools/perf/pmu-events/arch/x86/snowridgex/ |
D | uncore-memory.json | 224 …ather than doing accumulation. Multiple counters will need to be used to track multiple ranks sim… 233 …ather than doing accumulation. Multiple counters will need to be used to track multiple ranks sim… 242 …ather than doing accumulation. Multiple counters will need to be used to track multiple ranks sim… 251 …ather than doing accumulation. Multiple counters will need to be used to track multiple ranks sim… 395 …track the requests. Requests allocate into the RPQ soon after they enter the memory controller, a… 404 …track the requests. Requests allocate into the RPQ soon after they enter the memory controller, a… 413 … This queue is used to schedule reads out to the memory controller and to track the requests. Req… 422 … This queue is used to schedule reads out to the memory controller and to track the requests. Req… 431 …). The RPQ is used to schedule reads out to the memory controller and to track the requests. Req… 439 …). The RPQ is used to schedule reads out to the memory controller and to track the requests. Req… [all …]
|
/linux-6.8/drivers/media/usb/pvrusb2/ |
D | pvrusb2-debug.h | 17 #define PVR2_TRACE_TOLERANCE (1 << 2) /* track tolerance-affected errors */ 38 #define PVR2_TRACE_BUF_POOL (1 << 23) /* Track buffer pool management */ 39 #define PVR2_TRACE_BUF_FLOW (1 << 24) /* Track buffer flow in system */ 40 #define PVR2_TRACE_DATA_FLOW (1 << 25) /* Track data flow */
|