| /linux/arch/x86/kernel/cpu/resctrl/ |
| H A D | monitor.c | 180 struct arch_mbm_state *am; in resctrl_arch_reset_rmid() local 183 am = get_arch_mbm_state(hw_dom, rmid, eventid); in resctrl_arch_reset_rmid() 184 if (am) { in resctrl_arch_reset_rmid() 185 memset(am, 0, sizeof(*am)); in resctrl_arch_reset_rmid() 189 __rmid_read_phys(prmid, eventid, &am->prev_msr); in resctrl_arch_reset_rmid() 225 struct arch_mbm_state *am; in get_corrected_val() local 228 am = get_arch_mbm_state(hw_dom, rmid, eventid); in get_corrected_val() 229 if (am) { in get_corrected_val() 230 am->chunks += mbm_overflow_count(am->prev_msr, msr_val, in get_corrected_val() 232 chunks = get_corrected_mbm_count(rmid, am->chunks); in get_corrected_val() [all …]
|
| /linux/drivers/infiniband/hw/hfi1/ |
| H A D | mad.h | 318 #define OPA_AM_NPORT(am) (((am) >> OPA_AM_NPORT_SHIFT) & \ argument 324 #define OPA_AM_NBLK(am) (((am) >> OPA_AM_NBLK_SHIFT) & \ argument 331 #define OPA_AM_START_BLK(am) (((am) >> OPA_AM_START_BLK_SHIFT) & \ argument 337 #define OPA_AM_PORTNUM(am) (((am) >> OPA_AM_PORTNUM_SHIFT) & \ argument 343 #define OPA_AM_ASYNC(am) (((am) >> OPA_AM_ASYNC_SHIFT) & \ argument 350 #define OPA_AM_START_SM_CFG(am) (((am) >> OPA_AM_START_SM_CFG_SHIFT) \ argument 356 #define OPA_AM_CI_ADDR(am) (((am) >> OPA_AM_CI_ADDR_SHIFT) & \ argument 362 #define OPA_AM_CI_LEN(am) (((am) >> OPA_AM_CI_LEN_SHIFT) & \ argument
|
| H A D | mad.c | 540 static int __subn_get_opa_nodedesc(struct opa_smp *smp, u32 am, in __subn_get_opa_nodedesc() argument 546 if (am || smp_length_check(sizeof(*nd), max_len)) { in __subn_get_opa_nodedesc() 561 static int __subn_get_opa_nodeinfo(struct opa_smp *smp, u32 am, u8 *data, in __subn_get_opa_nodeinfo() argument 572 if (am || pidx >= dd->num_pports || ibdev->node_guid == 0 || in __subn_get_opa_nodeinfo() 754 static int __subn_get_opa_portinfo(struct opa_smp *smp, u32 am, u8 *data, in __subn_get_opa_portinfo() argument 767 u32 num_ports = OPA_AM_NPORT(am); in __subn_get_opa_portinfo() 768 u32 start_of_sm_config = OPA_AM_START_SM_CFG(am); in __subn_get_opa_portinfo() 979 static int __subn_get_opa_pkeytable(struct opa_smp *smp, u32 am, u8 *data, in __subn_get_opa_pkeytable() argument 984 u32 n_blocks_req = OPA_AM_NBLK(am); in __subn_get_opa_pkeytable() 985 u32 start_block = am & 0x7ff; in __subn_get_opa_pkeytable() [all …]
|
| /linux/arch/mips/kernel/ |
| H A D | segment.c | 18 unsigned int am; in build_segment_config() local 24 am = (cfg & MIPS_SEGCFG_AM) >> MIPS_SEGCFG_AM_SHIFT; in build_segment_config() 25 str += sprintf(str, "%-5s", am_str[am]); in build_segment_config() 32 if ((am == 0) || (am > 3) || (cfg & MIPS_SEGCFG_EU)) in build_segment_config() 38 if ((am == 0) || (am > 3)) in build_segment_config()
|
| /linux/Documentation/translations/zh_CN/ |
| H A D | how-to.rst | 301 git am 0001-xxxxx.patch 305 git am --amend 307 git am 0002-xxxxx.patch 366 您可以先发送给自己,尝试发出的 patch 是否可以用 'git am' 工具正常打上。 394 备了灵活使用 git am --amend 的能力。 398 git am <您要修改的补丁>
|
| /linux/drivers/media/tuners/ |
| H A D | fc0012.c | 125 unsigned char reg[7], am, pm, multi, tmp; in fc0012_set_params() local 207 am = (unsigned char)(xdiv - (8 * pm)); in fc0012_set_params() 209 if (am < 2) { in fc0012_set_params() 210 reg[1] = am + 8; in fc0012_set_params() 213 reg[1] = am; in fc0012_set_params()
|
| H A D | fc0013.c | 152 unsigned char reg[7], am, pm, multi, tmp; in fc0013_set_params() local 296 am = (unsigned char)(xdiv - (8 * pm)); in fc0013_set_params() 298 if (am < 2) { in fc0013_set_params() 299 reg[1] = am + 8; in fc0013_set_params() 302 reg[1] = am; in fc0013_set_params()
|
| /linux/Documentation/translations/zh_CN/maintainer/ |
| H A D | configure-git.rst | 49 通过在git中添加以下钩子,可以将此配置为在发布 ``git am`` 时自动执行: 53 $ git config am.messageid true
|
| /linux/drivers/clk/ |
| H A D | clk-stm32f4.c | 438 struct clk_apb_mul *am = to_clk_apb_mul(hw); in clk_apb_mul_recalc_rate() local 440 if (readl(base + STM32F4_RCC_CFGR) & BIT(am->bit_idx)) in clk_apb_mul_recalc_rate() 449 struct clk_apb_mul *am = to_clk_apb_mul(hw); in clk_apb_mul_determine_rate() local 452 if (readl(base + STM32F4_RCC_CFGR) & BIT(am->bit_idx)) in clk_apb_mul_determine_rate() 488 struct clk_apb_mul *am; in clk_register_apb_mul() local 492 am = kzalloc_obj(*am); in clk_register_apb_mul() 493 if (!am) in clk_register_apb_mul() 496 am->bit_idx = bit_idx; in clk_register_apb_mul() 497 am->hw.init = &init; in clk_register_apb_mul() 505 clk = clk_register(dev, &am->hw); in clk_register_apb_mul() [all …]
|
| /linux/drivers/video/fbdev/core/ |
| H A D | svgalib.c | 382 u16 am, an, ar; in svga_compute_pll() local 411 am = pll->m_min; in svga_compute_pll() 414 while ((am <= pll->m_max) && (an <= pll->n_max)) { in svga_compute_pll() 415 f_current = (pll->f_base * am) / an; in svga_compute_pll() 420 *m = am; in svga_compute_pll() 425 am++; in svga_compute_pll()
|
| /linux/Documentation/doc-guide/ |
| H A D | maintainer-profile.rst | 48 I am the sole maintainer for the documentation subsystem, and I am doing
|
| /linux/Documentation/sound/cards/ |
| H A D | multisound.sh | 423 touch -am 1231235999 $$.touch >/dev/null 2>&1 531 $shar_touch -am 1204092598 'MultiSound.d/setdigital.c' && 985 $shar_touch -am 1204092598 'MultiSound.d/pinnaclecfg.c' && 1015 $shar_touch -am 1204092398 'MultiSound.d/Makefile' && 1045 $shar_touch -am 0828231798 'MultiSound.d/conv.l' && 1123 $shar_touch -am 1204100698 'MultiSound.d/msndreset.c' &&
|
| /linux/include/uapi/sound/ |
| H A D | asound_fm.h | 31 unsigned char am; /* amplitude modulation */ member
|
| /linux/arch/arm/boot/dts/nxp/imx/ |
| H A D | imx6q-icore-ofcap10.dts | 17 compatible = "ampire,am-1280800n3tzqw-t00h";
|
| /linux/Documentation/translations/zh_TW/process/ |
| H A D | 7.AdvancedTopics.rst | 112 的作者信息; git “am”工具在這方面做得最好,但是如果補丁通過第三方轉發給您,
|
| H A D | submitting-patches.rst | 607 ``git am`` 而不必擔心衝突:: 611 $ git am patches.mbox
|
| /linux/arch/arm64/boot/dts/rockchip/ |
| H A D | px30-engicam-px30-core-ctouch2-of10.dts | 28 compatible = "ampire,am-1280800n3tzqw-t00h";
|
| /linux/arch/arm/boot/dts/st/ |
| H A D | stm32mp157a-icore-stm32mp1-ctouch2-of10.dts | 35 compatible = "ampire,am-1280800n3tzqw-t00h";
|
| /linux/Documentation/translations/zh_CN/process/ |
| H A D | submitting-patches.rst | 603 ``git am`` 而不必担心冲突:: 607 $ git am patches.mbox
|
| /linux/arch/arm/boot/compressed/ |
| H A D | head-sharpsl.S | 20 #error What am I doing here...
|
| /linux/drivers/staging/vme_user/ |
| H A D | vme.c | 207 static u32 vme_get_aspace(int am) in vme_get_aspace() argument 209 switch (am) { in vme_get_aspace() 1206 unsigned long long address, int am) in vme_bus_error_handler() argument 1210 u32 aspace = vme_get_aspace(am); in vme_bus_error_handler()
|
| /linux/Documentation/usb/ |
| H A D | mtouchusb.rst | 75 I am not a MicroTouch/3M employee, nor have I ever been. 3M does not support
|
| /linux/fs/ocfs2/dlm/ |
| H A D | dlmmaster.c | 2050 item->u.am.lockres = res; /* already have a ref */ in dlm_dispatch_assert_master() 2052 item->u.am.ignore_higher = ignore_higher; in dlm_dispatch_assert_master() 2053 item->u.am.request_from = request_from; in dlm_dispatch_assert_master() 2054 item->u.am.flags = flags; in dlm_dispatch_assert_master() 2080 res = item->u.am.lockres; in dlm_assert_master_worker() 2081 ignore_higher = item->u.am.ignore_higher; in dlm_assert_master_worker() 2082 request_from = item->u.am.request_from; in dlm_assert_master_worker() 2083 flags = item->u.am.flags; in dlm_assert_master_worker()
|
| /linux/Documentation/devicetree/bindings/scsi/ |
| H A D | hisilicon-sas.txt | 55 "am-max-transmissions" limitation.
|
| /linux/Documentation/devicetree/bindings/sound/ |
| H A D | st,sta32x.txt | 70 - st,am-reduction-mode:
|