Home
last modified time | relevance | path

Searched defs:N (Results 1 – 25 of 219) sorted by relevance

123456789

/openbmc/linux/drivers/video/fbdev/
H A Dau1200fb.h104 #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 Dau1100fb.h176 #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 Dkmb_regs.h296 #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 Dmve_helper.c821 #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 Dsve_helper.c197 #define DO_AND(N, M) (N & M) argument
198 #define DO_EOR(N, M) (N ^ M) argument
199 #define DO_ORR(N, M) (N | M) argument
200 #define DO_BIC(N, M) (N & ~M) argument
201 #define DO_ADD(N, M) (N + M) argument
202 #define DO_SUB(N, M) (N - M) argument
206 #define DO_MUL(N, M) (N * M) argument
865 #define DO_CNOT(N) (N == 0) argument
884 #define DO_NOT(N) (~N) argument
919 #define DO_NEG(N) (-N) argument
[all …]
/openbmc/qemu/target/loongarch/
H A Dvec.h45 #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 Dtest_bit.c5 #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 Dtest_div.c5 #define TEST_DIV(N, M) \ argument
19 #define TEST_MOD(N, M) \ argument
/openbmc/linux/drivers/media/pci/cx88/
H A Dcx88-dsp.c93 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 Dop-8.h34 #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 Dop-1.h36 #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 Dmacros.h256 #define fVSATUVALN(N, VAL) \ argument
260 #define fSATUVALN(N, VAL) \ argument
265 #define fSATVALN(N, VAL) \ argument
270 #define fVSATVALN(N, VAL) \ argument
276 #define fSATN(N, VAL) \ argument
278 #define fVSATN(N, VAL) \ argument
302 #define fVSATUN(N, VAL) \ argument
304 #define fSATUN(N, VAL) \ argument
599 #define fGETWORD(N, SRC) \ argument
601 #define fGETUWORD(N, SRC) \ argument
[all …]
/openbmc/linux/tools/include/nolibc/
H A Dunistd.h59 #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 Dfile.c16 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 Dtest-cond.c5 #define TEST_COND(N) \ argument
17 #define TEST_COND(N) \ argument
/openbmc/linux/drivers/staging/sm750fb/
H A Dddk750_chip.c37 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 Dusage.rst186 contexts/<N>/monitoring_attrs/
226 targets/<N>/regions
458 Example
/openbmc/linux/arch/ia64/lib/
H A Dmemcpy.S39 # define N (MEM_LAT + 4) macro
178 # define N (MEM_LAT + 5) /* number of stages */ macro
/openbmc/linux/drivers/soundwire/
H A Dsysfs_slave_dpn.c15 int N; member
167 static int add_all_attributes(struct device *dev, int N, int dir) in add_all_attributes()
/openbmc/qemu/hw/display/
H A Dtc6393xb.c193 #define SCR_REG_B(N) \ argument
195 #define SCR_REG_W(N) \ argument
198 #define SCR_REG_L(N) \ argument
203 #define SCR_REG_A(N) \ argument
254 #define SCR_REG_B(N) \ argument
256 #define SCR_REG_W(N) \ argument
259 #define SCR_REG_L(N) \ argument
264 #define SCR_REG_A(N) \ argument
/openbmc/qemu/linux-user/
H A Dgen-vdso.c40 #define N 32 macro
48 #define N 64 macro
/openbmc/u-boot/board/aspeed/evb_ast2600/
H A Devb_ast2600.c58 #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 Dspidev.h95 #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 Dast2600_dcscm.c58 #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 Dvector_helper.c542 #define DO_SWAP(N, M) (M) in GEN_VEXT_LDFF() argument
543 #define DO_AND(N, M) (N & M) in GEN_VEXT_LDFF() argument
544 #define DO_XOR(N, M) (N ^ M) in GEN_VEXT_LDFF() argument
545 #define DO_OR(N, M) (N | M) in GEN_VEXT_LDFF() argument
546 #define DO_ADD(N, M) (N + M) in GEN_VEXT_LDFF() argument
655 #define DO_SUB(N, M) (N - M) argument
656 #define DO_RSUB(N, M) (M - N) argument
1162 #define DO_MSEQ(N, M) (N == M) argument
1164 #define DO_MSLT(N, M) (N < M) argument
1166 #define DO_MSGT(N, M) (N > M) argument
[all …]

123456789