Home
last modified time | relevance | path

Searched refs:qn (Results 1 – 19 of 19) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/interconnect/qcom/
H A Dicc-rpmh.c22 struct qcom_icc_node *qn; in qcom_icc_pre_aggregate() local
25 qn = node->data; in qcom_icc_pre_aggregate()
29 qn->sum_avg[i] = 0; in qcom_icc_pre_aggregate()
30 qn->max_peak[i] = 0; in qcom_icc_pre_aggregate()
33 for (i = 0; i < qn->num_bcms; i++) in qcom_icc_pre_aggregate()
34 qcom_icc_bcm_voter_add(qp->voter, qn->bcms[i]); in qcom_icc_pre_aggregate()
51 struct qcom_icc_node *qn; in qcom_icc_aggregate() local
53 qn = node->data; in qcom_icc_aggregate()
60 qn->sum_avg[i] += avg_bw; in qcom_icc_aggregate()
61 qn->max_peak[i] = max_t(u32, qn->max_peak[i], peak_bw); in qcom_icc_aggregate()
[all …]
H A Dqcs404.c333 struct qcom_icc_node *qn; in qcom_icc_set() local
343 qn = src->data; in qcom_icc_set()
355 if (qn->mas_rpm_id != -1) { in qcom_icc_set()
358 qn->mas_rpm_id, in qcom_icc_set()
362 qn->mas_rpm_id, ret); in qcom_icc_set()
367 if (qn->slv_rpm_id != -1) { in qcom_icc_set()
370 qn->slv_rpm_id, in qcom_icc_set()
381 do_div(rate, qn->buswidth); in qcom_icc_set()
383 if (qn->rate == rate) in qcom_icc_set()
395 qn->rate = rate; in qcom_icc_set()
H A Dmsm8916.c369 struct msm8916_icc_node *qn; in msm8916_icc_set() local
376 qn = src->data; in msm8916_icc_set()
388 if (qn->mas_rpm_id != -1) { in msm8916_icc_set()
391 qn->mas_rpm_id, in msm8916_icc_set()
395 qn->mas_rpm_id, ret); in msm8916_icc_set()
400 if (qn->slv_rpm_id != -1) { in msm8916_icc_set()
403 qn->slv_rpm_id, in msm8916_icc_set()
414 do_div(rate, qn->buswidth); in msm8916_icc_set()
416 if (qn->rate == rate) in msm8916_icc_set()
428 qn->rate = rate; in msm8916_icc_set()
H A Dosm-l3.c152 const struct qcom_icc_node *qn; in qcom_icc_set() local
159 qn = src->data; in qcom_icc_set()
169 do_div(rate, qn->buswidth); in qcom_icc_set()
/OK3568_Linux_fs/kernel/fs/erofs/
H A Dnamei.c17 static inline int erofs_dirnamecmp(const struct erofs_qstr *qn, in erofs_dirnamecmp() argument
33 if (qn->name[i] != qd->name[i]) { in erofs_dirnamecmp()
35 return qn->name[i] > qd->name[i] ? 1 : -1; in erofs_dirnamecmp()
41 return qn->name[i] == '\0' ? 0 : 1; in erofs_dirnamecmp()
176 struct erofs_qstr qn; in erofs_namei() local
181 qn.name = name->name; in erofs_namei()
182 qn.end = name->name + name->len; in erofs_namei()
185 page = find_target_block_classic(dir, &qn, &ndirents); in erofs_namei()
193 de = find_target_dirent(&qn, data, EROFS_BLKSIZ, ndirents); in erofs_namei()
/OK3568_Linux_fs/kernel/fs/ocfs2/dlm/
H A Ddlmdomain.c1156 static int dlm_match_nodes(struct dlm_ctxt *dlm, struct dlm_query_nodeinfo *qn) in dlm_match_nodes() argument
1163 for (j = 0; j < qn->qn_numnodes; ++j) in dlm_match_nodes()
1164 mlog(0, "Node %3d, %pI4:%u\n", qn->qn_nodes[j].ni_nodenum, in dlm_match_nodes()
1165 &(qn->qn_nodes[j].ni_ipv4_address), in dlm_match_nodes()
1166 ntohs(qn->qn_nodes[j].ni_ipv4_port)); in dlm_match_nodes()
1171 for (j = 0; j < qn->qn_numnodes; ++j) { in dlm_match_nodes()
1172 if (qn->qn_nodes[j].ni_nodenum == i) { in dlm_match_nodes()
1173 remote = &(qn->qn_nodes[j]); in dlm_match_nodes()
1194 "local node %d\n", qn->qn_domain, in dlm_match_nodes()
1198 qn->qn_nodenum, dlm->node_num); in dlm_match_nodes()
[all …]
/OK3568_Linux_fs/kernel/drivers/ptp/
H A Dptp_clockmatrix.c318 u8 qn, in _sync_pll_output() argument
327 if ((qn == 0) && (qn_plus_1 == 0)) in _sync_pll_output()
381 if (qn) in _sync_pll_output()
472 u8 qn; in idtcm_sync_pps_output() local
504 qn = 0; in idtcm_sync_pps_output()
509 qn = output_mask & 0x1; in idtcm_sync_pps_output()
515 qn = output_mask & 0x1; in idtcm_sync_pps_output()
523 qn = output_mask & 0x1; in idtcm_sync_pps_output()
526 qn = output_mask & 0x1; in idtcm_sync_pps_output()
534 qn = output_mask & 0x1; in idtcm_sync_pps_output()
[all …]
/OK3568_Linux_fs/kernel/block/
H A Dblk-throttle.c396 static void throtl_qnode_init(struct throtl_qnode *qn, struct throtl_grp *tg) in throtl_qnode_init() argument
398 INIT_LIST_HEAD(&qn->node); in throtl_qnode_init()
399 bio_list_init(&qn->bios); in throtl_qnode_init()
400 qn->tg = tg; in throtl_qnode_init()
413 static void throtl_qnode_add_bio(struct bio *bio, struct throtl_qnode *qn, in throtl_qnode_add_bio() argument
416 bio_list_add(&qn->bios, bio); in throtl_qnode_add_bio()
417 if (list_empty(&qn->node)) { in throtl_qnode_add_bio()
418 list_add_tail(&qn->node, queued); in throtl_qnode_add_bio()
419 blkg_get(tg_to_blkg(qn->tg)); in throtl_qnode_add_bio()
429 struct throtl_qnode *qn; in throtl_peek_queued() local
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Deffects_i_dsp.c95 double p, qn, sig, un, * u = lsx_malloc((n - 1) * sizeof(*u)); in lsx_prepare_spline3() local
114 qn = un = 0; /* End with natural spline or */ in lsx_prepare_spline3()
116 qn = .5; in lsx_prepare_spline3()
119 y_2d[n - 1] = (un - qn * u[n - 2]) / (qn * y_2d[n - 2] + 1); in lsx_prepare_spline3()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dtxrx.h303 static inline void mlx5e_dump_error_cqe(struct mlx5e_cq *cq, u32 qn, in mlx5e_dump_error_cqe() argument
313 cq->mcq.cqn, ci, qn, in mlx5e_dump_error_cqe()
/OK3568_Linux_fs/kernel/drivers/infiniband/hw/mthca/
H A Dmthca_memfree.h176 u32 qn, __be32 **db);
H A Dmthca_memfree.c567 u32 qn, __be32 **db) in mthca_alloc_db() argument
654 page->db_rec[j] = cpu_to_be64((qn << 8) | (type << 5)); in mthca_alloc_db()
/OK3568_Linux_fs/kernel/drivers/crypto/hisilicon/
H A Dqm.c325 void (*qm_db)(struct hisi_qm *qm, u16 qn,
542 static void qm_db_v1(struct hisi_qm *qm, u16 qn, u8 cmd, u16 index, u8 priority) in qm_db_v1() argument
546 doorbell = qn | ((u64)cmd << QM_DB_CMD_SHIFT_V1) | in qm_db_v1()
553 static void qm_db_v2(struct hisi_qm *qm, u16 qn, u8 cmd, u16 index, u8 priority) in qm_db_v2() argument
564 doorbell = qn | ((u64)cmd << QM_DB_CMD_SHIFT_V2) | in qm_db_v2()
572 static void qm_db(struct hisi_qm *qm, u16 qn, u8 cmd, u16 index, u8 priority) in qm_db() argument
575 qn, cmd, index); in qm_db()
577 qm->ops->qm_db(qm, qn, cmd, index, priority); in qm_db()
/OK3568_Linux_fs/u-boot/board/freescale/mx6ul_14x14_evk/
H A Dmx6ul_14x14_evk.c89 enum qn { enum
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/js/
H A Djquery-2.0.3.min.js6qn(t,!0),e,r,i)}}),x.fn.extend({fadeTo:function(e,t,n,r){return this.filter(Lt).css("opacity",0).s… function in En
/OK3568_Linux_fs/device/rockchip/common/images/userdata/userdata_normal/media/
H A Dyuv420_p352x288.yuv1 …]][]ZUQJA;3-+--.0/.,*++--,-.....///./2+)/00) "*6=:.>[ND<ZvtV`W3VY0Fj:V�{qn���������������������…
28 …�֡BDY}�����������ȿ�������������������������������������������������W�������qn���������������������…
107 …�מAFY�����������Ⱦ�������������������������������������������������V�������qn���������������������…
545 …����������������ì�w���������������ί��~anu}������������������������IE�������qn������{y�������������…
648 …����ճUn���������������������~��~y|�������zqmoaP��Ǧ�w8~����������~��~����qn���������������������…
857 …������ϰ��n4>@<82Git�������������������\q�������rk�����~nw������������������qn�����wE/i�������{pi`a…
916 …\U��������������������w������tr�����jl�������������������^�����v?8v�������qn`f��������������|G9=;…
937 …��������������������������������}Qo���������������������������������������|qn~mBGy�}W]f\B632663476…
961 …��������������������������������{Pp���������������������������������������}qn|lDGw�}X]fZ@732663476…
1298 …l�������������������gy�������sq�����ks������������������jp�����d0@y������~qn`\t�������������e8;=;…
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/
H A Das.info8360 'NAME .qn REGISTER NAME [.TYPE] [[INDEX]]'
8362 The 'dn' and 'qn' directives are used to create typed and/or
8381 Aliases created using 'dn' or 'qn' can be destroyed using 'unreq'.
8599 the 'req', 'dn' or 'qn' directives. For example:
26815 * '.dn' and '.qn' directives, ARM: ARM Directives. (line 52)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/
H A Das.info8360 'NAME .qn REGISTER NAME [.TYPE] [[INDEX]]'
8362 The 'dn' and 'qn' directives are used to create typed and/or
8381 Aliases created using 'dn' or 'qn' can be destroyed using 'unreq'.
8599 the 'req', 'dn' or 'qn' directives. For example:
26815 * '.dn' and '.qn' directives, ARM: ARM Directives. (line 52)
/OK3568_Linux_fs/recovery/
HDrootfs.cpio.gz107070100A8AEB0000041ED0000000000000000000000116841B48100000000000000FD0000000200000000000000000000000200000000.�07070100A8B07C000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000900000000.gitkeep��07070100A8B07D000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000B00000000.skip_fsck����07070100A8AEB10000A1FF0000000000000000000000016841B0B600000007000000FD0000000200000000000000000000000400000000bin���usr/bin�07070100A8B07E000081A400000000000000000000000168412635000001CC000000FD0000000200000000000000000000001100000000busybox. ...