/linux/drivers/infiniband/hw/hfi1/ |
A D | mad.h | 319 #define OPA_AM_NPORT(am) (((am) >> OPA_AM_NPORT_SHIFT) & \ argument 325 #define OPA_AM_NBLK(am) (((am) >> OPA_AM_NBLK_SHIFT) & \ argument 332 #define OPA_AM_START_BLK(am) (((am) >> OPA_AM_START_BLK_SHIFT) & \ argument 338 #define OPA_AM_PORTNUM(am) (((am) >> OPA_AM_PORTNUM_SHIFT) & \ argument 344 #define OPA_AM_ASYNC(am) (((am) >> OPA_AM_ASYNC_SHIFT) & \ argument 351 #define OPA_AM_START_SM_CFG(am) (((am) >> OPA_AM_START_SM_CFG_SHIFT) \ argument 357 #define OPA_AM_CI_ADDR(am) (((am) >> OPA_AM_CI_ADDR_SHIFT) & \ argument 363 #define OPA_AM_CI_LEN(am) (((am) >> OPA_AM_CI_LEN_SHIFT) & \ argument
|
A D | mad.c | 985 u32 start_block = am & 0x7ff; in __subn_get_opa_pkeytable() 1684 u32 start_block = am & 0x7ff; in __subn_set_opa_pkeytable() 1885 u32 n_blocks = OPA_AM_NBLK(am); in __subn_get_opa_sc_to_vlt() 2006 u32 nports = OPA_AM_NPORT(am); in __subn_get_opa_psi() 2048 u32 nports = OPA_AM_NPORT(am); in __subn_set_opa_psi() 2097 u32 addr = OPA_AM_CI_ADDR(am); in __subn_get_opa_cable_info() 4003 u32 nport = OPA_AM_NPORT(am); in __subn_get_opa_led_info() 4032 u32 nport = OPA_AM_NPORT(am); in __subn_set_opa_led_info() 4231 u32 am; in subn_get_opa_aggregate() local 4280 u32 am; in subn_set_opa_aggregate() local [all …]
|
/linux/arch/mips/kernel/ |
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/fs/f2fs/ |
A D | gc.c | 198 if (sbi->am.atgc_enabled) in select_gc_type() 375 struct atgc_management *am = &sbi->am; in attach_victim_entry() local 389 am->victim_count++; in attach_victim_entry() 397 struct atgc_management *am = &sbi->am; in insert_victim_entry() local 445 struct atgc_management *am = &sbi->am; in lookup_central_victim() local 458 struct atgc_management *am = &sbi->am; in atgc_lookup_victim() local 534 struct atgc_management *am = &sbi->am; in atssr_lookup_victim() local 619 struct atgc_management *am = &sbi->am; in release_victim_entry() local 625 am->victim_count--; in release_victim_entry() 1820 struct atgc_management *am = &sbi->am; in init_atgc_management() local [all …]
|
/linux/drivers/media/tuners/ |
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()
|
A D | fc0013.c | 216 unsigned char reg[7], am, pm, multi, tmp; in fc0013_set_params() local 360 am = (unsigned char)(xdiv - (8 * pm)); in fc0013_set_params() 362 if (am < 2) { in fc0013_set_params() 363 reg[1] = am + 8; in fc0013_set_params() 366 reg[1] = am; in fc0013_set_params()
|
/linux/Documentation/translations/zh_CN/maintainer/ |
A D | configure-git.rst | 49 通过在git中添加以下钩子,可以将此配置为在发布 ``git am`` 时自动执行: 53 $ git config am.messageid true
|
/linux/drivers/clk/ |
A D | clk-stm32f4.c | 422 struct clk_apb_mul *am = to_clk_apb_mul(hw); in clk_apb_mul_recalc_rate() local 424 if (readl(base + STM32F4_RCC_CFGR) & BIT(am->bit_idx)) in clk_apb_mul_recalc_rate() 433 struct clk_apb_mul *am = to_clk_apb_mul(hw); in clk_apb_mul_round_rate() local 436 if (readl(base + STM32F4_RCC_CFGR) & BIT(am->bit_idx)) in clk_apb_mul_round_rate() 470 struct clk_apb_mul *am; in clk_register_apb_mul() local 474 am = kzalloc(sizeof(*am), GFP_KERNEL); in clk_register_apb_mul() 475 if (!am) in clk_register_apb_mul() 478 am->bit_idx = bit_idx; in clk_register_apb_mul() 479 am->hw.init = &init; in clk_register_apb_mul() 487 clk = clk_register(dev, &am->hw); in clk_register_apb_mul() [all …]
|
/linux/drivers/video/fbdev/core/ |
A D | svgalib.c | 383 u16 am, an, ar; in svga_compute_pll() local 412 am = pll->m_min; in svga_compute_pll() 415 while ((am <= pll->m_max) && (an <= pll->n_max)) { in svga_compute_pll() 416 f_current = (pll->f_base * am) / an; in svga_compute_pll() 421 *m = am; in svga_compute_pll() 426 am ++; in svga_compute_pll()
|
/linux/Documentation/maintainer/ |
A D | configure-git.rst | 50 This can be configured to happen automatically any time you issue ``git am`` 55 $ git config am.messageid true
|
/linux/Documentation/doc-guide/ |
A D | maintainer-profile.rst | 41 I am the sole maintainer for the documentation subsystem, and I am doing
|
/linux/Documentation/translations/zh_CN/process/ |
A D | email-clients.rst | 23 的手册非常好。在接收端,维护人员使用 ``git am`` 加载补丁。 26 标题的原始文本。运行 ``git am raw_email.txt`` ,然后使用 ``git log`` 查看更
|
A D | 7.AdvancedTopics.rst | 109 的作者信息; git “am”工具在这方面做得最好,但是如果补丁通过第三方转发给您,
|
/linux/Documentation/sound/cards/ |
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/Documentation/translations/zh_TW/process/ |
A D | email-clients.rst | 26 的手冊非常好。在接收端,維護人員使用 ``git am`` 加載補丁。 29 標題的原始文本。運行 ``git am raw_email.txt`` ,然後使用 ``git log`` 查看更
|
A D | 7.AdvancedTopics.rst | 112 的作者信息; git 「am」工具在這方面做得最好,但是如果補丁通過第三方轉發給您,
|
/linux/include/uapi/sound/ |
A D | asound_fm.h | 46 unsigned char am; /* amplitude modulation */ member
|
/linux/arch/arm/boot/dts/ |
A D | imx6q-icore-ofcap10.dts | 17 compatible = "ampire,am-1280800n3tzqw-t00h";
|
/linux/include/linux/ |
A D | intel-iommu.h | 359 #define QI_IOTLB_AM(am) (((u8)am) & 0x3f) argument 385 #define QI_EIOTLB_AM(am) (((u64)am) & 0x3f) argument
|
/linux/arch/arm64/boot/dts/rockchip/ |
A D | px30-engicam-px30-core-ctouch2-of10.dts | 28 compatible = "ampire,am-1280800n3tzqw-t00h";
|
/linux/Documentation/devicetree/bindings/media/i2c/ |
A D | max2175.txt | 31 - maxim,am-hiz-filter : empty property indicates the AM Hi-Z filter is used
|
/linux/drivers/vme/ |
A D | vme_bridge.h | 179 unsigned long long address, int am);
|
A D | vme.c | 237 static u32 vme_get_aspace(int am) in vme_get_aspace() argument 239 switch (am) { in vme_get_aspace() 1246 unsigned long long address, int am) in vme_bus_error_handler() argument 1251 u32 aspace = vme_get_aspace(am); in vme_bus_error_handler()
|
/linux/Documentation/devicetree/bindings/display/panel/ |
A D | panel-simple.yaml | 33 - ampire,am-1280800n3tzqw-t00h 35 - ampire,am-480272h3tmqw-t01h 340 compatible = "ampire,am-480272h3tmqw-t01h";
|
/linux/arch/arm/boot/compressed/ |
A D | head-sharpsl.S | 20 #error What am I doing here...
|