games/bs/bs.c
1058
used[S/2] = used[N/2] = (!(cpushipcanfit(ts.x,ts.y,cpushortest,S)));
games/bs/bs.c
370
ss->dir = rnd(2) ? E : S;
games/bs/bs.c
372
ss->y = rnd(BDEPTH - (ss->dir == S ? ss->length : 0));
games/bs/bs.c
538
case 'j': case '2': case KEY_DOWN: ss->dir = S; break;
games/bs/bs.c
950
(cpushipcanfit(x,y,length,S)));
include/blf.h
47
u_int32_t S[4][256]; /* S-Boxes */
lib/libc/crypt/blowfish.c
441
c->S[i][k] = datal;
lib/libc/crypt/blowfish.c
442
c->S[i][k + 1] = datar;
lib/libc/crypt/blowfish.c
485
c->S[i][k] = datal;
lib/libc/crypt/blowfish.c
486
c->S[i][k + 1] = datar;
lib/libc/crypt/blowfish.c
61
u_int32_t *s = c->S[0];
lib/libc/crypt/blowfish.c
87
u_int32_t *s = c->S[0];
lib/libc/db/hash/hash.h
168
#define OADDR_OF(S,O) ((u_int32_t)((u_int32_t)(S) << SPLITSHIFT) + (O))
lib/libc/gdtoa/dmisc.c
112
(b, S) Bigint *b, *S;
lib/libc/gdtoa/dmisc.c
114
(Bigint *b, Bigint *S)
lib/libc/gdtoa/dmisc.c
128
n = S->wds;
lib/libc/gdtoa/dmisc.c
135
sx = S->x;
lib/libc/gdtoa/dmisc.c
182
if (cmp(b, S) >= 0) {
lib/libc/gdtoa/dmisc.c
187
sx = S->x;
lib/libc/gdtoa/dtoa.c
126
Bigint *b, *b1, *delta, *mlo, *mhi, *S;
lib/libc/gdtoa/dtoa.c
382
S = mhi = 0;
lib/libc/gdtoa/dtoa.c
446
S = mhi = 0;
lib/libc/gdtoa/dtoa.c
547
S = i2b(1);
lib/libc/gdtoa/dtoa.c
548
if (S == NULL)
lib/libc/gdtoa/dtoa.c
551
S = pow5mult(S, s5);
lib/libc/gdtoa/dtoa.c
552
if (S == NULL)
lib/libc/gdtoa/dtoa.c
584
if (( i = ((s5 ? 32 - hi0bits(S->x[S->wds-1]) : 1) + s2) & 0x1f )!=0)
lib/libc/gdtoa/dtoa.c
587
if (( i = ((s5 ? 32 - hi0bits(S->x[S->wds-1]) : 1) + s2) & 0xf )!=0)
lib/libc/gdtoa/dtoa.c
608
S = lshift(S, s2);
lib/libc/gdtoa/dtoa.c
609
if (S == NULL)
lib/libc/gdtoa/dtoa.c
613
if (cmp(b,S) < 0) {
lib/libc/gdtoa/dtoa.c
627
S = multadd(S,5,0);
lib/libc/gdtoa/dtoa.c
628
if (S == NULL)
lib/libc/gdtoa/dtoa.c
630
if (ilim < 0 || cmp(b,S) <= 0) {
lib/libc/gdtoa/dtoa.c
664
dig = quorem(b,S) + '0';
lib/libc/gdtoa/dtoa.c
669
delta = diff(S, mhi);
lib/libc/gdtoa/dtoa.c
714
j1 = cmp(b, S);
lib/libc/gdtoa/dtoa.c
766
*s++ = dig = quorem(b,S) + '0';
lib/libc/gdtoa/dtoa.c
791
j = cmp(b, S);
lib/libc/gdtoa/dtoa.c
815
Bfree(S);
lib/libc/gdtoa/gdtoa.c
162
Bigint *b, *b1, *delta, *mlo, *mhi, *mhi1, *S;
lib/libc/gdtoa/gdtoa.c
387
S = mhi = 0;
lib/libc/gdtoa/gdtoa.c
454
S = mhi = 0;
lib/libc/gdtoa/gdtoa.c
570
S = i2b(1);
lib/libc/gdtoa/gdtoa.c
571
if (S == NULL)
lib/libc/gdtoa/gdtoa.c
574
S = pow5mult(S, s5);
lib/libc/gdtoa/gdtoa.c
575
if (S == NULL)
lib/libc/gdtoa/gdtoa.c
598
i = ((s5 ? hi0bits(S->x[S->wds-1]) : ULbits - 1) - s2 - 4) & kmask;
lib/libc/gdtoa/gdtoa.c
606
S = lshift(S, s2);
lib/libc/gdtoa/gdtoa.c
607
if (S == NULL)
lib/libc/gdtoa/gdtoa.c
611
if (cmp(b,S) < 0) {
lib/libc/gdtoa/gdtoa.c
625
S = multadd(S,5,0);
lib/libc/gdtoa/gdtoa.c
626
if (S == NULL)
lib/libc/gdtoa/gdtoa.c
628
if (ilim < 0 || cmp(b,S) <= 0) {
lib/libc/gdtoa/gdtoa.c
664
dig = quorem(b,S) + '0';
lib/libc/gdtoa/gdtoa.c
669
delta = diff(S, mhi);
lib/libc/gdtoa/gdtoa.c
700
while (cmp(S,mhi) > 0) {
lib/libc/gdtoa/gdtoa.c
711
dig = quorem(b,S) + '0';
lib/libc/gdtoa/gdtoa.c
722
j1 = cmp(b, S);
lib/libc/gdtoa/gdtoa.c
772
*s++ = dig = quorem(b,S) + '0';
lib/libc/gdtoa/gdtoa.c
790
j = cmp(b, S);
lib/libc/gdtoa/gdtoa.c
815
Bfree(S);
lib/libcrypto/bf/bf_local.h
107
#define BF_ENC(LL,R,S,P) ( \
lib/libcrypto/bf/bf_local.h
109
LL^=((( S[ ((int)(R>>24)&0xff)] + \
lib/libcrypto/bf/bf_local.h
110
S[0x0100+((int)(R>>16)&0xff)])^ \
lib/libcrypto/bf/bf_local.h
111
S[0x0200+((int)(R>> 8)&0xff)])+ \
lib/libcrypto/bf/bf_local.h
112
S[0x0300+((int)(R )&0xff)])&0xffffffffL \
lib/libcrypto/bf/blowfish.c
351
s = &(key->S[0]);
lib/libcrypto/bf/blowfish.c
394
s = &(key->S[0]);
lib/libcrypto/bf/blowfish.c
688
p = key->S;
lib/libcrypto/bf/blowfish.c
84
.S = {
lib/libcrypto/bf/blowfish.h
85
BF_LONG S[4*256];
lib/libcrypto/des/des_local.h
129
#define LOAD_DATA_tmp(R,S,u,t,E0,E1) \
lib/libcrypto/des/des_local.h
130
{ DES_LONG tmp; LOAD_DATA(R,S,u,t,E0,E1,tmp); }
lib/libcrypto/des/des_local.h
132
#define LOAD_DATA(R,S,u,t,E0,E1,tmp) \
lib/libcrypto/des/des_local.h
135
tmp=(u<<16); u^=R^s[S ]; u^=tmp; \
lib/libcrypto/des/des_local.h
136
tmp=(t<<16); t^=R^s[S+1]; t^=tmp
lib/libcrypto/des/des_local.h
139
#define LOAD_DATA(R,S,u,t,E0,E1,tmp) \
lib/libcrypto/des/des_local.h
140
u=R^s[S ]; \
lib/libcrypto/des/des_local.h
141
t=R^s[S+1]
lib/libcrypto/des/des_local.h
144
#define D_ENCRYPT(LL,R,S) { \
lib/libcrypto/des/des_local.h
145
LOAD_DATA_tmp(R,S,u,t,E0,E1); \
lib/libcurses/curses.priv.h
1809
#define toggle_attr_on(S,at) {\
lib/libcurses/curses.priv.h
1811
(S) = ((S) & ALL_BUT_COLOR) | (attr_t) (at);\
lib/libcurses/curses.priv.h
1813
(S) |= (attr_t) (at);\
lib/libcurses/curses.priv.h
1815
TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
lib/libcurses/curses.priv.h
1818
#define toggle_attr_off(S,at) {\
lib/libcurses/curses.priv.h
1820
(S) &= ~(at|A_COLOR);\
lib/libcurses/curses.priv.h
1822
(S) &= ~(at);\
lib/libcurses/curses.priv.h
1824
TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
lib/libcurses/curses.priv.h
1879
#define toggle_attr_on(S,at) _nc_toggle_attr_on(&(S), at)
lib/libcurses/curses.priv.h
1883
#define toggle_attr_off(S,at) _nc_toggle_attr_off(&(S), at)
lib/libelf/_libelf.h
68
#define LIBELF_ADJUST_AR_SIZE(S) (((S) + 1U) & ~1U)
lib/libelf/elf_errmsg.c
40
#define DEFINE_ERROR(N,S) [ELF_E_##N] = S
lib/libelf/libelf_ar_util.c
261
#define READ_AR_HEADER(S, ARH, SZ, END) \
lib/libelf/libelf_ar_util.c
263
if ((S) + sizeof((ARH)) > (END)) \
lib/libelf/libelf_ar_util.c
265
(void) memcpy(&(ARH), (S), sizeof((ARH))); \
lib/libm/src/ld128/e_log10l.c
119
static const long double S[6] =
lib/libm/src/ld128/e_log10l.c
223
y = x * (z * neval (z, R, 5) / deval (z, S, 5));
lib/libm/src/ld128/e_log2l.c
118
static const long double S[6] =
lib/libm/src/ld128/e_log2l.c
217
y = x * (z * neval (z, R, 5) / deval (z, S, 5));
lib/libm/src/ld80/e_log10l.c
106
static long double S[4] = {
lib/libm/src/ld80/e_log10l.c
167
y = x * ( z * __polevll( z, R, 3 ) / __p1evll( z, S, 3 ) );
lib/libm/src/ld80/e_log2l.c
105
static long double S[4] = {
lib/libm/src/ld80/e_log2l.c
163
y = x * ( z * __polevll( z, R, 3 ) / __p1evll( z, S, 3 ) );
lib/libm/src/ld80/e_logl.c
105
static long double S[4] = {
lib/libm/src/ld80/e_logl.c
161
z = x * ( z * __polevll( z, R, 3 ) / __p1evll( z, S, 3 ) );
lib/libm/src/ld80/e_tgammal.c
153
static long double S[9] = {
lib/libm/src/ld80/e_tgammal.c
316
q = z / (x * __polevll( x, S, 8 ));
lib/libm/src/ld80/s_erfl.c
251
long double R, S, P, Q, s, y, z, r;
lib/libm/src/ld80/s_erfl.c
306
S = sa[0] + s * (sa[1] + s * (sa[2] + s * (sa[3] + s * (sa[4] +
lib/libm/src/ld80/s_erfl.c
313
S = sb[0] + s * (sb[1] + s * (sb[2] + s * (sb[3] + s * (sb[4] +
lib/libm/src/ld80/s_erfl.c
321
expl (-z * z - 0.5625) * expl ((z - x) * (z + x) + R / S);
lib/libm/src/ld80/s_erfl.c
333
long double R, S, P, Q, s, y, z, r;
lib/libm/src/ld80/s_erfl.c
392
S = sa[0] + s * (sa[1] + s * (sa[2] + s * (sa[3] + s * (sa[4] +
lib/libm/src/ld80/s_erfl.c
399
S = sb[0] + s * (sb[1] + s * (sb[2] + s * (sb[3] + s * (sb[4] +
lib/libm/src/ld80/s_erfl.c
409
S = sc[0] + s * (sc[1] + s * (sc[2] + s * (sc[3] +
lib/libm/src/ld80/s_erfl.c
418
expl ((z - x) * (z + x) + R / S);
lib/libm/src/ld80/s_log1pl.c
102
static long double S[4] = {
lib/libm/src/ld80/s_log1pl.c
159
z = x * ( z * __polevll( z, R, 3 ) / __p1evll( z, S, 3 ) );
lib/libm/src/s_erf.c
191
double R,S,P,Q,s,y,z,r;
lib/libm/src/s_erf.c
225
S=one+s*(sa1+s*(sa2+s*(sa3+s*(sa4+s*(
lib/libm/src/s_erf.c
230
S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*(
lib/libm/src/s_erf.c
235
r = exp(-z*z-0.5625)*exp((z-x)*(z+x)+R/S);
lib/libm/src/s_erf.c
245
double R,S,P,Q,s,y,z,r;
lib/libm/src/s_erf.c
284
S=one+s*(sa1+s*(sa2+s*(sa3+s*(sa4+s*(
lib/libm/src/s_erf.c
290
S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*(
lib/libm/src/s_erf.c
295
r = exp(-z*z-0.5625) * exp((z-x)*(z+x)+R/S);
lib/libm/src/s_erff.c
133
S=one+s*(sa1+s*(sa2+s*(sa3+s*(sa4+s*(
lib/libm/src/s_erff.c
138
S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*(
lib/libm/src/s_erff.c
143
r = expf(-z*z-(float)0.5625)*expf((z-x)*(z+x)+R/S);
lib/libm/src/s_erff.c
151
float R,S,P,Q,s,y,z,r;
lib/libm/src/s_erff.c
190
S=one+s*(sa1+s*(sa2+s*(sa3+s*(sa4+s*(
lib/libm/src/s_erff.c
196
S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*(
lib/libm/src/s_erff.c
201
r = expf(-z*z-(float)0.5625) * expf((z-x)*(z+x)+R/S);
lib/libm/src/s_erff.c
98
float R,S,P,Q,s,y,z,r;
libexec/ftpd/ftpcmd.y
106
L N P R S T
libexec/ftpd/ftpcmd.y
1413
return (S);
libexec/ftpd/ftpcmd.y
872
: S
regress/lib/libc/db/dbtest.c
80
enum S command, state;
sbin/iked/sntrup761.c
285
static void Decode(uint16 *out,const unsigned char *S,const uint16 *M,long long len)
sbin/iked/sntrup761.c
291
*out = uint32_mod_uint14(S[0],M[0]);
sbin/iked/sntrup761.c
293
*out = uint32_mod_uint14(S[0]+(((uint16)S[1])<<8),M[0]);
sbin/iked/sntrup761.c
305
bottomr[i/2] = S[0]+256*S[1];
sbin/iked/sntrup761.c
306
S += 2;
sbin/iked/sntrup761.c
310
bottomr[i/2] = S[0];
sbin/iked/sntrup761.c
311
S += 1;
sbin/iked/sntrup761.c
321
Decode(R2,S,M2,(len+1)/2);
sbin/iked/sntrup761.c
903
static void XKeyGen(unsigned char *S,Fq *A,small *a)
sbin/iked/sntrup761.c
907
Seeds_random(S);
sbin/iked/sntrup761.c
908
Generator(G,S);
sbin/iked/sntrup761.c
913
static void XEncrypt(Fq *B,int8 *T,const int8 *r,const unsigned char *S,const Fq *A)
sbin/iked/sntrup761.c
918
Generator(G,S);
sbin/shutdown/shutdown.c
80
{ 1 M, 30 S },
sbin/shutdown/shutdown.c
81
{ 30 S, 30 S },
sbin/unwind/libunbound/validator/val_secalgo.c
410
BIGNUM *R, *S;
sbin/unwind/libunbound/validator/val_secalgo.c
419
S = BN_new();
sbin/unwind/libunbound/validator/val_secalgo.c
420
if(!S) return 0;
sbin/unwind/libunbound/validator/val_secalgo.c
421
(void) BN_bin2bn(orig + 21, SHA_DIGEST_LENGTH, S);
sbin/unwind/libunbound/validator/val_secalgo.c
426
if(!DSA_SIG_set0(dsasig, R, S)) {
sbin/unwind/libunbound/validator/val_secalgo.c
433
dsasig->s = S;
sys/arch/alpha/dev/sgmap_typedep.h
38
#define __S(S) __STRING(S)
sys/arch/alpha/pci/pci_bwx_bus_io_chipdep.c
45
#define __S(S) __STRING(S)
sys/arch/alpha/pci/pci_bwx_bus_mem_chipdep.c
53
#define __S(S) __STRING(S)
sys/arch/alpha/pci/pci_swiz_bus_io_chipdep.c
43
#define __S(S) __STRING(S)
sys/arch/alpha/pci/pci_swiz_bus_mem_chipdep.c
44
#define __S(S) __STRING(S)
sys/arch/amd64/amd64/aesni.c
588
aesni_gmac_final(ses, tag, icb, ses->ses_ghash->S);
sys/arch/amd64/amd64/aesni.c
625
bzero(ses->ses_ghash->S, GMAC_BLOCK_LEN);
sys/arch/amd64/amd64/db_disasm.c
1359
case S:
sys/arch/amd64/amd64/db_disasm.c
722
/*8c*/ { "mov", 1, NONE, op2(S, Ew), 0 },
sys/arch/amd64/amd64/db_disasm.c
724
/*8e*/ { "mov", 1, NONE, op2(Ew, S), 0 },
sys/arch/arm64/arm64/disasm.c
3314
OP7FUNC(op_simd_ldstr_reg, size, opc, Rm, option, S, Rn, Rt)
sys/arch/arm64/arm64/disasm.c
3329
if (S == 0) {
sys/arch/i386/i386/db_disasm.c
1280
case S:
sys/arch/i386/i386/db_disasm.c
692
/*8c*/ { "mov", 1, NONE, op2(S, Ew), 0 },
sys/arch/i386/i386/db_disasm.c
694
/*8e*/ { "mov", 1, NONE, op2(Ew, S), 0 },
sys/arch/octeon/dev/octcrypto.c
1137
CTASSERT(offsetof(GHASH_CTX, S) % 8 == 0);
sys/arch/octeon/dev/octcrypto.c
1140
octcrypto_ghash_init((uint64_t *)ghash->H, (uint64_t *)ghash->S);
sys/arch/octeon/dev/octcrypto.c
1142
octcrypto_ghash_finish((uint64_t *)ghash->S);
sys/crypto/blf.c
435
c->S[i][k] = data[0];
sys/crypto/blf.c
436
c->S[i][k + 1] = data[1];
sys/crypto/blf.c
477
c->S[i][k] = d[0];
sys/crypto/blf.c
478
c->S[i][k + 1] = d[1];
sys/crypto/blf.c
59
u_int32_t *s = c->S[0];
sys/crypto/blf.c
84
u_int32_t *s = c->S[0];
sys/crypto/blf.h
48
u_int32_t S[4][256]; /* S-Boxes */
sys/crypto/des_locl.h
88
#define D_ENCRYPT(Q,R,S) {\
sys/crypto/des_locl.h
89
u=(R^s[S ]); \
sys/crypto/des_locl.h
90
t=R^s[S+1]; \
sys/crypto/gmac.c
107
bzero(ctx->ghash.S, GMAC_BLOCK_LEN);
sys/crypto/gmac.c
166
digest[i] = ctx->ghash.S[i] ^ keystream[i];
sys/crypto/gmac.c
79
uint32_t *s = (uint32_t *)ctx->S;
sys/crypto/gmac.c
89
ghash_gfmul((uint32_t *)ctx->S, (uint32_t *)ctx->H,
sys/crypto/gmac.c
90
(uint32_t *)ctx->S);
sys/crypto/gmac.c
96
bcopy(ctx->S, ctx->Z, GMAC_BLOCK_LEN);
sys/crypto/gmac.h
29
uint8_t S[GMAC_BLOCK_LEN]; /* state */
sys/dev/pci/drm/amd/display/dc/dml/dcn21/display_mode_vba_21.c
514
unsigned int pixelsPerClock, lstall, D, initalXmitDelay, w, S, ix, wx, p, l0, a, ax, l,
sys/dev/pci/drm/amd/display/dc/dml/dcn21/display_mode_vba_21.c
539
S = 1;
sys/dev/pci/drm/amd/display/dc/dml/dcn21/display_mode_vba_21.c
541
S = 0;
sys/dev/pci/drm/amd/display/dc/dml/dcn21/display_mode_vba_21.c
555
Delay = l * wx * (numSlices - 1) + ax + S + lstall + 22;
sys/dev/pci/drm/i915/i915_cmd_parser.c
220
CMD( MI_NOOP, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
223
CMD( MI_ARB_CHECK, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
224
CMD( MI_REPORT_HEAD, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
225
CMD( MI_SUSPEND_FLUSH, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
249
CMD( MI_BATCH_BUFFER_START, SMI, !F, 0xFF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
253
CMD( MI_FLUSH, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
255
CMD( MI_PREDICATE, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
256
CMD( MI_TOPOLOGY_FILTER, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
257
CMD( MI_SET_APPID, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
260
CMD( MI_URB_CLEAR, SMI, !F, 0xFF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
286
CMD( GFX_OP_3DSTATE_VF_STATISTICS, S3D, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
287
CMD( PIPELINE_SELECT, S3D, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
294
CMD( GPGPU_OBJECT, S3D, !F, 0xFF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
295
CMD( GPGPU_WALKER, S3D, !F, 0xFF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
296
CMD( GFX_OP_3DSTATE_SO_DECL_LIST, S3D, !F, 0x1FF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
314
CMD( MI_SET_PREDICATE, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
315
CMD( MI_RS_CONTROL, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
316
CMD( MI_URB_ATOMIC_ALLOC, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
317
CMD( MI_SET_APPID, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
318
CMD( MI_RS_CONTEXT, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
323
CMD( MI_RS_STORE_DATA_IMM, SMI, !F, 0xFF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
324
CMD( MI_LOAD_URB_MEM, SMI, !F, 0xFF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
325
CMD( MI_STORE_URB_MEM, SMI, !F, 0xFF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
326
CMD( GFX_OP_3DSTATE_DX9_CONSTANTF_VS, S3D, !F, 0x7FF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
327
CMD( GFX_OP_3DSTATE_DX9_CONSTANTF_PS, S3D, !F, 0x7FF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
329
CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_VS, S3D, !F, 0x1FF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
330
CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_GS, S3D, !F, 0x1FF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
331
CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_HS, S3D, !F, 0x1FF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
332
CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_DS, S3D, !F, 0x1FF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
333
CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_PS, S3D, !F, 0x1FF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
338
CMD( MI_SET_APPID, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
377
CMD( MFX_WAIT, SMFX, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
382
CMD( MI_SET_APPID, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
447
CMD( COLOR_BLT, S2D, !F, 0x3F, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
448
CMD( SRC_COPY_BLT, S2D, !F, 0x3F, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
474
CMD( MI_NOOP, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
475
CMD( MI_USER_INTERRUPT, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
476
CMD( MI_WAIT_FOR_EVENT, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
477
CMD( MI_FLUSH, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
478
CMD( MI_ARB_CHECK, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
479
CMD( MI_REPORT_HEAD, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
480
CMD( MI_ARB_ON_OFF, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
481
CMD( MI_SUSPEND_FLUSH, SMI, F, 1, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
482
CMD( MI_LOAD_SCAN_LINES_INCL, SMI, !F, 0x3F, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
483
CMD( MI_LOAD_SCAN_LINES_EXCL, SMI, !F, 0x3F, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
484
CMD( MI_STORE_DWORD_IMM, SMI, !F, 0x3FF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
487
CMD( MI_UPDATE_GTT, SMI, !F, 0x3FF, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
490
CMD( MI_FLUSH_DW, SMI, !F, 0x3F, S ),
sys/dev/pci/drm/i915/i915_cmd_parser.c
511
CMD(MI_NOOP, SMI, F, 1, S);
sys/dev/pci/if_em.h
255
#define INIT_DEBUGOUT(S) if (DEBUG_INIT) printf(S "\n")
sys/dev/pci/if_em.h
256
#define INIT_DEBUGOUT1(S, A) if (DEBUG_INIT) printf(S "\n", A)
sys/dev/pci/if_em.h
257
#define INIT_DEBUGOUT2(S, A, B) if (DEBUG_INIT) printf(S "\n", A, B)
sys/dev/pci/if_em.h
258
#define IOCTL_DEBUGOUT(S) if (DEBUG_IOCTL) printf(S "\n")
sys/dev/pci/if_em.h
259
#define IOCTL_DEBUGOUT1(S, A) if (DEBUG_IOCTL) printf(S "\n", A)
sys/dev/pci/if_em.h
260
#define IOCTL_DEBUGOUT2(S, A, B) if (DEBUG_IOCTL) printf(S "\n", A, B)
sys/dev/pci/if_em.h
261
#define HW_DEBUGOUT(S) if (DEBUG_HW) printf(S "\n")
sys/dev/pci/if_em.h
262
#define HW_DEBUGOUT1(S, A) if (DEBUG_HW) printf(S "\n", A)
sys/dev/pci/if_em.h
263
#define HW_DEBUGOUT2(S, A, B) if (DEBUG_HW) printf(S "\n", A, B)
sys/dev/pci/if_em_osdep.h
45
#define MSGOUT(S, A, B) printf(S "\n", A, B)
sys/dev/pci/if_em_osdep.h
48
#define DEBUGOUT(S) printf(S "\n")
sys/dev/pci/if_em_osdep.h
49
#define DEBUGOUT1(S,A) printf(S "\n",A)
sys/dev/pci/if_em_osdep.h
50
#define DEBUGOUT2(S,A,B) printf(S "\n",A,B)
sys/dev/pci/if_em_osdep.h
51
#define DEBUGOUT3(S,A,B,C) printf(S "\n",A,B,C)
sys/dev/pci/if_em_osdep.h
52
#define DEBUGOUT7(S,A,B,C,D,E,F,G) printf(S "\n",A,B,C,D,E,F,G)
sys/dev/pci/if_em_osdep.h
54
#define DEBUGOUT(S)
sys/dev/pci/if_em_osdep.h
55
#define DEBUGOUT1(S,A)
sys/dev/pci/if_em_osdep.h
56
#define DEBUGOUT2(S,A,B)
sys/dev/pci/if_em_osdep.h
57
#define DEBUGOUT3(S,A,B,C)
sys/dev/pci/if_em_osdep.h
58
#define DEBUGOUT7(S,A,B,C,D,E,F,G)
sys/dev/pci/if_ix.h
100
#define IOCTL_DEBUGOUT(S) if (DEBUG_IOCTL) printf(S "\n")
sys/dev/pci/if_ix.h
101
#define IOCTL_DEBUGOUT1(S, A) if (DEBUG_IOCTL) printf(S "\n", A)
sys/dev/pci/if_ix.h
102
#define IOCTL_DEBUGOUT2(S, A, B) if (DEBUG_IOCTL) printf(S "\n", A, B)
sys/dev/pci/if_ix.h
103
#define HW_DEBUGOUT(S) if (DEBUG_HW) printf(S "\n")
sys/dev/pci/if_ix.h
104
#define HW_DEBUGOUT1(S, A) if (DEBUG_HW) printf(S "\n", A)
sys/dev/pci/if_ix.h
105
#define HW_DEBUGOUT2(S, A, B) if (DEBUG_HW) printf(S "\n", A, B)
sys/dev/pci/if_ix.h
97
#define INIT_DEBUGOUT(S) if (DEBUG_INIT) printf(S "\n")
sys/dev/pci/if_ix.h
98
#define INIT_DEBUGOUT1(S, A) if (DEBUG_INIT) printf(S "\n", A)
sys/dev/pci/if_ix.h
99
#define INIT_DEBUGOUT2(S, A, B) if (DEBUG_INIT) printf(S "\n", A, B)
sys/dev/pci/if_ixgb.h
180
#define INIT_DEBUGOUT(S) if (DEBUG_INIT) printf(S "\n")
sys/dev/pci/if_ixgb.h
181
#define INIT_DEBUGOUT1(S, A) if (DEBUG_INIT) printf(S "\n", A)
sys/dev/pci/if_ixgb.h
182
#define INIT_DEBUGOUT2(S, A, B) if (DEBUG_INIT) printf(S "\n", A, B)
sys/dev/pci/if_ixgb.h
183
#define IOCTL_DEBUGOUT(S) if (DEBUG_IOCTL) printf(S "\n")
sys/dev/pci/if_ixgb.h
184
#define IOCTL_DEBUGOUT1(S, A) if (DEBUG_IOCTL) printf(S "\n", A)
sys/dev/pci/if_ixgb.h
185
#define IOCTL_DEBUGOUT2(S, A, B) if (DEBUG_IOCTL) printf(S "\n", A, B)
sys/dev/pci/if_ixgb.h
186
#define HW_DEBUGOUT(S) if (DEBUG_HW) printf(S "\n")
sys/dev/pci/if_ixgb.h
187
#define HW_DEBUGOUT1(S, A) if (DEBUG_HW) printf(S "\n", A)
sys/dev/pci/if_ixgb.h
188
#define HW_DEBUGOUT2(S, A, B) if (DEBUG_HW) printf(S "\n", A, B)
sys/dev/pci/if_ixgb_osdep.h
45
#define MSGOUT(S, A, B) printf(S "\n", A, B)
sys/dev/pci/if_ixgb_osdep.h
48
#define DEBUGOUT(S) printf(S "\n")
sys/dev/pci/if_ixgb_osdep.h
49
#define DEBUGOUT1(S,A) printf(S "\n",A)
sys/dev/pci/if_ixgb_osdep.h
50
#define DEBUGOUT2(S,A,B) printf(S "\n",A,B)
sys/dev/pci/if_ixgb_osdep.h
51
#define DEBUGOUT3(S,A,B,C) printf(S "\n",A,B,C)
sys/dev/pci/if_ixgb_osdep.h
52
#define DEBUGOUT7(S,A,B,C,D,E,F,G) printf(S "\n",A,B,C,D,E,F,G)
sys/dev/pci/if_ixgb_osdep.h
54
#define DEBUGOUT(S)
sys/dev/pci/if_ixgb_osdep.h
55
#define DEBUGOUT1(S,A)
sys/dev/pci/if_ixgb_osdep.h
56
#define DEBUGOUT2(S,A,B)
sys/dev/pci/if_ixgb_osdep.h
57
#define DEBUGOUT3(S,A,B,C)
sys/dev/pci/if_ixgb_osdep.h
58
#define DEBUGOUT7(S,A,B,C,D,E,F,G)
sys/dev/pci/ixgbe.h
101
#define DEBUGOUT(S)
sys/dev/pci/ixgbe.h
102
#define DEBUGOUT1(S,A)
sys/dev/pci/ixgbe.h
103
#define DEBUGOUT2(S,A,B)
sys/dev/pci/ixgbe.h
104
#define DEBUGOUT3(S,A,B,C)
sys/dev/pci/ixgbe.h
105
#define DEBUGOUT4(S,A,B,C,D)
sys/dev/pci/ixgbe.h
106
#define DEBUGOUT5(S,A,B,C,D,E)
sys/dev/pci/ixgbe.h
107
#define DEBUGOUT6(S,A,B,C,D,E,F)
sys/dev/pci/ixgbe.h
108
#define DEBUGOUT7(S,A,B,C,D,E,F,G)
sys/dev/pci/ixgbe.h
110
#define ERROR_REPORT1(S,A)
sys/dev/pci/ixgbe.h
111
#define ERROR_REPORT2(S,A,B)
sys/dev/pci/ixgbe.h
112
#define ERROR_REPORT3(S,A,B,C)
sys/dev/pci/ixgbe.h
86
#define MSGOUT(S, A, B) printf(S "\n", A, B)
sys/dev/pci/ixgbe.h
89
#define DEBUGOUT(S) printf(S "\n")
sys/dev/pci/ixgbe.h
90
#define DEBUGOUT1(S,A) printf(S "\n",A)
sys/dev/pci/ixgbe.h
91
#define DEBUGOUT2(S,A,B) printf(S "\n",A,B)
sys/dev/pci/ixgbe.h
92
#define DEBUGOUT3(S,A,B,C) printf(S "\n",A,B,C)
sys/dev/pci/ixgbe.h
93
#define DEBUGOUT4(S,A,B,C,D) printf(S "\n",A,B,C,D)
sys/dev/pci/ixgbe.h
94
#define DEBUGOUT5(S,A,B,C,D,E) printf(S "\n",A,B,C,D,E)
sys/dev/pci/ixgbe.h
95
#define DEBUGOUT6(S,A,B,C,D,E,F) printf(S "\n",A,B,C,D,E,F)
sys/dev/pci/ixgbe.h
96
#define DEBUGOUT7(S,A,B,C,D,E,F,G) printf(S "\n",A,B,C,D,E,F,G)
sys/dev/pci/ixgbe.h
97
#define ERROR_REPORT1(S,A) printf(S "\n",A)
sys/dev/pci/ixgbe.h
98
#define ERROR_REPORT2(S,A,B) printf(S "\n",A,B)
sys/dev/pci/ixgbe.h
99
#define ERROR_REPORT3(S,A,B,C) printf(S "\n",A,B,C)
sys/lib/libsa/blowfish.c
438
c->S[i][k] = datal;
sys/lib/libsa/blowfish.c
439
c->S[i][k + 1] = datar;
sys/lib/libsa/blowfish.c
480
c->S[i][k] = datal;
sys/lib/libsa/blowfish.c
481
c->S[i][k + 1] = datar;
sys/lib/libsa/blowfish.c
62
u_int32_t *s = c->S[0];
sys/lib/libsa/blowfish.c
87
u_int32_t *s = c->S[0];
sys/lib/libsa/blowfish.h
47
u_int32_t S[4][256]; /* S-Boxes */
sys/sys/mount.h
544
#define VFS_SYNC(MP, W, S, C, P) (*(MP)->mnt_op->vfs_sync)(MP, W, S, C, P)
sys/uvm/uvm_amap.h
240
#define AMAP_B2SLOT(S,B) { \
sys/uvm/uvm_amap.h
242
(S) = (B) >> PAGE_SHIFT; \
usr.bin/lam/lam.c
119
int ch, P, S, F, T;
usr.bin/lam/lam.c
126
P = S = F = T = 0; /* capitalized options */
usr.bin/lam/lam.c
160
S = (ch == 'S');
usr.bin/lam/lam.c
180
ip->sepstring = S ? (ip-1)->sepstring : "";
usr.bin/make/cond.c
645
{S("defined"), CondDoDefined},
usr.bin/make/cond.c
646
{S("make"), CondDoMake},
usr.bin/make/cond.c
647
{S("exists"), CondDoExists},
usr.bin/make/cond.c
648
{S("target"), CondDoTarget},
usr.bin/make/cond.c
649
{S("commands"), CondDoTargetWithCommands},
usr.bin/ssh/sntrup761.c
1774
static void Decode(uint16_t *out, const unsigned char *S, const uint16_t *M, long long len) {
usr.bin/ssh/sntrup761.c
1779
*out = uint32_mod_uint14(S[0], M[0]);
usr.bin/ssh/sntrup761.c
1781
*out = uint32_mod_uint14(S[0] + (((uint16_t)S[1]) << 8), M[0]);
usr.bin/ssh/sntrup761.c
1791
bottomr[i / 2] = S[0] + 256 * S[1];
usr.bin/ssh/sntrup761.c
1792
S += 2;
usr.bin/ssh/sntrup761.c
1796
bottomr[i / 2] = S[0];
usr.bin/ssh/sntrup761.c
1797
S += 1;
usr.bin/ssh/sntrup761.c
1806
Decode(R2, S, M2, (len + 1) / 2);
usr.bin/tcpbench/tcpbench.c
410
if (strcmp(ptb->kvars[j], S(v)) == 0) { \
usr.sbin/amd/amd/opts.c
64
{ S("opts"), &fs_static.opt_opts, 0 },
usr.sbin/amd/amd/opts.c
65
{ S("host"), 0, &opt_host },
usr.sbin/amd/amd/opts.c
66
{ S("hostd"), 0, &opt_hostd },
usr.sbin/amd/amd/opts.c
67
{ S("type"), &fs_static.opt_type, 0 },
usr.sbin/amd/amd/opts.c
68
{ S("rhost"), &fs_static.opt_rhost, 0 },
usr.sbin/amd/amd/opts.c
69
{ S("rfs"), &fs_static.opt_rfs, 0 },
usr.sbin/amd/amd/opts.c
70
{ S("fs"), &fs_static.opt_fs, 0 },
usr.sbin/amd/amd/opts.c
71
{ S("key"), 0, &opt_key },
usr.sbin/amd/amd/opts.c
72
{ S("map"), 0, &opt_map },
usr.sbin/amd/amd/opts.c
73
{ S("sublink"), &fs_static.opt_sublink, 0 },
usr.sbin/amd/amd/opts.c
74
{ S("arch"), 0, &arch },
usr.sbin/amd/amd/opts.c
75
{ S("dev"), &fs_static.opt_dev, 0 },
usr.sbin/amd/amd/opts.c
76
{ S("pref"), &fs_static.opt_pref, 0 },
usr.sbin/amd/amd/opts.c
77
{ S("path"), 0, &opt_path },
usr.sbin/amd/amd/opts.c
78
{ S("autodir"), 0, &auto_dir },
usr.sbin/amd/amd/opts.c
79
{ S("delay"), &fs_static.opt_delay, 0 },
usr.sbin/amd/amd/opts.c
80
{ S("domain"), 0, &hostdomain },
usr.sbin/amd/amd/opts.c
81
{ S("karch"), 0, &karch },
usr.sbin/amd/amd/opts.c
82
{ S("cluster"), 0, &cluster },
usr.sbin/amd/amd/opts.c
83
{ S("wire"), 0, &wire },
usr.sbin/amd/amd/opts.c
84
{ S("byte"), 0, &endian },
usr.sbin/amd/amd/opts.c
85
{ S("os"), 0, &op_sys },
usr.sbin/amd/amd/opts.c
86
{ S("remopts"), &fs_static.opt_remopts, 0 },
usr.sbin/amd/amd/opts.c
87
{ S("mount"), &fs_static.opt_mount, 0 },
usr.sbin/amd/amd/opts.c
88
{ S("unmount"), &fs_static.opt_unmount, 0 },
usr.sbin/amd/amd/opts.c
89
{ S("cache"), &fs_static.opt_cache, 0 },
usr.sbin/amd/amd/opts.c
90
{ S("user"), &fs_static.opt_user, 0 },
usr.sbin/amd/amd/opts.c
91
{ S("group"), &fs_static.opt_group, 0 },
usr.sbin/amd/amd/opts.c
92
{ S("var0"), &vars[0], 0 },
usr.sbin/amd/amd/opts.c
93
{ S("var1"), &vars[1], 0 },
usr.sbin/amd/amd/opts.c
94
{ S("var2"), &vars[2], 0 },
usr.sbin/amd/amd/opts.c
95
{ S("var3"), &vars[3], 0 },
usr.sbin/amd/amd/opts.c
96
{ S("var4"), &vars[4], 0 },
usr.sbin/amd/amd/opts.c
97
{ S("var5"), &vars[5], 0 },
usr.sbin/amd/amd/opts.c
98
{ S("var6"), &vars[6], 0 },
usr.sbin/amd/amd/opts.c
99
{ S("var7"), &vars[7], 0 },
usr.sbin/npppd/pptp/pptp_call.c
599
grehdr->S = 1;
usr.sbin/npppd/pptp/pptp_local.h
39
S:1,
usr.sbin/npppd/pptp/pptp_local.h
50
S:1,
usr.sbin/npppd/pptp/pptpd.c
758
if (grehdr->S != 0) {
usr.sbin/npppd/pptp/pptpd.c
931
(grehdr->K != 0)? "K" : "", (grehdr->S != 0)? "S" : "",
usr.sbin/procmap/procmap.c
163
#define KDEREF(kd, item) _KDEREF((kd), A(item), D(item, data), S(item))
usr.sbin/procmap/procmap.c
402
S(vmspace) = sizeof(struct vmspace);
usr.sbin/procmap/procmap.c
407
S(vmspace) = 0;
usr.sbin/procmap/procmap.c
430
S(vm_map) = sizeof(struct vm_map);
usr.sbin/procmap/procmap.c
434
S(vm_map));
usr.sbin/procmap/procmap.c
575
S(&map_ent) = sizeof(struct vm_map_entry);
usr.sbin/procmap/procmap.c
663
S(uvm_obj) = sizeof(struct uvm_object);
usr.sbin/procmap/procmap.c
668
S(uvn) = sizeof(struct uvm_vnode);
usr.sbin/procmap/procmap.c
672
S(vp) = sizeof(struct vnode);
usr.sbin/procmap/procmap.c
679
S(amap) = sizeof(struct vm_amap);
usr.sbin/procmap/procmap.c
687
S(vfs) = sizeof(struct mount);
usr.sbin/procmap/procmap.c
699
S(&data) = sizeof(*D(&data, type)); \
usr.sbin/procmap/procmap.c
904
S(&kdev) = sizeof(struct uvm_device);
usr.sbin/procmap/procmap.c
947
S(&svp) = sizeof(struct vnode);
usr.sbin/unbound/validator/val_secalgo.c
410
BIGNUM *R, *S;
usr.sbin/unbound/validator/val_secalgo.c
419
S = BN_new();
usr.sbin/unbound/validator/val_secalgo.c
420
if(!S) return 0;
usr.sbin/unbound/validator/val_secalgo.c
421
(void) BN_bin2bn(orig + 21, SHA_DIGEST_LENGTH, S);
usr.sbin/unbound/validator/val_secalgo.c
426
if(!DSA_SIG_set0(dsasig, R, S)) {
usr.sbin/unbound/validator/val_secalgo.c
433
dsasig->s = S;