Home
last modified time | relevance | path

Searched refs:S (Results 1 – 25 of 35) sorted by relevance

12

/linux-4.19.296/include/math-emu/
Dsingle.h63 #define FP_UNPACK_RAW_S(X,val) _FP_UNPACK_RAW_1(S,X,val)
64 #define FP_UNPACK_RAW_SP(X,val) _FP_UNPACK_RAW_1_P(S,X,val)
65 #define FP_PACK_RAW_S(val,X) _FP_PACK_RAW_1(S,val,X)
69 _FP_PACK_RAW_1_P(S,val,X); \
74 _FP_UNPACK_RAW_1(S,X,val); \
75 _FP_UNPACK_CANONICAL(S,1,X); \
80 _FP_UNPACK_RAW_1_P(S,X,val); \
81 _FP_UNPACK_CANONICAL(S,1,X); \
86 _FP_PACK_CANONICAL(S,1,X); \
87 _FP_PACK_RAW_1(S,val,X); \
[all …]
Dop-4.h29 #define _FP_FRAC_COPY_4(D,S) \ argument
30 (D##_f[0] = S##_f[0], D##_f[1] = S##_f[1], \
31 D##_f[2] = S##_f[2], D##_f[3] = S##_f[3])
429 #define _FP_SQRT_MEAT_4(R, S, T, X, q) \ argument
433 T##_f[3] = S##_f[3] + q; \
436 S##_f[3] = T##_f[3] + q; \
446 T##_f[2] = S##_f[2] + q; \
447 T##_f[3] = S##_f[3]; \
451 S##_f[2] = T##_f[2] + q; \
452 S##_f[3] += (T##_f[2] > S##_f[2]); \
[all …]
Dop-2.h29 #define _FP_FRAC_COPY_2(D,S) (D##_f0 = S##_f0, D##_f1 = S##_f1) argument
529 #define _FP_SQRT_MEAT_2(R, S, T, X, q) \ argument
533 T##_f1 = S##_f1 + q; \
536 S##_f1 = T##_f1 + q; \
546 T##_f0 = S##_f0 + q; \
547 T##_f1 = S##_f1; \
551 S##_f0 = T##_f0 + q; \
552 S##_f1 += (T##_f0 > S##_f0); \
561 if (S##_f1 < X##_f1 || \
562 (S##_f1 == X##_f1 && S##_f0 < X##_f0)) \
[all …]
Dop-1.h29 #define _FP_FRAC_COPY_1(D,S) (D##_f = S##_f) argument
253 #define _FP_SQRT_MEAT_1(R, S, T, X, q) \ argument
257 T##_f = S##_f + q; \
260 S##_f = T##_f + q; \
269 if (S##_f < X##_f) \
288 #define _FP_FRAC_CONV_1_1(dfs, sfs, D, S) \ argument
290 D##_f = S##_f; \
293 if (S##_c != FP_CLS_NAN) \
Ddouble.h115 #define _FP_SQRT_MEAT_D(R,S,T,X,Q) _FP_SQRT_MEAT_2(R,S,T,X,Q) argument
187 #define _FP_SQRT_MEAT_D(R,S,T,X,Q) _FP_SQRT_MEAT_1(R,S,T,X,Q) argument
Dquad.h121 #define _FP_SQRT_MEAT_Q(R,S,T,X,Q) _FP_SQRT_MEAT_4(R,S,T,X,Q) argument
194 #define _FP_SQRT_MEAT_Q(R,S,T,X,Q) _FP_SQRT_MEAT_2(R,S,T,X,Q) argument
Dop-common.h588 _FP_FRAC_DECL_##wc(T); _FP_FRAC_DECL_##wc(S); \
629 _FP_FRAC_SET_##wc(S, _FP_ZEROFRAC_##wc); \
632 _FP_SQRT_MEAT_##wc(R, S, T, X, q); \
820 #define FP_CONV(dfs,sfs,dwc,swc,D,S) \ argument
822 _FP_FRAC_CONV_##dwc##_##swc(dfs, sfs, D, S); \
823 D##_e = S##_e; \
824 D##_c = S##_c; \
825 D##_s = S##_s; \
/linux-4.19.296/crypto/
Darc4.c25 u32 S[256]; member
39 ctx->S[i] = i; in arc4_set_key()
42 u32 a = ctx->S[i]; in arc4_set_key()
44 ctx->S[i] = ctx->S[j]; in arc4_set_key()
45 ctx->S[j] = a; in arc4_set_key()
56 u32 *const S = ctx->S; in arc4_crypt() local
66 a = S[x]; in arc4_crypt()
68 b = S[y]; in arc4_crypt()
71 S[y] = a; in arc4_crypt()
73 S[x] = b; in arc4_crypt()
[all …]
Dblowfish_common.c306 #define bf_F(x) (((S[GET32_0(x)] + S[256 + GET32_1(x)]) ^ \
307 S[512 + GET32_2(x)]) + S[768 + GET32_3(x)])
318 const u32 *S = bctx->s; in encrypt_block() local
353 u32 *S = ctx->s; in blowfish_setkey() local
360 S[count] = bf_sbox[count]; in blowfish_setkey()
391 S[count] = data[0]; in blowfish_setkey()
392 S[count + 1] = data[1]; in blowfish_setkey()
Dkhazad.c762 const u64 *S = T7; in khazad_setkey() local
787 ctx->D[r] = T0[(int)S[(int)(K1 >> 56) ] & 0xff] ^ in khazad_setkey()
788 T1[(int)S[(int)(K1 >> 48) & 0xff] & 0xff] ^ in khazad_setkey()
789 T2[(int)S[(int)(K1 >> 40) & 0xff] & 0xff] ^ in khazad_setkey()
790 T3[(int)S[(int)(K1 >> 32) & 0xff] & 0xff] ^ in khazad_setkey()
791 T4[(int)S[(int)(K1 >> 24) & 0xff] & 0xff] ^ in khazad_setkey()
792 T5[(int)S[(int)(K1 >> 16) & 0xff] & 0xff] ^ in khazad_setkey()
793 T6[(int)S[(int)(K1 >> 8) & 0xff] & 0xff] ^ in khazad_setkey()
794 T7[(int)S[(int)(K1 ) & 0xff] & 0xff]; in khazad_setkey()
Dblowfish_generic.c36 #define bf_F(x) (((S[GET32_0(x)] + S[256 + GET32_1(x)]) ^ \
37 S[512 + GET32_2(x)]) + S[768 + GET32_3(x)])
47 const u32 *S = ctx->s; in bf_encrypt() local
81 const u32 *S = ctx->s; in bf_decrypt() local
/linux-4.19.296/
DMAINTAINERS92 S: Status, one of the following:
142 S: Odd Fixes
149 S: Maintained
156 S: Supported
162 S: Maintained
170 S: Maintained
178 S: Maintained
184 S: Maintained
190 S: Maintained
197 S: Orphan / Obsolete
[all …]
D.gitignore19 *.dtb.S
/linux-4.19.296/drivers/isdn/hardware/mISDN/
DKconfig15 tristate "Support for HFC multiport cards (HFC-4S/8S/E1)"
22 * HFC-4S (4 S/T interfaces on one chip)
23 * HFC-8S (8 S/T interfaces on one chip)
36 tristate "Support for HFC-S USB based TAs"
40 HFC-S USB ISDN Controller
/linux-4.19.296/drivers/isdn/mISDN/
Ddsp_blowfish.c357 #define bf_F(x) (((S[GET32_0(x)] + S[256 + GET32_1(x)]) ^ \
358 S[512 + GET32_2(x)]) + S[768 + GET32_3(x)])
375 u32 *S = dsp->bf_s; in dsp_bf_encrypt() local
467 u32 *S = dsp->bf_s; in dsp_bf_decrypt() local
563 encrypt_block(const u32 *P, const u32 *S, u32 *dst, u32 *src) in encrypt_block() argument
604 u32 *S = (u32 *)dsp->bf_s; in dsp_bf_init() local
625 S[count] = bf_sbox[count]; in dsp_bf_init()
646 encrypt_block(P, S, data, data); in dsp_bf_init()
654 encrypt_block(P, S, data, data); in dsp_bf_init()
656 S[count] = data[0]; in dsp_bf_init()
[all …]
/linux-4.19.296/drivers/media/dvb-frontends/
DKconfig12 A DVB-S/S2/DSS Multistandard demodulator. Say Y when you want
28 DVB-S/S2/DSS Multistandard Professional/Broadcast demodulators.
36 ST STV0910 DVB-S/S2 demodulator driver.
45 A Silicon tuner that supports DVB-S and DVB-S2 modes
52 A Silicon tuner that supports DVB-S and DVB-S2 modes
61 MaxLinear MxL5xx family of DVB-S/S2 tuners/demodulators.
120 comment "DVB-S (satellite) frontends"
128 A DVB-S tuner module. Say Y when you want to support this frontend.
135 A DVB-S tuner module. Say Y when you want to support this frontend.
142 A DVB-S tuner module. Say Y when you want to support this frontend.
[all …]
Dmb86a16.c418 unsigned char S[3]; in signal_det() local
443 if (mb86a16_read(state, 0x37, &(S[i])) != 2) { in signal_det()
448 if ((S[1] > S[0] * 112 / 100) && (S[1] > S[2] * 112 / 100)) in signal_det()
453 *SIG = S[1]; in signal_det()
/linux-4.19.296/drivers/s390/block/
DKconfig2 comment "S/390 block device drivers"
10 Select this option if you want to use your expanded storage on S/390
32 S/390s channel subsystem commands. This is necessary for running
/linux-4.19.296/drivers/iio/pressure/
Dt5403.c73 s32 S, O, X; in t5403_comp_pressure() local
88 S = T5403_C_U16(3) + (s32) T5403_C_U16(4) * t_r / 0x20000 + in t5403_comp_pressure()
96 X = (S * p_r + O) / 0x4000; in t5403_comp_pressure()
/linux-4.19.296/drivers/isdn/hisax/
DKconfig199 bool "HFC-S based cards"
202 This enables HiSax support for the HFC-S 2BDS0 based cards, like
323 This enables HiSax support for the HFC-S PCI 2BDS0 based cards.
339 bool "HFC-S+, HFC-SP, HFC-PCMCIA cards"
341 This enables HiSax support for the HFC-S+, HFC-SP and HFC-PCMCIA
406 tristate "HFC-4S/8S based ISDN cards"
408 This enables the driver for HFC-4S/8S based ISDN cards.
/linux-4.19.296/drivers/s390/char/
DKconfig2 comment "S/390 character device drivers"
126 prompt "S/390 tape device support"
130 devices on IBM S/390 or zSeries.
138 comment "S/390 tape hardware support"
/linux-4.19.296/include/linux/
Dcompiler_types.h222 #define __section(S) __attribute__((__section__(#S))) argument
/linux-4.19.296/drivers/media/usb/dvb-usb-v2/
DKconfig108 tristate "LME DM04/QQBOX DVB-S USB2.0 support"
120 Say Y here to support the LME DM04/QQBOX DVB-S USB2.0
/linux-4.19.296/fs/exofs/
Dore.c551 u64 S = T * layout->group_count; in ore_calc_stripe_info() local
552 u64 M = div64_u64(file_offset, S); in ore_calc_stripe_info()
558 u64 LmodS = file_offset - M * S; in ore_calc_stripe_info()
586 si->first_stripe_start = M * S + G * T + N * U; in ore_calc_stripe_info()
/linux-4.19.296/fs/befs/
DChangeLog19 * Added Sergey S. Kostyliov's patch to eliminate memcpy() overhead
37 * Sergey S. Kostyliov made befs_find_key() use a binary search to find
39 before. (btree.c) [Sergey S. Kostyliov <rathamahata@php4.ru>]
66 * Compile warning fix for namei.c. [Sergey S. Kostyliov <rathamahata@php4.ru>]

12