Home
last modified time | relevance | path

Searched refs:mbs (Results 1 – 7 of 7) sorted by relevance

/drivers/usb/gadget/udc/bdc/
Dbdc_cmd.c139 u32 mps, mbs, mul, si; in bdc_config_ep() local
144 cmd_sc = mul = mbs = param2 = 0; in bdc_config_ep()
170 mbs = comp_desc->bMaxBurst; in bdc_config_ep()
171 param2 |= mbs << MB_SHIFT; in bdc_config_ep()
179 mbs = usb_endpoint_maxp_mult(desc); in bdc_config_ep()
180 param2 |= mbs << MB_SHIFT; in bdc_config_ep()
/drivers/media/platform/qcom/venus/
Dpm_helpers.c151 u32 mbs; in load_per_instance() local
156 mbs = (ALIGN(inst->width, 16) / 16) * (ALIGN(inst->height, 16) / 16); in load_per_instance()
158 return mbs * inst->fps; in load_per_instance()
176 static void mbs_to_bw(struct venus_inst *inst, u32 mbs, u32 *avg, u32 *peak) in mbs_to_bw() argument
185 if (mbs == 0) in mbs_to_bw()
202 if (i != 0 && mbs > bw_tbl[i].mbs_per_sec) in mbs_to_bw()
Dvenc.c830 u32 mbs; in venc_set_properties() local
832 mbs = ALIGN(inst->width, 16) * ALIGN(inst->height, 16); in venc_set_properties()
833 mbs /= 16 * 16; in venc_set_properties()
834 if (mbs % ctr->intra_refresh_period) in venc_set_properties()
835 mbs++; in venc_set_properties()
836 mbs /= ctr->intra_refresh_period; in venc_set_properties()
839 intra_refresh.cir_mbs = mbs; in venc_set_properties()
Dhfi_helper.h673 u32 mbs; member
Dhfi_cmds.c1163 intra->mbs = in->cir_mbs; in pkt_session_set_property_3xx()
/drivers/atm/
Dhorizon.c2263 unsigned int mbs = 60; // just for fun in hrz_open()
2306 bucket = mbs*(pcr-scr)/pcr; in hrz_open()
2307 if (bucket*pcr != mbs*(pcr-scr)) in hrz_open()
/drivers/scsi/qla2xxx/
Dqla_def.h1110 static inline bool qla2xxx_is_valid_mbs(unsigned int mbs) in qla2xxx_is_valid_mbs() argument
1112 return MBS_COMMAND_COMPLETE <= mbs && mbs <= MBS_DIAG_ECHO_TEST_ERROR; in qla2xxx_is_valid_mbs()