Home
last modified time | relevance | path

Searched refs:bound (Results 1 – 25 of 291) sorted by relevance

12345678910>>...12

/Linux-v5.10/drivers/net/wireless/mediatek/mt76/mt7603/
Ddebugfs.c76 int bound[3], i, range; in mt7603_ampdu_stat_show() local
79 for (i = 0; i < ARRAY_SIZE(bound); i++) in mt7603_ampdu_stat_show()
80 bound[i] = MT_AGG_ASRCR_RANGE(range, i) + 1; in mt7603_ampdu_stat_show()
82 seq_printf(file, "Length: %8d | ", bound[0]); in mt7603_ampdu_stat_show()
83 for (i = 0; i < ARRAY_SIZE(bound) - 1; i++) in mt7603_ampdu_stat_show()
85 bound[i], bound[i + 1]); in mt7603_ampdu_stat_show()
87 for (i = 0; i < ARRAY_SIZE(bound); i++) in mt7603_ampdu_stat_show()
/Linux-v5.10/drivers/gpu/drm/amd/amdkfd/
Dkfd_iommu.c112 if (!dev->use_iommu_v2 || pdd->bound == PDD_BOUND) in kfd_iommu_bind_process_to_device()
115 if (unlikely(pdd->bound == PDD_BOUND_SUSPENDED)) { in kfd_iommu_bind_process_to_device()
122 pdd->bound = PDD_BOUND; in kfd_iommu_bind_process_to_device()
137 if (pdd->bound == PDD_BOUND) in kfd_iommu_unbind_process()
227 if (WARN_ON(!pdd) || pdd->bound != PDD_BOUND_SUSPENDED) { in kfd_bind_processes_to_device()
241 pdd->bound = PDD_BOUND; in kfd_bind_processes_to_device()
272 if (pdd->bound == PDD_BOUND) in kfd_unbind_processes_from_device()
273 pdd->bound = PDD_BOUND_SUSPENDED; in kfd_unbind_processes_from_device()
/Linux-v5.10/drivers/gpu/drm/
Ddrm_agpsupport.c225 entry->bound = 0; in drm_agp_alloc()
286 if (!entry || !entry->bound) in drm_agp_unbind()
290 entry->bound = 0; in drm_agp_unbind()
326 if (!entry || entry->bound) in drm_agp_bind()
332 entry->bound = dev->agp->base + (page << PAGE_SHIFT); in drm_agp_bind()
334 dev->agp->base, entry->bound); in drm_agp_bind()
371 if (entry->bound) in drm_agp_free()
455 if (entry->bound) in drm_legacy_agp_clear()
Ddrm_memory.c77 if (agpmem->bound <= offset in agp_remap()
78 && (agpmem->bound + (agpmem->pages << PAGE_SHIFT)) >= in agp_remap()
94 phys_page_map = (agpmem->memory->pages + (offset - agpmem->bound) / PAGE_SIZE); in agp_remap()
/Linux-v5.10/drivers/net/wireless/mediatek/mt76/mt7615/
Ddebugfs.c191 int bound[7], i, range; in mt7615_ampdu_stat_read_phy() local
198 bound[i] = MT_AGG_ASRCR_RANGE(range, i) + 1; in mt7615_ampdu_stat_read_phy()
202 bound[i + 4] = MT_AGG_ASRCR_RANGE(range, i) + 1; in mt7615_ampdu_stat_read_phy()
206 seq_printf(file, "Length: %8d | ", bound[0]); in mt7615_ampdu_stat_read_phy()
207 for (i = 0; i < ARRAY_SIZE(bound) - 1; i++) in mt7615_ampdu_stat_read_phy()
209 bound[i], bound[i + 1]); in mt7615_ampdu_stat_read_phy()
213 for (i = 0; i < ARRAY_SIZE(bound); i++) in mt7615_ampdu_stat_read_phy()
/Linux-v5.10/net/can/
Draw.c82 int bound; member
284 if (ro->bound) in raw_notifier()
291 ro->bound = 0; in raw_notifier()
314 ro->bound = 0; in raw_init()
357 if (ro->bound) { in raw_release()
375 ro->bound = 0; in raw_release()
404 if (ro->bound && addr->can_ifindex == ro->ifindex) in raw_bind()
436 if (ro->bound) { in raw_bind()
453 ro->bound = 1; in raw_bind()
522 if (ro->bound && ro->ifindex) in raw_setsockopt()
[all …]
Disotp.c131 int bound; member
853 if (!so->bound) in isotp_sendmsg()
1019 if (so->bound) { in isotp_release()
1034 so->bound = 0; in isotp_release()
1071 if (so->bound && addr->can_ifindex == so->ifindex && in isotp_bind()
1102 if (so->bound) { in isotp_bind()
1119 so->bound = 1; in isotp_bind()
1160 if (so->bound) in isotp_setsockopt()
1305 if (so->bound) in isotp_notifier()
1311 so->bound = 0; in isotp_notifier()
[all …]
/Linux-v5.10/drivers/base/
Dcomponent.c63 bool bound; member
74 bool bound; member
99 dev_name(m->dev), m->bound ? "bound" : "not bound"); in component_devices_show()
108 component ? (component->bound ? "bound" : "not bound") : "not registered"); in component_devices_show()
264 master->bound = true; in try_to_bring_up_master()
274 if (!m->bound) { in try_to_bring_up_masters()
286 if (master->bound) { in take_down_master()
289 master->bound = false; in take_down_master()
530 WARN_ON(!component->bound); in component_unbind()
534 component->bound = false; in component_unbind()
[all …]
/Linux-v5.10/drivers/gpu/drm/i915/
Di915_vma.c747 unsigned int bound; in try_qad_pin() local
750 bound = atomic_read(&vma->flags); in try_qad_pin()
752 if (unlikely(flags & ~bound)) in try_qad_pin()
755 if (unlikely(bound & (I915_VMA_OVERFLOW | I915_VMA_ERROR))) in try_qad_pin()
758 if (!(bound & I915_VMA_PIN_MASK)) in try_qad_pin()
761 GEM_BUG_ON(((bound + 1) & I915_VMA_PIN_MASK) == 0); in try_qad_pin()
762 } while (!atomic_try_cmpxchg(&vma->flags, &bound, bound + 1)); in try_qad_pin()
773 if (unlikely(bound & (I915_VMA_OVERFLOW | I915_VMA_ERROR))) { in try_qad_pin()
778 if (unlikely(flags & ~bound)) { in try_qad_pin()
782 } while (!atomic_try_cmpxchg(&vma->flags, &bound, bound + 1)); in try_qad_pin()
[all …]
/Linux-v5.10/Documentation/userspace-api/media/rc/
Dlirc-set-rec-carrier-range.rst13 LIRC_SET_REC_CARRIER_RANGE - Set lower bound of the carrier used to modulate
41 <LIRC_SET_REC_CARRIER_RANGE>` with the lower bound first and later call
42 :ref:`LIRC_SET_REC_CARRIER <LIRC_SET_REC_CARRIER>` with the upper bound.
/Linux-v5.10/drivers/net/wireless/mediatek/mt76/mt7915/
Ddebugfs.c117 int bound[15], range[4], i, n; in mt7915_ampdu_stat_read_phy() local
126 for (i = 0; i < ARRAY_SIZE(bound); i++) in mt7915_ampdu_stat_read_phy()
127 bound[i] = MT_MIB_ARNCR_RANGE(range[i / 4], i) + 1; in mt7915_ampdu_stat_read_phy()
131 seq_printf(file, "Length: %8d | ", bound[0]); in mt7915_ampdu_stat_read_phy()
132 for (i = 0; i < ARRAY_SIZE(bound) - 1; i++) in mt7915_ampdu_stat_read_phy()
134 bound[i] + 1, bound[i + 1]); in mt7915_ampdu_stat_read_phy()
138 for (i = 0; i < ARRAY_SIZE(bound); i++) in mt7915_ampdu_stat_read_phy()
/Linux-v5.10/scripts/coccinelle/iterators/
Ditnull.cocci2 /// Many iterators have the property that the first argument is always bound
86 cocci.print_main("iterator-bound variable",p1)
94 msg = "ERROR: iterator variable bound on line %s cannot be NULL" % (p1[0].line)
/Linux-v5.10/Documentation/ABI/testing/
Dsysfs-platform-usbip-vudc7 gadget driver which is currently bound to this
9 only if gadget driver is bound, otherwise error
Dsysfs-class-devlink63 consumer devices have been bound to their corresponding
86 bound to their driver.
88 'available' means the supplier has bound to its driver and is
95 bound successfully to their drivers.
/Linux-v5.10/tools/perf/Documentation/
Dtopdown.txt6 frontend bound, backend bound, bad speculation, retiring.
28 # time retiring bad speculation frontend bound backend bound
238 topdown-retiring, topdown-bad-spec, topdown-fe-bound and topdown-be-bound.
/Linux-v5.10/lib/
Ddecompress_unlzma.c75 uint32_t bound; member
151 rc->bound = *p * (rc->range >> RC_MODEL_TOTAL_BITS); in rc_is_bit_0_helper()
152 return rc->bound; in rc_is_bit_0_helper()
163 rc->range = rc->bound; in rc_update_bit_0()
168 rc->range -= rc->bound; in rc_update_bit_1()
169 rc->code -= rc->bound; in rc_update_bit_1()
/Linux-v5.10/drivers/usb/gadget/legacy/
Dether.c373 eem_opts->bound = true; in eth_bind()
375 ecm_opts->bound = true; in eth_bind()
377 geth_opts->bound = true; in eth_bind()
/Linux-v5.10/Documentation/input/
Dnotifier.rst15 - KBD_UNBOUND_KEYCODE events are sent if the keycode is not bound to a keysym.
34 || !bound) {
/Linux-v5.10/drivers/usb/gadget/function/
Du_eem.h21 bool bound; member
Du_ecm.h21 bool bound; member
Du_gether.h21 bool bound; member
Du_ncm.h21 bool bound; member
/Linux-v5.10/tools/usb/usbip/
DREADME21 bound to a physical USB device to make it exportable.
164 A USB storage device of busid 3-3.2 is now bound to the usb-storage
166 "exportable"; the device is bound to the usbip-host driver. Please
246 - usbip-host.ko must be bound to the target device.
248 - Target USB gadget must be bound to vudc
/Linux-v5.10/include/net/
Dpkt_sched.h61 psched_tdiff_bounded(psched_time_t tv1, psched_time_t tv2, psched_time_t bound) in psched_tdiff_bounded() argument
63 return min(tv1 - tv2, bound); in psched_tdiff_bounded()
/Linux-v5.10/Documentation/scheduler/
Dsched-bwc.rst44 upper bound on the period length of 1s. Additional restrictions exist when
118 For highly-threaded, non-cpu bound applications this non-expiration nuance
135 The interaction between cpu-bound and non-cpu-bound-interactive applications
138 on the same CPU it is theoretically possible that the non-cpu bound application
140 cpu-bound application from fully using its quota by that same amount. In these

12345678910>>...12