Searched refs:bound (Results 1 - 25 of 136) sorted by relevance

123456

/linux-master/drivers/usb/gadget/function/
H A Du_gether.h21 bool bound; member in struct:f_gether_opts
H A Du_eem.h21 bool bound; member in struct:f_eem_opts
H A Du_ecm.h21 bool bound; member in struct:f_ecm_opts
H A Du_phonet.h16 bool bound; member in struct:f_phonet_opts
H A Du_ncm.h21 bool bound; member in struct:f_ncm_opts
H A Du_rndis.h23 bool bound; member in struct:f_rndis_opts
H A Du_uac1.h53 unsigned bound:1; member in struct:f_uac1_opts
H A Du_uac2.h69 bool bound; member in struct:f_uac2_opts
H A Du_uac1_legacy.h64 unsigned bound:1; member in struct:f_uac1_legacy_opts
H A Df_subset.c306 * configurations are bound in sequence with list_for_each_entry,
307 * in each configuration its functions are bound in sequence
309 * with regard to gether_opts->bound access
311 if (!gether_opts->bound) {
318 gether_opts->bound = true;
420 if (opts->bound)
/linux-master/drivers/net/wireless/mediatek/mt76/mt7603/
H A Ddebugfs.c76 int bound[3], i, range; local
79 for (i = 0; i < ARRAY_SIZE(bound); i++)
80 bound[i] = MT_AGG_ASRCR_RANGE(range, i) + 1;
82 seq_printf(file, "Length: %8d | ", bound[0]);
83 for (i = 0; i < ARRAY_SIZE(bound) - 1; i++)
85 bound[i], bound[i + 1]);
87 for (i = 0; i < ARRAY_SIZE(bound); i++)
/linux-master/drivers/net/wireless/mediatek/mt76/
H A Dmt792x_debugfs.c11 int bound[15], range[4], i; local
22 for (i = 0; i < ARRAY_SIZE(bound); i++)
23 bound[i] = MT_MIB_ARNCR_RANGE(range[i / 4], i % 4) + 1;
27 seq_printf(file, "Length: %8d | ", bound[0]);
28 for (i = 0; i < ARRAY_SIZE(bound) - 1; i++)
29 seq_printf(file, "%3d %3d | ", bound[i] + 1, bound[i + 1]);
32 for (i = 0; i < ARRAY_SIZE(bound); i++)
/linux-master/drivers/net/ethernet/marvell/prestera/
H A Dprestera_flow.h28 bool bound; member in struct:prestera_flow_block::__anon959
H A Dprestera_matchall.c47 if (!block->mall.bound)
107 block->mall.bound = true;
126 block->mall.bound = false;
/linux-master/tools/perf/tests/shell/lib/
H A Dperf_metric_validation.py105 @param lb: str/float, lower bound
106 @param ub: str/float, upper bound
108 @returns: lower bound, return inf if the lower bound is a metric value and is not collected
109 upper bound, return -1 if the upper bound is a metric value and is not collected
110 tolerance, denormalized base on upper bound value
113 def get_bound_value(bound, initval, ridx):
115 if isinstance(bound, int) or isinstance(bound, floa
[all...]
/linux-master/drivers/base/
H A Dcomponent.c17 * including their bound drivers, into an aggregate driver. Various subsystems
58 bool bound; member in struct:aggregate_device
68 bool bound; member in struct:component
93 dev_name(m->parent), m->bound ? "bound" : "not bound");
102 component ? (component->bound ? "bound" : "not bound") : "not registered");
258 adev->bound
[all...]
/linux-master/include/rdma/
H A Dib_umem_odp.h100 u64 bound);
/linux-master/net/can/
H A Draw.c85 int bound; member in struct:raw_sock
312 if (ro->bound) {
321 ro->bound = 0;
366 ro->bound = 0;
419 if (ro->bound) {
432 ro->bound = 0;
466 if (ro->bound && addr->can_ifindex == ro->ifindex)
498 if (ro->bound) {
510 ro->bound = 1;
590 if (ro->bound
[all...]
/linux-master/drivers/net/wireless/mediatek/mt76/mt7615/
H A Ddebugfs.c281 int bound[7], i, range; local
288 bound[i] = MT_AGG_ASRCR_RANGE(range, i) + 1;
292 bound[i + 4] = MT_AGG_ASRCR_RANGE(range, i) + 1;
296 seq_printf(file, "Length: %8d | ", bound[0]);
297 for (i = 0; i < ARRAY_SIZE(bound) - 1; i++)
299 bound[i], bound[i + 1]);
302 for (i = 0; i < ARRAY_SIZE(bound); i++)
/linux-master/net/netlink/
H A Daf_netlink.h38 bool bound; member in struct:netlink_sock
/linux-master/drivers/usb/gadget/legacy/
H A Dether.c373 eem_opts->bound = true;
375 ecm_opts->bound = true;
377 geth_opts->bound = true;
/linux-master/lib/
H A Ddecompress_unlzma.c75 uint32_t bound; member in struct:rc
146 *Because we want to always expose (rc->code < rc->bound) to optimizer
151 rc->bound = *p * (rc->range >> RC_MODEL_TOTAL_BITS);
152 return rc->bound;
163 rc->range = rc->bound;
168 rc->range -= rc->bound;
169 rc->code -= rc->bound;
/linux-master/drivers/infiniband/hw/hfi1/
H A Dfault.c116 unsigned long bound = 1U << BITS_PER_BYTE; local
143 if (range_start >= bound || range_end >= bound)
/linux-master/drivers/gpu/drm/i915/pxp/
H A Dintel_pxp.c285 bool bound = false; local
289 bound = true;
292 return bound;
/linux-master/drivers/infiniband/core/
H A Dumem_odp.c472 u64 bound)
483 bound = min_t(u64, bound, ib_umem_end(umem_odp));
484 for (addr = virt; addr < bound; addr += BIT(umem_odp->page_shift)) {
471 ib_umem_odp_unmap_dma_pages(struct ib_umem_odp *umem_odp, u64 virt, u64 bound) argument

Completed in 402 milliseconds

123456