Home
last modified time | relevance | path

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

12345678910>>...130

/netbsd/src/sys/arch/x68k/stand/libiocs/
DMakefile13 ASM= b_keyinp.S b_keysns.S b_sftsns.S bitsns.S skeyset.S tvctrl.S \
14 ledmod.S tgusemd.S defchr.S crtmod.S contrast.S hsvtorgb.S tpalet.S \
15 tpalet2.S tcolor.S fntget.S textget.S textput.S clipput.S scroll.S \
16 b_curon.S b_curoff.S b_putc.S b_print.S b_color.S b_locate.S \
17 b_down_s.S b_up_s.S b_up.S b_down.S b_right.S b_left.S b_clr_ed.S \
18 b_clr_st.S b_clr_al.S b_era_ed.S b_era_st.S b_era_al.S b_ins.S \
19 b_del.S b_consol.S b_putmes.S set232c.S lof232c.S inp232c.S \
20 isns232c.S osns232c.S out232c.S joyget.S init_prn.S snsprn.S \
21 outlpt.S outprn.S b_seek.S b_verify.S b_readdi.S b_dskini.S \
22 b_drvsns.S b_write.S b_read.S b_recali.S b_assign.S b_writed.S \
[all …]
/netbsd/src/sys/arch/x68k/stand/libdos/
DMakefile13 SRCS= dos_rename.S
14 SRCS+= dos_cerror.S dos_procerr.S dos_errno.c dos_strerror.S
15 CLEANFILES+= dos_strerror.S
17 ASM= exit.S getchar.S putchar.S cominp.S comout.S prnout.S inpout.S \
18 inkey.S getc.S print.S gets.S keysns.S kflushgp.S kflushio.S \
19 kflushin.S kflushgc.S kflushgs.S fflush.S chgdrv.S drvctrl.S \
20 consns.S prnsns.S cinsns.S coutsns.S fatchk.S fatchk2.S hendspmo.S \
21 hendspmp.S hendspmr.S hendspmc.S hendspio.S hendspip.S hendspir.S \
22 hendspic.S hendspso.S hendspsp.S hendspsr.S hendspsc.S curdrv.S \
23 getss.S fgetc.S fgets.S fputc.S fputs.S allclose.S super.S fnckeygt.S \
[all …]
/netbsd/src/lib/libc/sys/
DMakefile.inc17 SRCS+= __clone.S __vfork14.S brk.S fork.S pipe.S \
18 getcontext.S \
19 ptrace.S sbrk.S shmat.S \
20 syscall.S __syscall.S __clone.S cerror.S
43 . if exists(${glue:.c=.S})
45 SRCS+=${glue:.c=.S}
47 . if exists(__${glue:.c=.S})
48 SRCS+=__${glue:.c=.S} ${glue}
53 ASM_GLUE+= tmp_${glue:.c=.S}
60 . if exists(${glue:.c=.S})
[all …]
/netbsd/src/external/gpl3/gdb/dist/include/opcode/
Dconvex.h43 #define S 2 macro
93 {0,0,rrr,V,S,S}, /* mov */
94 {0,0,rrr,S,S,V}, /* mov */
97 {1,2,rrr,V,S,V}, /* merg.f */
98 {2,2,rrr,V,S,V}, /* mask.f */
99 {1,1,rrr,V,S,V}, /* merg.t */
100 {2,1,rrr,V,S,V}, /* mask.t */
105 {3,3,rrr,V,S,V}, /* mul.s */
106 {3,4,rrr,V,S,V}, /* mul.d */
107 {4,3,rrr,V,S,V}, /* div.s */
[all …]
/netbsd/src/external/gpl3/binutils/dist/include/opcode/
Dconvex.h43 #define S 2 macro
93 {0,0,rrr,V,S,S}, /* mov */
94 {0,0,rrr,S,S,V}, /* mov */
97 {1,2,rrr,V,S,V}, /* merg.f */
98 {2,2,rrr,V,S,V}, /* mask.f */
99 {1,1,rrr,V,S,V}, /* merg.t */
100 {2,1,rrr,V,S,V}, /* mask.t */
105 {3,3,rrr,V,S,V}, /* mul.s */
106 {3,4,rrr,V,S,V}, /* mul.d */
107 {4,3,rrr,V,S,V}, /* div.s */
[all …]
/netbsd/src/external/mit/lua/dist/src/
Dlundump.c44 static l_noret error (LoadState *S, const char *why) { in error() argument
45 luaO_pushfstring(S->L, "%s: bad binary format (%s)", S->name, why); in error()
46 luaD_throw(S->L, LUA_ERRSYNTAX); in error()
54 #define loadVector(S,b,n) loadBlock(S,b,(n)*sizeof((b)[0])) argument
56 static void loadBlock (LoadState *S, void *b, size_t size) { in loadBlock() argument
57 if (luaZ_read(S->Z, b, size) != 0) in loadBlock()
58 error(S, "truncated chunk"); in loadBlock()
62 #define loadVar(S,x) loadVector(S,&x,1) argument
65 static lu_byte loadByte (LoadState *S) { in loadByte() argument
66 int b = zgetc(S->Z); in loadByte()
[all …]
/netbsd/src/usr.bin/vndcompress/
Dvndcompress.c121 struct compress_state *const S = &global_state; in vndcompress() local
124 S->image_fd = -1; in vndcompress()
125 S->cloop2_fd = -1; in vndcompress()
133 compress_init(argc, argv, O, S); in vndcompress()
134 assert(MIN_BLOCKSIZE <= S->blocksize); in vndcompress()
135 assert(S->blocksize <= MAX_BLOCKSIZE); in vndcompress()
146 void *const uncompbuf = malloc(S->blocksize); in vndcompress()
152 void *const compbuf = malloc(2 * (size_t)S->blocksize); in vndcompress()
161 while (S->blkno < S->n_blocks) { in vndcompress()
163 compress_progress(S); in vndcompress()
[all …]
/netbsd/src/sys/arch/amiga/stand/loadkmap/sw/
Dsw-kbdmap.c45 #define S KBD_MODE_STRING macro
133 S, 0x00, /* now it gets hairy.. CRSR UP */
134 S, 0x04, /* CRSR DOWN */
135 S, 0x08, /* CRSR RIGHT */
136 S, 0x0C, /* CRSR LEFT */
137 S, 0x10, /* 0x50 F1 */
138 S, 0x15, /* F2 */
139 S, 0x1A, /* F3 */
140 S, 0x1F, /* F4 */
141 S, 0x24, /* F5 */
[all …]
/netbsd/src/sys/arch/amiga/stand/loadkmap/us/
Dus-kbdmap.c11 #define S KBD_MODE_STRING macro
99 S, 0x00, /* now it gets hairy.. CRSR UP */
100 S, 0x04, /* CRSR DOWN */
101 S, 0x08, /* CRSR RIGHT */
102 S, 0x0C, /* CRSR LEFT */
103 S, 0x10, /* 0x50 F1 */
104 S, 0x15, /* F2 */
105 S, 0x1A, /* F3 */
106 S, 0x1F, /* F4 */
107 S, 0x24, /* F5 */
[all …]
/netbsd/src/sys/arch/amiga/stand/loadkmap/fr/
Dfr-kbdmap.c47 #define S KBD_MODE_STRING macro
135 { S, 0x00 }, /* now it gets hairy.. CRSR UP */
136 { S, 0x04 }, /* CRSR DOWN */
137 { S, 0x08 }, /* CRSR RIGHT */
138 { S, 0x0C }, /* CRSR LEFT */
139 { S, 0x10 }, /* 0x50 F1 */
140 { S, 0x15 }, /* F2 */
141 { S, 0x1A }, /* F3 */
142 { S, 0x1F }, /* F4 */
143 { S, 0x24 }, /* F5 */
[all …]
/netbsd/src/sys/arch/amiga/dev/
Dkbdmap.c42 #define S KBD_MODE_STRING macro
131 { S, 0x00 }, /* now it gets hairy.. CRSR UP */
132 { S, 0x04 }, /* CRSR DOWN */
133 { S, 0x08 }, /* CRSR RIGHT */
134 { S, 0x0C }, /* CRSR LEFT */
135 { S, 0x10 }, /* 0x50 F1 */
136 { S, 0x15 }, /* F2 */
137 { S, 0x1A }, /* F3 */
138 { S, 0x1F }, /* F4 */
139 { S, 0x24 }, /* F5 */
[all …]
/netbsd/src/sys/arch/amiga/stand/loadkmap/pl_us/
Dpl_us-kbdmap.c16 #define S KBD_MODE_STRING macro
104 { S, 0x00 }, /* now it gets hairy.. CRSR UP */
105 { S, 0x04 }, /* CRSR DOWN */
106 { S, 0x08 }, /* CRSR RIGHT */
107 { S, 0x0C }, /* CRSR LEFT */
108 { S, 0x10 }, /* 0x50 F1 */
109 { S, 0x15 }, /* F2 */
110 { S, 0x1A }, /* F3 */
111 { S, 0x1F }, /* F4 */
112 { S, 0x24 }, /* F5 */
[all …]
/netbsd/src/sys/arch/amiga/stand/loadkmap/pl_din/
Dpl_din-kbdmap.c16 #define S KBD_MODE_STRING macro
104 { S, 0x00 }, /* now it gets hairy.. CRSR UP */
105 { S, 0x04 }, /* CRSR DOWN */
106 { S, 0x08 }, /* CRSR RIGHT */
107 { S, 0x0C }, /* CRSR LEFT */
108 { S, 0x10 }, /* 0x50 F1 */
109 { S, 0x15 }, /* F2 */
110 { S, 0x1A }, /* F3 */
111 { S, 0x1F }, /* F4 */
112 { S, 0x24 }, /* F5 */
[all …]
/netbsd/src/sys/arch/amiga/stand/loadkmap/din/
Ddin-kbdmap.c11 #define S KBD_MODE_STRING macro
99 S, 0x00, /* now it gets hairy.. CRSR UP */
100 S, 0x04, /* CRSR DOWN */
101 S, 0x08, /* CRSR RIGHT */
102 S, 0x0C, /* CRSR LEFT */
103 S, 0x10, /* 0x50 F1 */
104 S, 0x15, /* F2 */
105 S, 0x1A, /* F3 */
106 S, 0x1F, /* F4 */
107 S, 0x24, /* F5 */
[all …]
/netbsd/src/sys/arch/amiga/stand/loadkmap/es/
Des-kbdmap.c11 #define S KBD_MODE_STRING macro
99 S, 0x00, /* now it gets hairy.. CRSR UP */
100 S, 0x04, /* CRSR DOWN */
101 S, 0x08, /* CRSR RIGHT */
102 S, 0x0C, /* CRSR LEFT */
103 S, 0x10, /* 0x50 F1 */
104 S, 0x15, /* F2 */
105 S, 0x1A, /* F3 */
106 S, 0x1F, /* F4 */
107 S, 0x24, /* F5 */
[all …]
/netbsd/src/sys/external/bsd/sljit/dist/regex_src/
DregexMain.c46 #define S(str) str macro
48 #define S(str) L##str macro
224 S("text"), S("is textile") },
226 S("^(ab|c)*?d+(es)?"), S("abccabddeses") },
228 S("^a+"), S("saaaa") },
230 S("(a+|b+)$"), S("saabbb") },
232 S("(a+|b+){,2}$"), S("saabbb") },
234 S("(abcde|bc)(a+*|(b|c){2}+){0}"), S("babcdeaaaaaaaa") },
236 S("(abc(aa)?|(cab+){2})"), S("cabcaa") },
238 S("^(abc(aa)?|(cab+){2})$"), S("cabcaa") },
[all …]
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/camellia/asm/
Dcmll-x86_64.pl61 @S=("%r8d","%r9d","%r10d","%r11d");
84 my ($s0,$s1,$s2,$s3)=(@S[($j)%4],@S[($j+1)%4],@S[($j+2)%4],@S[($j+3)%4]);
165 mov 0(%rsi),@S[0] # load plaintext
166 mov 4(%rsi),@S[1]
167 mov 8(%rsi),@S[2]
168 bswap @S[0]
169 mov 12(%rsi),@S[3]
170 bswap @S[1]
171 bswap @S[2]
172 bswap @S[3]
[all …]
/netbsd/src/lib/libm/arch/m68060/
DMakefile.list13 ARCH_SRCS = e_acosf.S e_acos.S e_asinf.S e_asin.S \
14 s_atanf.S s_atan.S e_atanhf.S e_atanh.S \
15 s_cosf.S s_cos.S e_coshf.S e_cosh.S \
16 e_expf.S e_exp.S s_expm1f.S s_expm1.S \
17 e_log10f.S e_log10.S s_logbf.S s_logb.S \
18 e_logf.S e_log.S s_log1pf.S s_log1p.S \
19 s_sinf.S s_sin.S e_sinhf.S e_sinh.S \
20 s_tanf.S k_tanf.S s_tan.S k_tan.S s_tanhf.S s_tanh.S \
21 e_sqrtf.S e_sqrt.S
22 ARCH_ADDS = fplsp_wrap.S
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/whrlpool/
Dwp_block.c506 } S, K, *H = (void *)ctx->H.q; in whirlpool_block() local
517 S.c[i] = (K.c[i] = H->c[i]) ^ p[i]; in whirlpool_block()
528 L[i] ^= C0(S, i) ^ C1(S, (i - 1) & 7) ^ in whirlpool_block()
529 C2(S, (i - 2) & 7) ^ C3(S, (i - 3) & 7) ^ in whirlpool_block()
530 C4(S, (i - 4) & 7) ^ C5(S, (i - 5) & 7) ^ in whirlpool_block()
531 C6(S, (i - 6) & 7) ^ C7(S, (i - 7) & 7); in whirlpool_block()
533 memcpy(S.q, L, 64); in whirlpool_block()
536 H->c[i] ^= S.c[i] ^ p[i]; in whirlpool_block()
542 memcpy(S.c, p, 64); in whirlpool_block()
543 S.q[0] ^= (K.q[0] = H->q[0]); in whirlpool_block()
[all …]
/netbsd/src/sys/arch/x68k/dev/
Dkbdmap.c14 #define S KBD_MODE_STRING macro
82 {S, 0x4a}, /* HOME */
84 {S, 0x43}, /* 0x38 ROLLUP */
85 {S, 0x3e}, /* ROLLDOWN */
86 {S, 0x6a}, /* UNDO */
87 {S, 0x53}, /* CRSR LEFT */
88 {S, 0x5b}, /* CRSR UP */
89 {S, 0x57}, /* CRSR RIGHT */
90 {S, 0x4f}, /* CRSR DOWN */
91 {S, 0x5f}, /* CLR */
[all …]
/netbsd/src/usr.bin/make/unit-tests/
Dvarmod-subst.mk14 .if ${WORDS:S,,,} != ${WORDS}
19 .if ${WORDS:S,e,*,1} != "s*quences of letters"
25 .if ${WORDS:S,f,*,1} != "sequences o* letters"
30 .if ${WORDS:S,e,*,} != "s*quences of l*tters"
35 .if ${WORDS:S,e,*,g} != "s*qu*nc*s of l*tt*rs"
41 .if ${WORDS:S,^sequ,occurr,} != "occurrences of letters"
47 .if ${WORDS:S,^of,with,} != "sequences with letters"
52 .if ${WORDS:S,^office,does not match,} != ${WORDS}
58 .if ${WORDS:S,f$,r,} != "sequences or letters"
63 .if ${WORDS:S,s$,,} != "sequence of letter"
[all …]
/netbsd/src/external/bsd/libarchive/dist/libarchive/
Darchive_blake2sp_ref.c38 static int blake2sp_init_leaf_param( blake2s_state *S, const blake2s_param *P ) in blake2sp_init_leaf_param() argument
40 int err = blake2s_init_param(S, P); in blake2sp_init_leaf_param()
41 S->outlen = P->inner_length; in blake2sp_init_leaf_param()
45 static int blake2sp_init_leaf( blake2s_state *S, size_t outlen, size_t keylen, uint32_t offset ) in blake2sp_init_leaf() argument
59 return blake2sp_init_leaf_param( S, P ); in blake2sp_init_leaf()
62 static int blake2sp_init_root( blake2s_state *S, size_t outlen, size_t keylen ) in blake2sp_init_root() argument
76 return blake2s_init_param( S, P ); in blake2sp_init_root()
80 int blake2sp_init( blake2sp_state *S, size_t outlen ) in blake2sp_init() argument
86 memset( S->buf, 0, sizeof( S->buf ) ); in blake2sp_init()
87 S->buflen = 0; in blake2sp_init()
[all …]
Darchive_blake2s_ref.c45 static void blake2s_set_lastnode( blake2s_state *S ) in blake2s_set_lastnode() argument
47 S->f[1] = (uint32_t)-1; in blake2s_set_lastnode()
51 static int blake2s_is_lastblock( const blake2s_state *S ) in blake2s_is_lastblock() argument
53 return S->f[0] != 0; in blake2s_is_lastblock()
56 static void blake2s_set_lastblock( blake2s_state *S ) in blake2s_set_lastblock() argument
58 if( S->last_node ) blake2s_set_lastnode( S ); in blake2s_set_lastblock()
60 S->f[0] = (uint32_t)-1; in blake2s_set_lastblock()
63 static void blake2s_increment_counter( blake2s_state *S, const uint32_t inc ) in blake2s_increment_counter() argument
65 S->t[0] += inc; in blake2s_increment_counter()
66 S->t[1] += ( S->t[0] < inc ); in blake2s_increment_counter()
[all …]
/netbsd/src/sys/lib/libkern/arch/m68k/
DMakefile.inc3 SRCS+= bswap16.S bswap32.S bswap64.S
4 SRCS+= memcmp.S memcpy.S memmove.S memset.S
5 SRCS+= strcat.S strchr.S strcmp.S
6 SRCS+= strcpy.S strlen.S strncmp.S strncpy.S strrchr.S
7 SRCS+= scanc.S skpc.S
8 SRCS+= htonl.S htons.S ntohl.S ntohs.S
9 SRCS+= ffs.S
12 SRCS+= mulsi3.S divsi3.S udivsi3.S modsi3.S umodsi3.S
15 SRCS+= muldi3.S random.S
/netbsd/src/lib/libc/arch/m68k/hardfloat/
DMakefile.inc3 SRCS+= modf.S
9 SRCS+= adddf3.S addsf3.S cmpdf2.S cmpsf2.S divdf3.S divsf3.S \
10 extendsfdf2.S fixdfsi.S fixunsdfsi.S fixunssfsi.S floatsidf.S \
11 muldf3.S mulsf3.S subdf3.S subsf3.S truncdfsf2.S
13 SRCS+= floatunsidf.S floatunsisf.S
15 SRCS+= lesf2.S ltsf2.S nesf2.S unordsf2.S
16 SRCS+= ledf2.S ltdf2.S nedf2.S unorddf2.S

12345678910>>...130