/openbmc/linux/drivers/video/fbdev/ |
H A D | au1200fb.h | 104 #define LCD_BACKCOLOR_SBGG_N(N) ((N)<<8) argument 105 #define LCD_BACKCOLOR_SBGB_N(N) ((N)<<0) argument 117 #define LCD_COLORKEY_CKR_N(N) ((N)<<16) argument 118 #define LCD_COLORKEY_CKG_N(N) ((N)<<8) argument 119 #define LCD_COLORKEY_CKB_N(N) ((N)<<0) argument 134 #define LCD_WINCTRL0_OX_N(N) ((N)<<21) argument 135 #define LCD_WINCTRL0_OY_N(N) ((N)<<10) argument 136 #define LCD_WINCTRL0_A_N(N) ((N)<<2) argument 160 #define LCD_WINCTRL1_PRI_N(N) ((N)<<30) argument 183 #define LCD_WINCTRL2_BX_N(N) ((N)<<8) argument [all …]
|
H A D | au1100fb.h | 176 #define LCD_HORZTIMING_HN2_N(N) ((((N)-1) << LCD_HORZTIMING_HN2_BIT) & LCD_HORZTIMING_HN2_MASK) argument 179 #define LCD_HORZTIMING_HN1_N(N) ((((N)-1) << LCD_HORZTIMING_HN1_BIT) & LCD_HORZTIMING_HN1_MASK) argument 182 #define LCD_HORZTIMING_HPW_N(N) ((((N)-1) << LCD_HORZTIMING_HPW_BIT) & LCD_HORZTIMING_HPW_MASK) argument 185 #define LCD_HORZTIMING_PPL_N(N) ((((N)-1) << LCD_HORZTIMING_PPL_BIT) & LCD_HORZTIMING_PPL_MASK) argument 208 #define LCD_CLKCONTROL_BF_N(N) ((((N)-1) << LCD_CLKCONTROL_BF_BIT) & LCD_CLKCONTROL_BF_MASK) argument 211 #define LCD_CLKCONTROL_PCD_N(N) (((N) << LCD_CLKCONTROL_PCD_BIT) & LCD_CLKCONTROL_PCD_MASK) argument 217 #define LCD_DMA_SA_N(N) ((N) & LCD_DMA_SA_MASK) argument 222 #define LCD_WRD_WRDS_N(N) ((((N)-1) << LCD_WRD_WRDS_BIT) & LCD_WRD_WRDS_MASK) argument 228 #define LCD_PWMDIV_PWMDIV_N(N) ((((N)-1) << LCD_PWMDIV_PWMDIV_BIT) & LCD_PWMDIV_PWMDIV_MASK) argument 233 #define LCD_PWMHI_PWMHI1_N(N) (((N) << LCD_PWMHI_PWMHI1_BIT) & LCD_PWMHI_PWMHI1_MASK) argument [all …]
|
/openbmc/linux/drivers/gpu/drm/kmb/ |
H A D | kmb_regs.h | 296 #define LCD_LAYERn_DMA_START_CR_SHADOW(N) \ argument 457 #define MIPI_TXm_HS_FGn_NUM_LINES(M, N) \ argument 461 #define MIPI_TXm_HS_VSYNC_WIDTHn(M, N) \ argument 465 #define MIPI_TXm_HS_V_BACKPORCHESn(M, N) \ argument 469 #define MIPI_TXm_HS_V_FRONTPORCHESn(M, N) \ argument 473 #define MIPI_TXm_HS_V_ACTIVEn(M, N) \ argument 477 #define MIPI_TXm_HS_HSYNC_WIDTHn(M, N) \ argument 481 #define MIPI_TXm_HS_H_BACKPORCHn(M, N) \ argument 485 #define MIPI_TXm_HS_H_FRONTPORCHn(M, N) \ argument 489 #define MIPI_TXm_HS_H_ACTIVEn(M, N) \ argument [all …]
|
/openbmc/qemu/target/arm/tcg/ |
H A D | mve_helper.c | 821 #define DO_NOT(N) (~(N)) argument 837 #define DO_NEG(N) (-(N)) argument 865 #define DO_MOVI(N, I) (I) argument 962 #define DO_ADD(N, M) ((N) + (M)) argument 963 #define DO_SUB(N, M) ((N) - (M)) argument 964 #define DO_MUL(N, M) ((N) * (M)) argument 2665 #define DO_LT(N, M) ((N) < (M)) argument 2666 #define DO_GT(N, M) ((N) > (M)) argument 2752 #define DO_VQABS_B(N, SATP) \ argument 2754 #define DO_VQABS_H(N, SATP) \ argument [all …]
|
H A D | sve_helper.c | 198 #define DO_AND(N, M) (N & M) argument 199 #define DO_EOR(N, M) (N ^ M) argument 200 #define DO_ORR(N, M) (N | M) argument 201 #define DO_BIC(N, M) (N & ~M) argument 202 #define DO_ADD(N, M) (N + M) argument 203 #define DO_SUB(N, M) (N - M) argument 207 #define DO_MUL(N, M) (N * M) argument 866 #define DO_CNOT(N) (N == 0) argument 885 #define DO_NOT(N) (~N) argument 920 #define DO_NEG(N) (-N) argument [all …]
|
/openbmc/qemu/target/loongarch/ |
H A D | vec.h | 45 #define DO_DIVU(N, M) (unlikely(M == 0) ? 0 : N / M) argument 47 #define DO_DIV(N, M) (unlikely(M == 0) ? 0 :\ argument 49 #define DO_REM(N, M) (unlikely(M == 0) ? 0 :\ argument 56 #define DO_CLO_B(N) (clz32(~N & 0xff) - 24) argument 57 #define DO_CLO_H(N) (clz32(~N & 0xffff) - 16) argument 58 #define DO_CLO_W(N) (clz32(~N)) argument 59 #define DO_CLO_D(N) (clz64(~N)) argument 60 #define DO_CLZ_B(N) (clz32(N) - 24) argument 61 #define DO_CLZ_H(N) (clz32(N) - 16) argument 62 #define DO_CLZ_W(N) (clz32(N)) argument [all …]
|
/openbmc/qemu/tests/tcg/loongarch64/ |
H A D | test_bit.c | 5 #define TEST_CLO(N) \ argument 17 #define TEST_CLZ(N) \ argument 29 #define TEST_CTO(N) \ argument 41 #define TEST_CTZ(N) \ argument
|
H A D | test_div.c | 5 #define TEST_DIV(N, M) \ argument 19 #define TEST_MOD(N, M) \ argument
|
/openbmc/linux/drivers/media/pci/cx88/ |
H A D | cx88-dsp.c | 93 static u32 int_goertzel(s16 x[], u32 N, u32 freq) in int_goertzel() 127 static u32 freq_magnitude(s16 x[], u32 N, u32 freq) in freq_magnitude() 134 static u32 noise_magnitude(s16 x[], u32 N, u32 freq_start, u32 freq_end) in noise_magnitude() 157 static s32 detect_a2_a2m_eiaj(struct cx88_core *core, s16 x[], u32 N) in detect_a2_a2m_eiaj() 224 static s32 detect_btsc(struct cx88_core *core, s16 x[], u32 N) in detect_btsc() 237 static s16 *read_rds_samples(struct cx88_core *core, u32 *N) in read_rds_samples() 275 u32 N = 0; in cx88_dsp_detect_stereo_sap() local
|
/openbmc/linux/include/math-emu/ |
H A D | op-8.h | 34 #define _FP_FRAC_SLL_8(X,N) \ argument 54 #define _FP_FRAC_SRL_8(X,N) \ argument 80 #define _FP_FRAC_SRS_8(X,N,size) \ argument
|
H A D | op-1.h | 36 #define _FP_FRAC_SLL_1(X,N) \ argument 43 #define _FP_FRAC_SRL_1(X,N) (X##_f >>= N) argument 46 #define _FP_FRAC_SRS_1(X,N,sz) __FP_FRAC_SRS_1(X##_f, N, sz) argument 48 #define __FP_FRAC_SRS_1(X,N,sz) \ argument
|
/openbmc/qemu/target/hexagon/ |
H A D | macros.h | 253 #define fVSATUVALN(N, VAL) \ argument 257 #define fSATUVALN(N, VAL) \ argument 262 #define fSATVALN(N, VAL) \ argument 267 #define fVSATVALN(N, VAL) \ argument 273 #define fSATN(N, VAL) \ argument 275 #define fVSATN(N, VAL) \ argument 299 #define fVSATUN(N, VAL) \ argument 301 #define fSATUN(N, VAL) \ argument 595 #define fGETWORD(N, SRC) \ argument 597 #define fGETUWORD(N, SRC) \ argument [all …]
|
/openbmc/linux/tools/include/nolibc/ |
H A D | unistd.h | 59 #define __syscall_narg(_0, _1, _2, _3, _4, _5, _6, N, ...) N argument 61 #define _syscall(N, ...) __sysret(my_syscall##N(__VA_ARGS__)) argument 62 #define _syscall_n(N, ...) _syscall(N, __VA_ARGS__) argument
|
/openbmc/linux/arch/mips/fw/arc/ |
H A D | file.c | 16 ArcRead(ULONG FileID, VOID *Buffer, ULONG N, ULONG *Count) in ArcRead() 22 ArcWrite(ULONG FileID, PVOID Buffer, ULONG N, PULONG Count) in ArcWrite()
|
/openbmc/qemu/tests/tcg/alpha/ |
H A D | test-cond.c | 5 #define TEST_COND(N) \ argument 17 #define TEST_COND(N) \ argument
|
/openbmc/linux/drivers/staging/sm750fb/ |
H A D | ddk750_chip.c | 37 unsigned int M, N, OD, POD; in get_mxclk_freq() local 319 int N, M, X, d; in sm750_calc_pll_value() local 392 unsigned int N = p_PLL->N; in sm750_format_pll_reg() local
|
/openbmc/linux/Documentation/admin-guide/mm/damon/ |
H A D | usage.rst | 186 contexts/<N>/monitoring_attrs/ 226 targets/<N>/regions 458 Example
|
/openbmc/linux/arch/ia64/lib/ |
H A D | memcpy.S | 39 # define N (MEM_LAT + 4) macro 178 # define N (MEM_LAT + 5) /* number of stages */ macro
|
/openbmc/linux/drivers/soundwire/ |
H A D | sysfs_slave_dpn.c | 15 int N; member 167 static int add_all_attributes(struct device *dev, int N, int dir) in add_all_attributes()
|
/openbmc/qemu/linux-user/ |
H A D | gen-vdso.c | 40 #define N 32 macro 48 #define N 64 macro
|
/openbmc/u-boot/board/aspeed/evb_ast2600/ |
H A D | evb_ast2600.c | 58 #define SGPIO_CLK_DIV(N) ((N) << 16) in sgpio_init() argument 59 #define SGPIO_BYTES(N) ((N) << 6) in sgpio_init() argument
|
/openbmc/linux/include/uapi/linux/spi/ |
H A D | spidev.h | 95 #define SPI_MSGSIZE(N) \ argument 98 #define SPI_IOC_MESSAGE(N) _IOW(SPI_IOC_MAGIC, 0, char[SPI_MSGSIZE(N)]) argument
|
/openbmc/u-boot/board/aspeed/ast2600_dcscm/ |
H A D | ast2600_dcscm.c | 58 #define SGPIO_CLK_DIV(N) ((N) << 16) in sgpio_init() argument 59 #define SGPIO_BYTES(N) ((N) << 6) in sgpio_init() argument
|
/openbmc/qemu/target/riscv/ |
H A D | vector_helper.c | 751 #define DO_SWAP(N, M) (M) in GEN_VEXT_LDFF() argument 752 #define DO_AND(N, M) (N & M) in GEN_VEXT_LDFF() argument 753 #define DO_XOR(N, M) (N ^ M) in GEN_VEXT_LDFF() argument 754 #define DO_OR(N, M) (N | M) in GEN_VEXT_LDFF() argument 755 #define DO_ADD(N, M) (N + M) in GEN_VEXT_LDFF() argument 881 #define DO_SUB(N, M) (N - M) argument 882 #define DO_RSUB(N, M) (M - N) argument 1400 #define DO_MSEQ(N, M) (N == M) argument 1402 #define DO_MSLT(N, M) (N < M) argument 1404 #define DO_MSGT(N, M) (N > M) argument [all …]
|
/openbmc/linux/drivers/media/tuners/ |
H A D | tda827x.c | 152 u32 N; in tda827xo_set_params() local 242 u32 N; in tda827xo_set_analog_params() local 512 u32 N; in tda827xa_set_params() local 652 u32 N; in tda827xa_set_analog_params() local
|