Home
last modified time | relevance | path

Searched refs:lowest (Results 1 – 25 of 122) sorted by relevance

12345

/Linux-v5.4/arch/x86/kvm/
Dirq_comm.c51 struct kvm_vcpu *vcpu, *lowest = NULL; in kvm_irq_delivery_to_apic() local
80 if (!lowest) in kvm_irq_delivery_to_apic()
81 lowest = vcpu; in kvm_irq_delivery_to_apic()
82 else if (kvm_apic_compare_prio(vcpu, lowest) < 0) in kvm_irq_delivery_to_apic()
83 lowest = vcpu; in kvm_irq_delivery_to_apic()
95 lowest = kvm_get_vcpu(kvm, idx); in kvm_irq_delivery_to_apic()
98 if (lowest) in kvm_irq_delivery_to_apic()
99 r = kvm_apic_set_irq(lowest, irq, dest_map); in kvm_irq_delivery_to_apic()
Dlapic.c882 int i, lowest; in kvm_apic_map_get_dest_lapic() local
914 lowest = -1; in kvm_apic_map_get_dest_lapic()
918 if (lowest < 0) in kvm_apic_map_get_dest_lapic()
919 lowest = i; in kvm_apic_map_get_dest_lapic()
921 (*dst)[lowest]->vcpu) < 0) in kvm_apic_map_get_dest_lapic()
922 lowest = i; in kvm_apic_map_get_dest_lapic()
928 lowest = kvm_vector_to_index(irq->vector, hweight16(*bitmap), in kvm_apic_map_get_dest_lapic()
931 if (!(*dst)[lowest]) { in kvm_apic_map_get_dest_lapic()
938 *bitmap = (lowest >= 0) ? 1 << lowest : 0; in kvm_apic_map_get_dest_lapic()
/Linux-v5.4/drivers/gpu/drm/sun4i/
Dsun4i_rgb.c68 unsigned long long lowest, highest; in sun4i_rgb_mode_valid() local
123 lowest = rate * (1000 - SUN4I_RGB_DOTCLOCK_TOLERANCE_PER_MILLE); in sun4i_rgb_mode_valid()
124 do_div(lowest, 1000); in sun4i_rgb_mode_valid()
125 if (rounded_rate < lowest) in sun4i_rgb_mode_valid()
/Linux-v5.4/Documentation/ia64/
Dirq-redir.rst29 Set the default route for IRQ number 41 to CPU 6 in lowest priority
40 (i.e. lowest priority mode routing is used), otherwise its route is
50 and the routing is the so called "lowest priority mode" (actually
59 The IRQ is routed to the CPU with lowest XTP register value, the
/Linux-v5.4/drivers/sh/clk/
Dcore.c94 unsigned long highest, lowest, freq; in clk_rate_round_helper() local
99 lowest = ~0UL; in clk_rate_round_helper()
104 if (freq < lowest) in clk_rate_round_helper()
105 lowest = freq; in clk_rate_round_helper()
119 if (rounder->rate <= lowest) in clk_rate_round_helper()
120 rate_best_fit = lowest; in clk_rate_round_helper()
/Linux-v5.4/arch/x86/platform/uv/
Duv_time.c183 u64 lowest = ULLONG_MAX; in uv_rtc_find_next_timer() local
189 if (exp < lowest) { in uv_rtc_find_next_timer()
191 lowest = exp; in uv_rtc_find_next_timer()
197 if (uv_setup_intr(c, lowest)) in uv_rtc_find_next_timer()
/Linux-v5.4/drivers/hwtracing/intel_th/
Dcore.c107 int i, lowest; in intel_th_remove() local
119 for (i = 0, lowest = -1; i < th->num_thdevs; i++) { in intel_th_remove()
126 if (lowest >= 0) { in intel_th_remove()
127 th->thdev[lowest] = th->thdev[i]; in intel_th_remove()
129 ++lowest; in intel_th_remove()
135 if (lowest == -1) in intel_th_remove()
136 lowest = i; in intel_th_remove()
142 if (lowest >= 0) in intel_th_remove()
143 th->num_thdevs = lowest; in intel_th_remove()
/Linux-v5.4/Documentation/devicetree/bindings/leds/
Dleds-spi-byte.txt5 - the value of the byte gives the brightness between two values (lowest to
9 The value for lowest and highest brightness is dependent on the device and
Dleds-is31fl319x.txt34 Note: a driver will take the lowest of all led limits since the
35 chip has a single global setting. The lowest value will be chosen
/Linux-v5.4/drivers/gpu/drm/amd/amdgpu/
Damdgpu_virt.c400 uint32_t amdgpu_virt_get_sclk(struct amdgpu_device *adev, bool lowest) in amdgpu_virt_get_sclk() argument
410 clk = parse_clk(buf, lowest); in amdgpu_virt_get_sclk()
417 uint32_t amdgpu_virt_get_mclk(struct amdgpu_device *adev, bool lowest) in amdgpu_virt_get_mclk() argument
427 clk = parse_clk(buf, lowest); in amdgpu_virt_get_mclk()
Damdgpu_virt.h309 uint32_t amdgpu_virt_get_sclk(struct amdgpu_device *adev, bool lowest);
310 uint32_t amdgpu_virt_get_mclk(struct amdgpu_device *adev, bool lowest);
/Linux-v5.4/tools/power/x86/x86_energy_perf_policy/
Dx86_energy_perf_policy.c40 unsigned char lowest; member
677 cap->lowest, cap->efficient, cap->guaranteed, cap->highest); in print_hwp_cap()
688 cap->lowest = msr_perf_2_ratio(HWP_LOWEST_PERF(msr)); in read_hwp_cap()
899 if (req->hwp_max < cap->lowest) in check_hwp_request_v_hwp_capabilities()
901 cpu, req->hwp_max, cap->lowest); in check_hwp_request_v_hwp_capabilities()
908 if (req->hwp_min < cap->lowest) in check_hwp_request_v_hwp_capabilities()
910 cpu, req->hwp_min, cap->lowest); in check_hwp_request_v_hwp_capabilities()
924 if (req->hwp_desired < cap->lowest) in check_hwp_request_v_hwp_capabilities()
926 cpu, req->hwp_desired, cap->lowest); in check_hwp_request_v_hwp_capabilities()
/Linux-v5.4/fs/xfs/scrub/
Ddabtree.h25 xfs_dablk_t lowest; member
Ddabtree.c157 if (blkno < ds->lowest || (ds->highest != 0 && blkno >= ds->highest)) { in xchk_da_btree_ptr_ok()
504 ds.lowest = 0; in xchk_da_btree()
508 ds.lowest = ds.dargs.geo->leafblk; in xchk_da_btree()
511 blkno = ds.lowest; in xchk_da_btree()
/Linux-v5.4/drivers/gpu/drm/selftests/
Ddrm_mm_selftests.h22 selftest(lowest, igt_lowest)
/Linux-v5.4/Documentation/virt/kvm/devices/
Dxics.txt37 delivered, and 255 is the lowest priority.
51 the highest priority and 255 is the lowest. An interrupt with a
/Linux-v5.4/Documentation/scsi/
Dlink_power_management_policy.txt16 when possible, but do not enter the lowest power
/Linux-v5.4/drivers/pinctrl/nomadik/
Dpinctrl-abx500.c941 unsigned int lowest = 0; in abx500_get_gpio_num() local
963 lowest = gstart; in abx500_get_gpio_num()
966 if (gstart < lowest) in abx500_get_gpio_num()
967 lowest = gstart; in abx500_get_gpio_num()
973 npins = highest - lowest + 1; in abx500_get_gpio_num()
/Linux-v5.4/arch/sparc/kernel/
Diommu.c172 int lowest = iommu->ctx_lowest_free; in iommu_alloc_ctx() local
173 int n = find_next_zero_bit(iommu->ctx_bitmap, IOMMU_NUM_CTXS, lowest); in iommu_alloc_ctx()
176 n = find_next_zero_bit(iommu->ctx_bitmap, lowest, 1); in iommu_alloc_ctx()
177 if (unlikely(n == lowest)) { in iommu_alloc_ctx()
/Linux-v5.4/Documentation/devicetree/bindings/interrupt-controller/
Datmel,aic.txt20 The third cell is used to specify the irq priority from 0 (lowest) to 7
/Linux-v5.4/Documentation/firmware-guide/acpi/
Dlpit.rst32 This is the lowest possible system power state, achieved only when CPU is in
/Linux-v5.4/Documentation/hwmon/
Demc2103.rst27 represented, so some rounding is done. With a divider of 1, the lowest
/Linux-v5.4/Documentation/ABI/testing/
Dsysfs-class-scsi_host9 which usually means the lowest number scsi_host corresponds
51 when possible, but do not enter the lowest power state, thus
/Linux-v5.4/Documentation/devicetree/bindings/clock/
Dqcom,rpmcc.txt4 SoC resources in order to keep the lowest power profile. It
/Linux-v5.4/Documentation/devicetree/bindings/gpio/
Dgpio-xgene-sb.txt35 - apm,irq-start: Optional, specify lowest gpio pin support interrupt.

12345