/linux-6.6.21/drivers/gpu/drm/radeon/ |
D | rs690.c | 81 tmp.full = dfixed_const(100); in rs690_pm_info() 82 rdev->pm.igp_sideport_mclk.full = dfixed_const(le32_to_cpu(info->info.ulBootUpMemoryClock)); in rs690_pm_info() 83 rdev->pm.igp_sideport_mclk.full = dfixed_div(rdev->pm.igp_sideport_mclk, tmp); in rs690_pm_info() 85 rdev->pm.igp_system_mclk.full = dfixed_const(le16_to_cpu(info->info.usK8MemoryClock)); in rs690_pm_info() 87 rdev->pm.igp_system_mclk.full = dfixed_const(rdev->clock.default_mclk); in rs690_pm_info() 88 rdev->pm.igp_system_mclk.full = dfixed_div(rdev->pm.igp_system_mclk, tmp); in rs690_pm_info() 90 rdev->pm.igp_system_mclk.full = dfixed_const(400); in rs690_pm_info() 91 rdev->pm.igp_ht_link_clk.full = dfixed_const(le16_to_cpu(info->info.usFSBClock)); in rs690_pm_info() 92 rdev->pm.igp_ht_link_width.full = dfixed_const(info->info.ucHTLinkWidth); in rs690_pm_info() 95 tmp.full = dfixed_const(100); in rs690_pm_info() [all …]
|
D | rv515.c | 949 a.full = dfixed_const(100); in rv515_crtc_bandwidth_compute() 950 sclk.full = dfixed_const(selected_sclk); in rv515_crtc_bandwidth_compute() 951 sclk.full = dfixed_div(sclk, a); in rv515_crtc_bandwidth_compute() 953 if (crtc->vsc.full > dfixed_const(2)) in rv515_crtc_bandwidth_compute() 954 wm->num_line_pair.full = dfixed_const(2); in rv515_crtc_bandwidth_compute() 956 wm->num_line_pair.full = dfixed_const(1); in rv515_crtc_bandwidth_compute() 958 b.full = dfixed_const(mode->crtc_hdisplay); in rv515_crtc_bandwidth_compute() 959 c.full = dfixed_const(256); in rv515_crtc_bandwidth_compute() 960 a.full = dfixed_div(b, c); in rv515_crtc_bandwidth_compute() 961 request_fifo_depth.full = dfixed_mul(a, wm->num_line_pair); in rv515_crtc_bandwidth_compute() [all …]
|
D | r100.c | 3241 min_mem_eff.full = dfixed_const_8(0); in r100_bandwidth_update() 3262 temp_ff.full = dfixed_const(temp); in r100_bandwidth_update() 3263 mem_bw.full = dfixed_mul(mclk_ff, temp_ff); in r100_bandwidth_update() 3265 pix_clk.full = 0; in r100_bandwidth_update() 3266 pix_clk2.full = 0; in r100_bandwidth_update() 3267 peak_disp_bw.full = 0; in r100_bandwidth_update() 3269 temp_ff.full = dfixed_const(1000); in r100_bandwidth_update() 3270 pix_clk.full = dfixed_const(mode1->clock); /* convert to fixed point */ in r100_bandwidth_update() 3271 pix_clk.full = dfixed_div(pix_clk, temp_ff); in r100_bandwidth_update() 3272 temp_ff.full = dfixed_const(pixel_bytes1); in r100_bandwidth_update() [all …]
|
/linux-6.6.21/kernel/trace/ |
D | trace_seq.c | 86 if (s->full) in trace_seq_printf() 98 s->full = 1; in trace_seq_printf() 116 if (s->full) in trace_seq_bitmask() 125 s->full = 1; in trace_seq_bitmask() 146 if (s->full) in trace_seq_vprintf() 156 s->full = 1; in trace_seq_vprintf() 180 if (s->full) in trace_seq_bprintf() 190 s->full = 1; in trace_seq_bprintf() 210 if (s->full) in trace_seq_puts() 216 s->full = 1; in trace_seq_puts() [all …]
|
/linux-6.6.21/drivers/gpu/drm/amd/pm/powerplay/hwmgr/ |
D | ppevvmath.h | 42 int full; member 223 temp.full = (X << SHIFT_AMOUNT); in ConvertToFraction() 225 temp.full = 0; in ConvertToFraction() 241 temp.full = (X << SHIFT_AMOUNT); in Convert_ULONG_ToFraction() 243 temp.full = 0; in Convert_ULONG_ToFraction() 280 fValue.full = 0; in GetScaledFraction() 290 fValue.full = fValue.full << times_shifted; in GetScaledFraction() 291 fValue.full = fValue.full >> factor_shifted; in GetScaledFraction() 301 Sum.full = X.full + Y.full; in fAdd() 311 Difference.full = X.full - Y.full; in fSubtract() [all …]
|
/linux-6.6.21/drivers/acpi/acpica/ |
D | utmath.c | 22 u64 full; member 56 multiplicand_ovl.full = multiplicand; in acpi_ut_short_multiply() 73 *out_product = product.full; in acpi_ut_short_multiply() 97 operand_ovl.full = operand; in acpi_ut_short_shift_left() 110 *out_result = operand_ovl.full; in acpi_ut_short_shift_left() 134 operand_ovl.full = operand; in acpi_ut_short_shift_right() 147 *out_result = operand_ovl.full; in acpi_ut_short_shift_right() 272 dividend_ovl.full = dividend; in acpi_ut_short_divide() 287 *out_quotient = quotient.full; in acpi_ut_short_divide() 334 divisor.full = in_divisor; in acpi_ut_divide() [all …]
|
/linux-6.6.21/drivers/power/supply/ |
D | apm_power.c | 40 union power_supply_propval full; member 57 if (!PSY_PROP(bp->bat, CHARGE_FULL_DESIGN, &bp->full) || in __find_main_battery() 58 !PSY_PROP(bp->bat, CHARGE_FULL, &bp->full)) { in __find_main_battery() 59 if (bp->full.intval > bp->max_charge) { in __find_main_battery() 61 bp->max_charge = bp->full.intval; in __find_main_battery() 63 } else if (!PSY_PROP(bp->bat, ENERGY_FULL_DESIGN, &bp->full) || in __find_main_battery() 64 !PSY_PROP(bp->bat, ENERGY_FULL, &bp->full)) { in __find_main_battery() 65 if (bp->full.intval > bp->max_energy) { in __find_main_battery() 67 bp->max_energy = bp->full.intval; in __find_main_battery() 93 &bp.full)) { in find_main_battery() [all …]
|
/linux-6.6.21/scripts/tracing/ |
D | ftrace-bisect.sh | 98 full=$1 102 x=`cat $full | wc -l` 105 cat $full 112 if [ ! -f $full ]; then 113 echo "$full does not exist" 133 sed -ne "1,${x}p" $full > $test 134 sed -ne "$y,\$p" $full > $nontest
|
/linux-6.6.21/sound/soc/intel/atom/sst/ |
D | sst_loader.c | 59 csr.full = sst_shim_read64(sst_drv_ctx->shim, SST_CSR); in intel_sst_reset_dsp_mrfld() 61 dev_dbg(sst_drv_ctx->dev, "value:0x%llx\n", csr.full); in intel_sst_reset_dsp_mrfld() 63 csr.full |= 0x7; in intel_sst_reset_dsp_mrfld() 64 sst_shim_write64(sst_drv_ctx->shim, SST_CSR, csr.full); in intel_sst_reset_dsp_mrfld() 65 csr.full = sst_shim_read64(sst_drv_ctx->shim, SST_CSR); in intel_sst_reset_dsp_mrfld() 67 dev_dbg(sst_drv_ctx->dev, "value:0x%llx\n", csr.full); in intel_sst_reset_dsp_mrfld() 69 csr.full &= ~(0x1); in intel_sst_reset_dsp_mrfld() 70 sst_shim_write64(sst_drv_ctx->shim, SST_CSR, csr.full); in intel_sst_reset_dsp_mrfld() 72 csr.full = sst_shim_read64(sst_drv_ctx->shim, SST_CSR); in intel_sst_reset_dsp_mrfld() 73 dev_dbg(sst_drv_ctx->dev, "value:0x%llx\n", csr.full); in intel_sst_reset_dsp_mrfld() [all …]
|
D | sst_ipc.c | 125 header.full = sst_shim_read64(sst_drv_ctx->shim, SST_IPCX); in sst_post_message_mrfld() 136 header.full = sst_shim_read64(sst_drv_ctx->shim, SST_IPCX); in sst_post_message_mrfld() 159 msg->mrfld_header.p.header_high.full); in sst_post_message_mrfld() 168 sst_shim_write64(sst_drv_ctx->shim, SST_IPCX, msg->mrfld_header.full); in sst_post_message_mrfld() 185 imr.full = sst_shim_read64(sst_drv_ctx->shim, SST_IMRX); in intel_sst_clear_intr_mrfld() 186 isr.full = sst_shim_read64(sst_drv_ctx->shim, SST_ISRX); in intel_sst_clear_intr_mrfld() 190 sst_shim_write64(sst_drv_ctx->shim, SST_ISRX, isr.full); in intel_sst_clear_intr_mrfld() 193 clear_ipc.full = sst_shim_read64(sst_drv_ctx->shim, SST_IPCD); in intel_sst_clear_intr_mrfld() 198 sst_shim_write64(sst_drv_ctx->shim, SST_IPCD, clear_ipc.full); in intel_sst_clear_intr_mrfld() 201 sst_shim_write64(sst_drv_ctx->shim, SST_IMRX, imr.full); in intel_sst_clear_intr_mrfld() [all …]
|
/linux-6.6.21/include/drm/ |
D | drm_fixed.h | 32 u32 full; member 40 #define dfixed_mul(A, B) ((u64)((u64)(A).full * (B).full + 2048) >> 12) 41 #define dfixed_init(A) { .full = dfixed_const((A)) } 42 #define dfixed_init_half(A) { .full = dfixed_const_half((A)) } 43 #define dfixed_trunc(A) ((A).full >> 12) 44 #define dfixed_frac(A) ((A).full & ((1 << 12) - 1)) 57 if (A.full > dfixed_const(non_frac)) in dfixed_ceil() 65 u64 tmp = ((u64)A.full << 13); in dfixed_div() 67 do_div(tmp, B.full); in dfixed_div()
|
/linux-6.6.21/drivers/media/platform/ti/vpe/ |
D | csc.c | 32 struct quantization full; member 55 .full = { 69 .full = { 85 .full = { 99 .full = { 195 coeff = csc_coeffs.y2r.r601.full.coeff; in csc_set_coeff() 200 coeff = csc_coeffs.y2r.r709.full.coeff; in csc_set_coeff() 205 coeff = csc_coeffs.y2r.r601.full.coeff; in csc_set_coeff() 223 coeff = csc_coeffs.r2y.r601.full.coeff; in csc_set_coeff() 228 coeff = csc_coeffs.r2y.r709.full.coeff; in csc_set_coeff() [all …]
|
/linux-6.6.21/arch/x86/include/asm/ |
D | cmpxchg_64.h | 24 u128 full; member 32 union __u128_halves o = { .full = (_old), }, \ 33 n = { .full = (_new), }; \ 41 o.full; \ 58 union __u128_halves o = { .full = *(_oldp), }, \ 59 n = { .full = (_new), }; \ 71 *(_oldp) = o.full; \
|
D | perf_event.h | 148 unsigned int full; member 161 unsigned int full; member 172 unsigned int full; member 196 unsigned int full; member 208 unsigned int full; member 220 unsigned int full; member 236 unsigned int full; member
|
/linux-6.6.21/Documentation/networking/device_drivers/ethernet/3com/ |
D | 3c509.rst | 29 - 3c509B (later revision of the ISA card; supports full-duplex) 31 - 3c589B (later revision of the 3c589; supports full-duplex) 47 needed except to enable full-duplex mode (see below). An example of the syntax 65 The v1.18c driver added support for the 3c509B's full-duplex capabilities. 66 In order to enable and successfully use full-duplex mode, three conditions 69 (a) You must have a Etherlink III card model whose hardware supports full- 71 positively known to support full-duplex are the 3c509B (ISA bus) and 3c589B 73 full-duplex mode; these include the original 3c509 (no "B"), the original 78 AUI and 10base2 network cabling is physically incapable of full-duplex 82 itself full-duplex capable. This is almost certainly one of two things: a full- [all …]
|
/linux-6.6.21/Documentation/devicetree/bindings/iio/afe/ |
D | voltage-divider.yaml | 14 interesting voltage is often the voltage over the full resistance 44 Resistance Rout over which the output voltage is measured. See full-ohms. 46 full-ohms: 48 Resistance R + Rout for the full divider. The io-channel is scaled by 55 - full-ohms 84 full-ohms = <222>; /* 200 + 22 */
|
/linux-6.6.21/drivers/gpu/drm/amd/amdgpu/ |
D | dce_v6_0.c | 528 a.full = dfixed_const(1000); in dce_v6_0_dram_bandwidth() 529 yclk.full = dfixed_const(wm->yclk); in dce_v6_0_dram_bandwidth() 530 yclk.full = dfixed_div(yclk, a); in dce_v6_0_dram_bandwidth() 531 dram_channels.full = dfixed_const(wm->dram_channels * 4); in dce_v6_0_dram_bandwidth() 532 a.full = dfixed_const(10); in dce_v6_0_dram_bandwidth() 533 dram_efficiency.full = dfixed_const(7); in dce_v6_0_dram_bandwidth() 534 dram_efficiency.full = dfixed_div(dram_efficiency, a); in dce_v6_0_dram_bandwidth() 535 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce_v6_0_dram_bandwidth() 536 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in dce_v6_0_dram_bandwidth() 557 a.full = dfixed_const(1000); in dce_v6_0_dram_bandwidth_for_display() [all …]
|
D | dce_v8_0.c | 663 a.full = dfixed_const(1000); in dce_v8_0_dram_bandwidth() 664 yclk.full = dfixed_const(wm->yclk); in dce_v8_0_dram_bandwidth() 665 yclk.full = dfixed_div(yclk, a); in dce_v8_0_dram_bandwidth() 666 dram_channels.full = dfixed_const(wm->dram_channels * 4); in dce_v8_0_dram_bandwidth() 667 a.full = dfixed_const(10); in dce_v8_0_dram_bandwidth() 668 dram_efficiency.full = dfixed_const(7); in dce_v8_0_dram_bandwidth() 669 dram_efficiency.full = dfixed_div(dram_efficiency, a); in dce_v8_0_dram_bandwidth() 670 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce_v8_0_dram_bandwidth() 671 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in dce_v8_0_dram_bandwidth() 692 a.full = dfixed_const(1000); in dce_v8_0_dram_bandwidth_for_display() [all …]
|
/linux-6.6.21/Documentation/ABI/testing/ |
D | sysfs-driver-ufs | 20 device descriptor parameters. The full information about 30 device descriptor parameters. The full information about 40 the UFS device descriptor parameters. The full information 51 The full information about the descriptor could be found 61 the UFS device descriptor parameters. The full information 72 The full information about the descriptor could be found 83 parameters. The full information about the descriptor could 95 parameters. The full information about the descriptor could 106 the UFS device descriptor parameters. The full information 116 the UFS device descriptor parameters. The full information [all …]
|
/linux-6.6.21/Documentation/devicetree/bindings/power/supply/ |
D | bq27xxx.yaml | 64 - energy-full-design-microwatt-hours 65 - charge-full-design-microamp-hours 67 Both or neither of the *-full-design-*-hours properties must be set. 81 energy-full-design-microwatt-hours = <5290000>; 82 charge-full-design-microamp-hours = <1430000>;
|
/linux-6.6.21/Documentation/translations/zh_CN/accounting/ |
D | psi.rst | 46 full avg10=0.00 avg60=0.00 avg300=0.00 total=0 50 full行代表所有非idle任务同时阻塞于特定资源的时间占比。在这种状态下CPU资源 54 将有助于分析及提升系统性能。这就是full独立于some行的原因。 72 <some|full> <stall amount in us> <time window in us> 76 "full 50000 1000000"将新增触发器,将在1秒内所有任务都阻塞于io的总时间超过50ms时触发。
|
/linux-6.6.21/sound/usb/line6/ |
D | midibuf.c | 35 return (this->pos_read == this->pos_write) && !this->full; in midibuf_is_empty() 40 return this->full; in midibuf_is_full() 45 this->pos_read = this->pos_write = this->full = 0; in line6_midibuf_reset() 117 this->full = 1; in line6_midibuf_write() 237 this->full = 0; in line6_midibuf_read() 249 this->full = 0; in line6_midibuf_ignore()
|
/linux-6.6.21/drivers/hwmon/ |
D | max197.c | 125 int full = data->limit; in max197_store_range() local 131 if (value <= -full) in max197_store_range() 132 value = -full; in max197_store_range() 138 if (value >= full) in max197_store_range() 139 value = full; in max197_store_range() 153 } else if (value == -full) { in max197_store_range() 159 } else if (value == full) { in max197_store_range()
|
/linux-6.6.21/Documentation/networking/device_drivers/ethernet/toshiba/ |
D | spider_net.rst | 29 "full" and "not-in-use". An "empty" or "ready" descriptor is ready 30 to receive data from the hardware. A "full" descriptor has data in it, 32 descriptor is neither empty or full; it is simply not ready. It may 39 buffers, and marks them "full". The OS follows up, taking the full 46 marks it full, and advances the GDACTDPA by one. Thus, when there is 47 flowing RX traffic, every descr behind it should be marked "full", 53 hardware is ahead, the tail pointer will be pointing at a "full" 56 all of the descrs in front of the tail pointer should be "full", and 102 The status x4... corresponds to "full" and status xa... corresponds 109 "full" == SPIDER_NET_DESCR_FRAME_END == 0x4 [all …]
|
/linux-6.6.21/arch/mips/include/asm/ |
D | cmpxchg.h | 44 " " __SYNC(full, loongson3_war) " \n" \ 122 " " __SYNC(full, loongson3_war) " \n" \ 131 "2: " __SYNC(full, loongson3_war) " \n" \ 249 " " __SYNC(full, loongson3_war) " \n" in __cmpxchg64() 285 "2: " __SYNC(full, loongson3_war) " \n" in __cmpxchg64()
|