Home
last modified time | relevance | path

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

1234567891011

/linux/drivers/net/ethernet/meta/fbnic/
H A Dfbnic_csr.c117 const struct fbnic_csr_bounds *bound; in fbnic_csr_get_regs() local
124 for (i = 0, bound = fbnic_csr_sects; in fbnic_csr_get_regs()
125 i < ARRAY_SIZE(fbnic_csr_sects) - 1; i++, ++bound) { in fbnic_csr_get_regs()
126 *(data++) = bound->start; in fbnic_csr_get_regs()
127 *(data++) = bound->end - 1; in fbnic_csr_get_regs()
128 for (j = bound->start; j < bound->end; j++) in fbnic_csr_get_regs()
/linux/drivers/base/
H A Dcomponent.c58 bool bound; member
68 bool bound; member
93 dev_name(m->parent), m->bound ? "bound" : "not bound"); in component_devices_show()
102 component ? (component->bound ? "bound" : "not bound") : "not registered"); in component_devices_show()
258 adev->bound = true; in try_to_bring_up_aggregate_device()
268 if (!adev->bound) { in try_to_bring_up_masters()
280 if (adev->bound) { in take_down_aggregate_device()
283 adev->bound = false; in take_down_aggregate_device()
582 return adev->bound; in component_master_is_bound()
589 if (WARN_ON(!component->bound)) in component_unbind()
[all …]
/linux/tools/perf/tests/shell/lib/
H A Dperf_metric_validation.py115 def get_bound_value(bound, initval, ridx): argument
117 if isinstance(bound, int) or isinstance(bound, float):
118 val = bound
119 elif isinstance(bound, str):
120 if bound == '':
122 elif bound in alias:
126 elif bound.replace('.', '1').isdigit():
127 val = float(bound)
129 print("Wrong bound: {0}".format(bound))
131 print("Wrong bound: {0}".format(bound))
/linux/Documentation/userspace-api/media/rc/
H A 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/net/can/
H A Draw.c90 unsigned int bound:1; member
314 if (ro->bound) { in raw_notify()
323 ro->bound = 0; in raw_notify()
368 ro->bound = 0; in raw_init()
423 if (ro->bound) { in raw_release()
436 ro->bound = 0; in raw_release()
471 if (ro->bound && addr->can_ifindex == ro->ifindex) in raw_bind()
503 if (ro->bound) { in raw_bind()
515 ro->bound = 1; in raw_bind()
595 if (ro->bound && dev) { in raw_setsockopt()
[all …]
/linux/drivers/net/ethernet/marvell/prestera/
H A Dprestera_matchall.c47 if (!block->mall.bound) in prestera_mall_prio_get()
107 block->mall.bound = true; in prestera_mall_replace()
126 block->mall.bound = false; in prestera_mall_destroy()
/linux/lib/kunit/
H A Dplatform.c209 bool bound; in kunit_platform_device_prepare_wait_for_probe() local
220 bound = device_is_bound(dev); in kunit_platform_device_prepare_wait_for_probe()
221 if (bound) { in kunit_platform_device_prepare_wait_for_probe()
/linux/scripts/coccinelle/iterators/
H A 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/Documentation/userspace-api/media/v4l/
H A Dext-ctrls-colorimetry.rst40 - The upper bound for the maximum light level among all individual
42 When equal to 0 no such upper bound is present.
45 - The upper bound for the maximum average light level among the
47 cd/m\ :sup:`2`. When equal to 0 no such upper bound is present.
/linux/tools/perf/tests/shell/attr/
H A Dtest-stat-default102 # PERF_TYPE_RAW / topdown-fe-bound (0x8200)
113 # PERF_TYPE_RAW / topdown-be-bound (0x8300)
157 # PERF_TYPE_RAW / topdown-mem-bound (0x8700)
H A Dtest-stat-detailed-1104 # PERF_TYPE_RAW / topdown-fe-bound (0x8200)
115 # PERF_TYPE_RAW / topdown-be-bound (0x8300)
159 # PERF_TYPE_RAW / topdown-mem-bound (0x8700)
H A Dtest-stat-detailed-3104 # PERF_TYPE_RAW / topdown-fe-bound (0x8200)
115 # PERF_TYPE_RAW / topdown-be-bound (0x8300)
159 # PERF_TYPE_RAW / topdown-mem-bound (0x8700)
H A Dtest-stat-detailed-2104 # PERF_TYPE_RAW / topdown-fe-bound (0x8200)
115 # PERF_TYPE_RAW / topdown-be-bound (0x8300)
159 # PERF_TYPE_RAW / topdown-mem-bound (0x8700)
/linux/Documentation/ABI/testing/
H A 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.
H A Dsysfs-platform-usbip-vudc7 gadget driver which is currently bound to this
9 only if gadget driver is bound, otherwise error
/linux/lib/
H A Ddecompress_unlzma.c77 uint32_t bound; member
153 rc->bound = *p * (rc->range >> RC_MODEL_TOTAL_BITS); in rc_is_bit_0_helper()
154 return rc->bound; in rc_is_bit_0_helper()
165 rc->range = rc->bound; in rc_update_bit_0()
170 rc->range -= rc->bound; in rc_update_bit_1()
171 rc->code -= rc->bound; in rc_update_bit_1()
/linux/drivers/gpu/drm/i915/
H A Di915_vma.c944 unsigned int bound; in try_qad_pin() local
946 bound = atomic_read(&vma->flags); in try_qad_pin()
951 return (flags & bound) == flags; in try_qad_pin()
957 if (unlikely(flags & ~bound)) in try_qad_pin()
960 if (unlikely(bound & (I915_VMA_OVERFLOW | I915_VMA_ERROR))) in try_qad_pin()
963 GEM_BUG_ON(((bound + 1) & I915_VMA_PIN_MASK) == 0); in try_qad_pin()
964 } while (!atomic_try_cmpxchg(&vma->flags, &bound, bound + 1)); in try_qad_pin()
1441 unsigned int bound; in i915_vma_pin_ww() local
1538 bound = atomic_read(&vma->flags); in i915_vma_pin_ww()
1539 if (unlikely(bound & I915_VMA_ERROR)) { in i915_vma_pin_ww()
[all …]
/linux/drivers/infiniband/core/
H A Dumem_odp.c433 u64 bound) in ib_umem_odp_unmap_dma_pages() argument
441 bound = min_t(u64, bound, ib_umem_end(umem_odp)); in ib_umem_odp_unmap_dma_pages()
442 for (addr = virt; addr < bound; addr += BIT(umem_odp->page_shift)) { in ib_umem_odp_unmap_dma_pages()
/linux/tools/usb/usbip/
H A 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
244 - usbip-host.ko must be bound to the target device.
246 - Target USB gadget must be bound to vudc
/linux/drivers/usb/gadget/legacy/
H A 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/Documentation/driver-api/usb/
H A Dcallbacks.rst102 with another driver bound to the interface, eg. a power management
147 that isn't bound to your driver.
149 Probe will never be called for an interface bound to a driver.
153 Once your driver is bound to an interface, disconnect can be
/linux/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_ttm_buffer.c283 if (vmw_be->bound) in vmw_ttm_bind()
316 vmw_be->bound = true; in vmw_ttm_bind()
326 if (!vmw_be->bound) in vmw_ttm_unbind()
344 vmw_be->bound = false; in vmw_ttm_unbind()
/linux/include/net/netfilter/
H A Dnf_tables.h1152 bound:1, member
1206 return (chain->flags & NFT_CHAIN_BINDING) && chain->bound; in nft_chain_is_bound()
1697 bool bound; member
1709 nft_trans_container_rule(trans)->bound
1721 bool bound; member
1732 nft_trans_container_set(trans)->bound
1749 bool bound; member
1768 nft_trans_container_chain(trans)->bound
1805 bool bound; member
1815 nft_trans_container_elem(trans)->bound
/linux/Documentation/input/
H A Dnotifier.rst16 - KBD_UNBOUND_KEYCODE events are sent if the keycode is not bound to a keysym.
35 || !bound) {
/linux/tools/testing/selftests/drivers/net/hw/
H A Ddevlink_rate_tc_bw.py92 def bound(self, values):
352 if validator.bound({"total": total}):
384 return cfg.tc_bw_validator.bound({"tc3": bw_data['tc3_percentage'],
93 def bound(self, expected, value): global() member in BandwidthValidator

1234567891011