Home
last modified time | relevance | path

Searched defs:A (Results 1 – 16 of 16) sorted by relevance

/linux-4.19.296/include/drm/
Ddrm_fixed.h35 #define dfixed_const(A) (u32)(((A) << 12))/* + ((B + 0.000122)*4096)) */ argument
36 #define dfixed_const_half(A) (u32)(((A) << 12) + 2048) argument
37 #define dfixed_const_666(A) (u32)(((A) << 12) + 2731) argument
38 #define dfixed_const_8(A) (u32)(((A) << 12) + 3277) argument
39 #define dfixed_mul(A, B) ((u64)((u64)(A).full * (B).full + 2048) >> 12) argument
40 #define dfixed_init(A) { .full = dfixed_const((A)) } argument
41 #define dfixed_init_half(A) { .full = dfixed_const_half((A)) } argument
42 #define dfixed_trunc(A) ((A).full >> 12) argument
43 #define dfixed_frac(A) ((A).full & ((1 << 12) - 1)) argument
45 static inline u32 dfixed_floor(fixed20_12 A) in dfixed_floor()
[all …]
/linux-4.19.296/lib/
Dsha1.c56 #define SHA_ROUND(t, input, fn, constant, A, B, C, D, E) do { \ argument
62 #define T_0_15(t, A, B, C, D, E) SHA_ROUND(t, SHA_SRC, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument
63 #define T_16_19(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument
64 #define T_20_39(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0x6ed9eba1, A, B, C, D, E ) argument
65 #define T_40_59(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, ((B&C)+(D&(B^C))) , 0x8f1bbcdc, A, B, C, D,… argument
66 #define T_60_79(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0xca62c1d6, A, B, C, D, E ) argument
86 __u32 A, B, C, D, E; in sha_transform() local
Ddynamic_queue_limits.c14 #define POSDIFF(A, B) ((int)((A) - (B)) > 0 ? (A) - (B) : 0) argument
15 #define AFTER_EQ(A, B) ((int)((A) - (B)) >= 0) argument
/linux-4.19.296/fs/squashfs/
Dsquashfs_fs.h143 #define SQUASHFS_INODE_BLK(A) ((unsigned int) ((A) >> 16)) argument
145 #define SQUASHFS_INODE_OFFSET(A) ((unsigned int) ((A) & 0xffff)) argument
147 #define SQUASHFS_MKINODE(A, B) ((long long)(((long long) (A)\ argument
151 #define SQUASHFS_FRAGMENT_BYTES(A) \ argument
154 #define SQUASHFS_FRAGMENT_INDEX(A) (SQUASHFS_FRAGMENT_BYTES(A) / \ argument
157 #define SQUASHFS_FRAGMENT_INDEX_OFFSET(A) (SQUASHFS_FRAGMENT_BYTES(A) % \ argument
160 #define SQUASHFS_FRAGMENT_INDEXES(A) ((SQUASHFS_FRAGMENT_BYTES(A) + \ argument
164 #define SQUASHFS_FRAGMENT_INDEX_BYTES(A) (SQUASHFS_FRAGMENT_INDEXES(A) *\ argument
168 #define SQUASHFS_LOOKUP_BYTES(A) ((A) * sizeof(u64)) argument
170 #define SQUASHFS_LOOKUP_BLOCK(A) (SQUASHFS_LOOKUP_BYTES(A) / \ argument
[all …]
/linux-4.19.296/crypto/
Ddes_generic.c590 #define ROUND(L, R, A, B, K, d) \ argument
809 u32 L, R, A, B; in des_encrypt() local
832 u32 L, R, A, B; in des_decrypt() local
898 u32 L, R, A, B; in des3_ede_encrypt() local
929 u32 L, R, A, B; in des3_ede_decrypt() local
Dkeywrap.c96 __be64 A; member
/linux-4.19.296/fs/jffs2/
Dcompr_rubin.c102 static int encode(struct rubin_state *rs, long A, long B, int symbol) in encode()
200 static int decode(struct rubin_state *rs, long A, long B) in decode()
/linux-4.19.296/drivers/media/dvb-frontends/
Dix2505v.c133 u32 div_factor, N , A, x; in ix2505v_set_params() local
/linux-4.19.296/fs/isofs/
Drock.c25 #define SIG(A,B) ((A) | ((B) << 8)) /* isonum_721() */ argument
/linux-4.19.296/drivers/pci/hotplug/
Dacpiphp_ibm.c44 #define hpslot_to_sun(A) (((struct slot *)((A)->private))->sun) argument
/linux-4.19.296/drivers/isdn/mISDN/
Dlayer2.h48 u_char A; member
/linux-4.19.296/drivers/clk/pxa/
Dclk-pxa27x.c55 #define PXA27x_CCCR(A, L, N2) (A << 25 | N2 << 7 | L) argument
/linux-4.19.296/fs/xfs/libxfs/
Dxfs_attr_leaf.c1785 #define XFS_ATTR_ABS(A) (((A) < 0) ? -(A) : (A)) in xfs_attr3_leaf_figure_balance() argument
/linux-4.19.296/drivers/edac/
Dsb_edac.c425 #define PCI_ID_TABLE_ENTRY(A, N, M, T) { \ argument
2945 char A = *("A"); in sbridge_mce_output_error() local
Di7core_edac.c376 #define PCI_ID_TABLE_ENTRY(A) { .descr=A, .n_devs = ARRAY_SIZE(A) } argument
/linux-4.19.296/fs/ext2/
Dext2.h628 #define A(x,y) BUILD_BUG_ON(x != offsetof(struct ext2_super_block, y)); in verify_offsets() macro