Home
last modified time | relevance | path

Searched refs:am (Results 1 – 25 of 88) sorted by relevance

1234

/linux/arch/x86/kernel/cpu/resctrl/
H A Dmonitor.c180 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 Dmad.h318 #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 Dmad.c540 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 Dsegment.c18 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/fs/f2fs/
H A Dgc.c259 if (sbi->am.atgc_enabled) in select_gc_type()
459 struct atgc_management *am = &sbi->am; in __lookup_victim_entry() local
460 struct rb_node *node = am->root.rb_root.rb_node; in __lookup_victim_entry()
477 struct atgc_management *am = &sbi->am; in __create_victim_entry() local
485 list_add_tail(&ve->list, &am->victim_list); in __create_victim_entry()
486 am->victim_count++; in __create_victim_entry()
494 struct atgc_management *am = &sbi->am; in __insert_victim_entry() local
495 struct rb_root_cached *root = &am->root; in __insert_victim_entry()
556 struct atgc_management *am = &sbi->am; in atgc_lookup_victim() local
557 struct rb_root_cached *root = &am->root; in atgc_lookup_victim()
[all …]
/linux/Documentation/translations/zh_CN/
H A Dhow-to.rst301 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 Dfc0012.c125 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 Dfc0013.c152 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 Dconfigure-git.rst49 通过在git中添加以下钩子,可以将此配置为在发布 ``git am`` 时自动执行:
53 $ git config am.messageid true
/linux/drivers/clk/
H A Dclk-stm32f4.c438 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 Dsvgalib.c382 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 Dmaintainer-profile.rst48 I am the sole maintainer for the documentation subsystem, and I am doing
/linux/Documentation/sound/cards/
H A Dmultisound.sh423 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/Documentation/translations/zh_TW/process/
H A Demail-clients.rst27 的手冊非常好。在接收端,維護人員使用 ``git am`` 加載補丁。
30 標題的原始文本。運行 ``git am raw_email.txt`` ,然後使用 ``git log`` 查看更
H A D7.AdvancedTopics.rst112 的作者信息; git “am”工具在這方面做得最好,但是如果補丁通過第三方轉發給您,
H A Dsubmitting-patches.rst607 ``git am`` 而不必擔心衝突::
611 $ git am patches.mbox
/linux/Documentation/translations/zh_CN/process/
H A Demail-clients.rst26 的手册非常好。在接收端,维护人员使用 ``git am`` 加载补丁。
29 标题的原始文本。运行 ``git am raw_email.txt`` ,然后使用 ``git log`` 查看更
H A D7.AdvancedTopics.rst109 的作者信息; git “am”工具在这方面做得最好,但是如果补丁通过第三方转发给您,
/linux/include/uapi/sound/
H A Dasound_fm.h31 unsigned char am; /* amplitude modulation */ member
/linux/arch/arm/boot/dts/nxp/imx/
H A Dimx6q-icore-ofcap10.dts17 compatible = "ampire,am-1280800n3tzqw-t00h";
/linux/arch/arm64/boot/dts/rockchip/
H A Dpx30-engicam-px30-core-ctouch2-of10.dts28 compatible = "ampire,am-1280800n3tzqw-t00h";
/linux/Documentation/devicetree/bindings/media/i2c/
H A Dmaxim,max2175.txt31 - maxim,am-hiz-filter : empty property indicates the AM Hi-Z filter is used
/linux/arch/arm/boot/dts/st/
H A Dstm32mp157a-icore-stm32mp1-ctouch2-of10.dts35 compatible = "ampire,am-1280800n3tzqw-t00h";
/linux/drivers/iommu/intel/
H A Diommu.h411 #define QI_IOTLB_AM(am) (((u8)am) & 0x3f) argument
437 #define QI_EIOTLB_AM(am) (((u64)am) & 0x3f) argument
/linux/drivers/staging/vme_user/
H A Dvme_bridge.h180 void vme_bus_error_handler(struct vme_bridge *bridge, unsigned long long address, int am);

1234