/openbmc/linux/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_pll.c | 44 static void amdgpu_pll_reduce_ratio(unsigned *nom, unsigned *den, in amdgpu_pll_reduce_ratio() argument 50 tmp = gcd(*nom, *den); in amdgpu_pll_reduce_ratio() 51 *nom /= tmp; in amdgpu_pll_reduce_ratio() 55 if (*nom < nom_min) { in amdgpu_pll_reduce_ratio() 56 tmp = DIV_ROUND_UP(nom_min, *nom); in amdgpu_pll_reduce_ratio() 57 *nom *= tmp; in amdgpu_pll_reduce_ratio() 64 *nom *= tmp; in amdgpu_pll_reduce_ratio() 84 static void amdgpu_pll_get_fb_ref_div(struct amdgpu_device *adev, unsigned int nom, in amdgpu_pll_get_fb_ref_div() argument 98 *fb_div = DIV_ROUND_CLOSEST(nom * *ref_div * post_div, den); in amdgpu_pll_get_fb_ref_div() 138 unsigned nom, den; in amdgpu_pll_compute() local [all …]
|
/openbmc/linux/sound/soc/img/ |
H A D | img-spdif-in.c | 152 unsigned int ori, nom, hld; in img_spdif_in_do_clkgen_calc() local 167 nom = (4096 / ori) + 1; in img_spdif_in_do_clkgen_calc() 169 hld = 4096 - (--nom * (ori - 1)); in img_spdif_in_do_clkgen_calc() 172 *pnom = nom; in img_spdif_in_do_clkgen_calc() 181 unsigned int nom, hld; in img_spdif_in_do_clkgen_single() local 190 ret = img_spdif_in_do_clkgen_calc(rate, &nom, &hld, clk_rate); in img_spdif_in_do_clkgen_single() 194 reg = (nom << IMG_SPDIF_IN_CLKGEN_NOM_SHIFT) & in img_spdif_in_do_clkgen_single() 218 unsigned int nom, hld, rate, max_rate = 0; in img_spdif_in_do_clkgen_multi() local 234 ret = img_spdif_in_do_clkgen_calc(rate, &nom, &hld, clk_rate); in img_spdif_in_do_clkgen_multi() 238 reg = (nom << IMG_SPDIF_IN_ACLKGEN_NOM_SHIFT) & in img_spdif_in_do_clkgen_multi()
|
/openbmc/linux/drivers/video/fbdev/riva/ |
H A D | fbdev.c | 857 int nom, int den) in rivafb_do_maximize() argument 877 if (modes[i].xres * nom / den * modes[i].yres < in rivafb_do_maximize() 895 (nom * var->yres_virtual)) & ~15; in rivafb_do_maximize() 901 (nom * var->xres_virtual); in rivafb_do_maximize() 906 if (var->xres_virtual * nom / den * var->yres_virtual > info->fix.smem_len) { in rivafb_do_maximize() 915 if (var->xres_virtual * nom / den >= 8192) { in rivafb_do_maximize() 918 var->xres_virtual, 8192 * den / nom - 16); in rivafb_do_maximize() 919 var->xres_virtual = 8192 * den / nom - 16; in rivafb_do_maximize() 933 if (var->yres_virtual > 0x7fff/nom) in rivafb_do_maximize() 934 var->yres_virtual = 0x7fff/nom; in rivafb_do_maximize() [all …]
|
/openbmc/linux/drivers/gpu/drm/radeon/ |
H A D | radeon_display.c | 885 static void avivo_reduce_ratio(unsigned *nom, unsigned *den, in avivo_reduce_ratio() argument 891 tmp = gcd(*nom, *den); in avivo_reduce_ratio() 892 *nom /= tmp; in avivo_reduce_ratio() 896 if (*nom < nom_min) { in avivo_reduce_ratio() 897 tmp = DIV_ROUND_UP(nom_min, *nom); in avivo_reduce_ratio() 898 *nom *= tmp; in avivo_reduce_ratio() 905 *nom *= tmp; in avivo_reduce_ratio() 924 static void avivo_get_fb_ref_div(unsigned nom, unsigned den, unsigned post_div, in avivo_get_fb_ref_div() argument 933 *fb_div = DIV_ROUND_CLOSEST(nom * *ref_div * post_div, den); in avivo_get_fb_ref_div() 971 unsigned nom, den; in radeon_compute_pll_avivo() local [all …]
|
/openbmc/linux/drivers/gpu/drm/i915/gt/ |
H A D | intel_gt_clock_utils.c | 204 static u64 div_u64_roundup(u64 nom, u32 den) in div_u64_roundup() argument 206 return div_u64(nom + den - 1, den); in div_u64_roundup()
|
/openbmc/linux/drivers/isdn/hardware/mISDN/ |
H A D | mISDNisar.c | 176 u8 nom, noc; in load_firmware() local 240 nom = (2 * noc) + 3; in load_firmware() 258 if (!send_mbox(isar, ISAR_HIS_FIRM, 0, nom, NULL)) { in load_firmware() 1343 u8 ctrl = 0, nom = 0, p1 = 0; in isar_pump_cmd() local 1352 nom = 1; in isar_pump_cmd() 1365 nom = 0; in isar_pump_cmd() 1374 nom = 1; in isar_pump_cmd() 1387 nom = 0; in isar_pump_cmd() 1396 nom = 1; in isar_pump_cmd() 1409 nom = 0; in isar_pump_cmd() [all …]
|
/openbmc/linux/drivers/video/fbdev/ |
H A D | cirrusfb.c | 408 static void bestclock(long freq, int *nom, int *den, int *div); 670 int nom, den, div; in cirrusfb_set_par_foo() local 846 bestclock(freq, &nom, &den, &div); in cirrusfb_set_par_foo() 849 freq, nom, den, div); in cirrusfb_set_par_foo() 863 nom = 0; in cirrusfb_set_par_foo() 885 if (nom) { in cirrusfb_set_par_foo() 898 vga_wseq(regbase, CL_SEQR1E, nom); in cirrusfb_set_par_foo() 900 vga_wseq(regbase, CL_SEQRE, nom); in cirrusfb_set_par_foo() 2739 static void bestclock(long freq, int *nom, int *den, int *div) in bestclock() argument 2744 assert(nom != NULL); in bestclock() [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/input/ |
H A D | dlg,da7280.txt | 30 - dlg,nom-microvolt: Nominal actuator voltage rating. 89 dlg,nom-microvolt = <2000000>;
|
/openbmc/openbmc/meta-security/recipes-ids/suricata/ |
H A D | suricata-crates.inc | 57 crate://crates.io/nom/7.1.3 \ 58 crate://crates.io/nom-derive/0.10.1 \ 59 crate://crates.io/nom-derive-impl/0.10.1 \ 179 SRC_URI[nom-7.1.3.sha256sum] = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 180 SRC_URI[nom-derive-0.10.1.sha256sum] = "1ff943d68b88d0b87a6e0d58615e8fa07f9fd5a1319fa0a72efc1f62275… 181 SRC_URI[nom-derive-impl-0.10.1.sha256sum] = "cd0b9a93a84b0d3ec3e70e02d332dc33ac6dfac9cde63e17fcb771… 513 crate://crates.io/nom/7.1.3 \ 567 SRC_URI[nom-7.1.3.sha256sum] = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 669 # from rust/vendor/nom/Cargo.lock 1070 crate://crates.io/nom/7.1.3 \ [all …]
|
/openbmc/openbmc/meta-security/meta-parsec/recipes-parsec/parsec-tool/ |
H A D | parsec-tool-crates.inc | 72 crate://crates.io/nom/5.1.3 \ 73 crate://crates.io/nom/7.1.3 \ 254 SRC_URI[nom-5.1.3.sha256sum] = "08959a387a676302eebf4ddbcbc611da04285579f76f88ee0506c63b1a61dd4b" 255 SRC_URI[nom-7.1.3.sha256sum] = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
/openbmc/linux/drivers/net/can/usb/ |
H A D | esd_usb.c | 236 struct esd_usb_3_baudrate_cfg nom; /* nominal bit rate */ member 1119 baud_x->nom.brp = cpu_to_le16(nom_bt->brp & (nom_btc->brp_max - 1)); in esd_usb_3_set_bittiming() 1120 baud_x->nom.sjw = cpu_to_le16(nom_bt->sjw & (nom_btc->sjw_max - 1)); in esd_usb_3_set_bittiming() 1121 baud_x->nom.tseg1 = cpu_to_le16((nom_bt->prop_seg + nom_bt->phase_seg1) in esd_usb_3_set_bittiming() 1123 baud_x->nom.tseg2 = cpu_to_le16(nom_bt->phase_seg2 & (nom_btc->tseg2_max - 1)); in esd_usb_3_set_bittiming()
|
/openbmc/openbmc/meta-security/meta-parsec/recipes-parsec/parsec-service/ |
H A D | parsec-service-crates.inc | 104 crate://crates.io/nom/5.1.3 \ 105 crate://crates.io/nom/7.1.3 \ 347 SRC_URI[nom-5.1.3.sha256sum] = "08959a387a676302eebf4ddbcbc611da04285579f76f88ee0506c63b1a61dd4b" 348 SRC_URI[nom-7.1.3.sha256sum] = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/thin-provisioning-tools/ |
H A D | thin-provisioning-tools-crates.inc | 50 crate://crates.io/nom/7.1.3 \ 157 SRC_URI[nom-7.1.3.sha256sum] = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/ |
H A D | python3-pyruvate-crates.inc | 54 crate://crates.io/nom/7.1.1 \ 161 SRC_URI[nom-7.1.1.sha256sum] = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
|
/openbmc/u-boot/arch/x86/dts/ |
H A D | galileo.dts | 61 rtt-nom-value = <DRAM_RTT_NOM_120OHM>;
|
/openbmc/linux/drivers/video/fbdev/aty/ |
H A D | radeon_base.c | 836 int nom, den; in radeonfb_check_var() local 858 nom = den = 1; in radeonfb_check_var() 864 nom = 2; in radeonfb_check_var() 873 nom = 2; in radeonfb_check_var() 884 nom = 4; in radeonfb_check_var() 893 nom = 4; in radeonfb_check_var() 925 if (((v.xres_virtual * v.yres_virtual * nom) / den) > rinfo->mapped_vram) in radeonfb_check_var()
|
/openbmc/linux/drivers/acpi/ |
H A D | cppc_acpi.c | 1281 u64 high, low, guaranteed, nom, min_nonlinear, low_f = 0, nom_f = 0; in cppc_get_perf_caps() local 1323 cpc_read(cpunum, nominal_reg, &nom); in cppc_get_perf_caps() 1324 perf_caps->nominal_perf = nom; in cppc_get_perf_caps() 1337 if (!high || !low || !nom || !min_nonlinear) in cppc_get_perf_caps()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/fontforge/fontforge/ |
H A D | 0001-Fix-Translations-containing-invalid-directives-hs.patch | 191 @@ -21042,7 +21042,7 @@ msgstr "Il y a déjà une sous-table avec ce nom, changez de nom SVP" 199 msgstr "Il y a un autre glyphe dans la fonte avec ce nom"
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/uutils-coreutils/ |
H A D | uutils-coreutils-crates.inc | 148 crate://crates.io/nom/7.1.3 \ 454 SRC_URI[nom-7.1.3.sha256sum] = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 695 crate://crates.io/nom/7.1.3 \ 860 SRC_URI[nom-7.1.3.sha256sum] = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | etalab-2.0 | 27 - mentionner la paternité de l’« Information » : sa source (au moins le nom du
|
H A D | LiLiQ-P-1.1 | 70 …articulières. Toutefois, une version modifiée doit être distribuée sous un nom différent. Toute ré…
|
H A D | LAL-1.2 | 45 …er précisément où se trouve la licence, – indiquer au destinataire le nom de l’auteur des ori…
|
H A D | LiLiQ-R-1.1 | 94 …articulières. Toutefois, une version modifiée doit être distribuée sous un nom différent. Toute ré…
|
/openbmc/linux/arch/arm64/boot/dts/qcom/ |
H A D | sm8150-microsoft-surface-duo.dts | 381 dlg,nom-microvolt = <2000000>;
|
/openbmc/openbmc/poky/meta/recipes-gnome/librsvg/ |
H A D | librsvg-crates.inc | 147 crate://crates.io/nom/7.1.3 \ 441 SRC_URI[nom-7.1.3.sha256sum] = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|