Home
last modified time | relevance | path

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

12345678910>>...30

/titanic_51/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Daccessor.c45 #define S(FIELD, VAL) .FIELD = VAL in krb5int_accessor() macro
48 #define S(FIELD, VAL) internals_temp.FIELD = VAL in krb5int_accessor()
51 S (free_addrlist, krb5int_free_addrlist), in krb5int_accessor()
52 S (krb5_hmac, krb5_hmac), in krb5int_accessor()
53 S (md5_hash_provider, &krb5int_hash_md5), in krb5int_accessor()
54 S (arcfour_enc_provider, &krb5int_enc_arcfour), in krb5int_accessor()
55 S (sendto_udp, &krb5int_sendto), in krb5int_accessor()
56 S (add_host_to_list, krb5int_add_host_to_list), in krb5int_accessor()
58 S (make_srv_query_realm, krb5int_make_srv_query_realm), in krb5int_accessor()
59 S (free_srv_dns_dat in krb5int_accessor()
[all...]
/titanic_51/usr/src/contrib/ast/src/cmd/ksh93/data/
H A Dsignals.c32 #define S(s) ERROR_dictionary(s) macro
43 "ABRT", VAL(SIGABRT,SH_SIGDONE), S("Abort"),
46 "AIO", VAL(SIGAIO,SH_SIGIGNORE), S("Asynchronous I/O"),
49 "ALRM", VAL(SIGALRM,SH_SIGDONE), S("Alarm call"),
52 "ALRM1", VAL(SIGALRM1,SH_SIGDONE), S("Scheduling - reserved"),
55 "APOLLO", VAL(SIGAPOLLO,0), S("SIGAPOLLO"),
58 "BUS", VAL(SIGBUS,SH_SIGDONE), S("Bus error"),
61 "CANCEL", VAL(SIGCANCEL,SH_SIGIGNORE), S("Thread cancellation"),
64 "CHLD", VAL(SIGCHLD,SH_SIGFAULT), S("Death of Child"),
67 "CLD", VAL(SIGCLD,SH_SIGFAULT), S("Deat
[all...]
/titanic_51/usr/src/lib/libshell/common/data/
H A Dsignals.c34 #define S(s) ERROR_dictionary(s) macro
45 "ABRT", VAL(SIGABRT,SH_SIGDONE), S("Abort"),
48 "AIO", VAL(SIGAIO,SH_SIGIGNORE), S("Asynchronous I/O"),
51 "ALRM", VAL(SIGALRM,SH_SIGDONE), S("Alarm call"),
54 "ALRM1", VAL(SIGALRM1,SH_SIGDONE), S("Scheduling - reserved"),
57 "APOLLO", VAL(SIGAPOLLO,0), S("SIGAPOLLO"),
60 "BUS", VAL(SIGBUS,SH_SIGDONE), S("Bus error"),
63 "CANCEL", VAL(SIGCANCEL,SH_SIGIGNORE), S("Thread cancellation"),
66 "CHLD", VAL(SIGCHLD,SH_SIGFAULT), S("Death of Child"),
69 "CLD", VAL(SIGCLD,SH_SIGFAULT), S("Death of Child"),
[all …]
/titanic_51/usr/src/cmd/sort/common/
H A Doptions.c76 #define OPTIONS_STRING "cmuo:T:z:dfiMnrbt:k:S:0123456789"
77 #define OLD_SPEC_OPTIONS_STRING "bdfiMnrcmuo:T:z:t:k:S:"
204 parse_new_field_spec(sort_t *S, char *arg) in parse_new_field_spec() argument
220 nF = field_new(S); in parse_new_field_spec()
235 if (S->m_verbose) in parse_new_field_spec()
248 field_add_to_chain(&(S->m_fields_head), nF); in parse_new_field_spec()
249 } else if (S->m_verbose) { in parse_new_field_spec()
260 parse_old_field_spec(sort_t *S, int argc, char *argv[]) in parse_old_field_spec() argument
270 nF = field_new(S); in parse_old_field_spec()
290 field_add_to_chain(&(S in parse_old_field_spec()
360 options(sort_t * S,int argc,char * argv[]) options() argument
[all...]
H A Dinitialize.c64 initialize_pre(sort_t *S) in initialize_pre() argument
69 (void) memset(S, 0, sizeof (sort_t)); in initialize_pre()
71 S->m_stats = safe_realloc(NULL, sizeof (sort_statistics_t)); in initialize_pre()
72 __S(stats_init(S->m_stats)); in initialize_pre()
74 S->m_default_species = ALPHA; in initialize_pre()
83 S->m_c_locale = xstreql("C", setlocale(LC_COLLATE, NULL)); in initialize_pre()
84 S->m_single_byte_locale = SGN(MB_CUR_MAX == 1); in initialize_pre()
86 S->m_c_locale = 0; in initialize_pre()
87 S->m_single_byte_locale = 0; in initialize_pre()
113 initialize_post(sort_t *S) in initialize_post() argument
[all...]
H A Dconvert.c40 convert(sort_t *S) in convert() argument
42 stream_t *convert_chain = S->m_input_streams; in convert()
47 coll_convert = S->m_coll_convert; in convert()
49 if (S->m_field_options & FIELD_REVERSE_COMPARISONS) in convert()
54 if (S->m_entire_line) in convert()
60 stream_open_for_read(S, cur_streamp); in convert()
72 (void) coll_convert(S->m_fields_head, in convert()
74 S->m_field_separator); in convert()
106 sort_t S; in main() local
108 initialize_pre(&S); in main()
[all...]
H A Dmain.c68 static sort_t S; variable
73 initialize_pre(&S); in main()
75 if (options(&S, argc, argv)) in main()
78 initialize_post(&S); in main()
80 if (S.m_check_if_sorted_only) in main()
81 check_if_sorted(&S); in main()
83 if (!S.m_merge_only) in main()
84 internal_sort(&S); in main()
86 merge(&S); in main()
H A Dmerge.c53 * on the amount of physical memory specified via the -S option (or deemed
75 prepare_output_stream(stream_t *ostrp, sort_t *S) in prepare_output_stream() argument
81 (S->m_single_byte_locale ? STREAM_SINGLE : STREAM_WIDE) | in prepare_output_stream()
82 (S->m_unique_lines ? STREAM_UNIQUE : 0)); in prepare_output_stream()
84 if (S->m_output_to_stdout) { in prepare_output_stream()
88 ostrp->s_filename = S->m_output_filename; in prepare_output_stream()
283 merge_n_streams(sort_t *S, stream_t *head_streamp, int n_streams, in merge_n_streams() argument
290 flag_t is_single_byte = S->m_single_byte_locale; in merge_n_streams()
296 2 * S->m_memory_available / DEFAULT_RELEASE_SIZE); in merge_n_streams()
307 stream_open_for_read(S, bot_stream in merge_n_streams()
426 merge(sort_t * S) merge() argument
[all...]
H A Dinvoke.c50 display_global_defns(sort_t *S) in display_global_defns() argument
52 if (S->m_field_separator.sc) in display_global_defns()
54 S->m_field_separator.sc); in display_global_defns()
61 sort_t S; in main() local
63 initialize_pre(&S); in main()
65 if (options(&S, argc, argv)) in main()
68 display_global_defns(&S); in main()
69 display_field_defns(S.m_fields_head); in main()
H A Dcheck.c102 check_if_sorted(sort_t *S) in check_if_sorted() argument
114 stream_t *cur_streamp = S->m_input_streams; in check_if_sorted()
121 set_memory_ratio(S, &numerator, &denominator); in check_if_sorted()
123 if (stream_open_for_read(S, cur_streamp) > 1) in check_if_sorted()
143 input_mem = numerator * S->m_memory_available / denominator / 4; in check_if_sorted()
158 if (S->m_field_options & FIELD_REVERSE_COMPARISONS) in check_if_sorted()
162 if (S->m_unique_lines) in check_if_sorted()
177 (void) conversion_fcn(S->m_fields_head, &cur_streamp->s_current, in check_if_sorted()
178 FCV_REALLOC, S->m_field_separator); in check_if_sorted()
188 (void) conversion_fcn(S in check_if_sorted()
[all...]
/titanic_51/usr/src/uts/common/io/ixgbe/
H A Dixgbe_debug.h74 #define DEBUGOUT(S) \ argument
75 IXGBE_DEBUGLOG_0(NULL, S)
76 #define DEBUGOUT1(S, A) \ argument
77 IXGBE_DEBUGLOG_1(NULL, S, A)
78 #define DEBUGOUT2(S, A, B) \ argument
79 IXGBE_DEBUGLOG_2(NULL, S, A, B)
80 #define DEBUGOUT3(S, A, B, C) \ argument
81 IXGBE_DEBUGLOG_3(NULL, S, A, B, C)
82 #define DEBUGOUT6(S, A, B, C, D, E, F) \ argument
83 IXGBE_DEBUGLOG_6(NULL, S,
92 ERROR_REPORT1(S,A) global() argument
93 ERROR_REPORT2(S,A,B) global() argument
94 ERROR_REPORT3(S,A,B,C) global() argument
[all...]
/titanic_51/usr/src/common/ficl/test/
H A Dcore.fr9 \ THE PROGRAM ASSUMES A TWO'S COMPLEMENT IMPLEMENTATION WHERE
39 0 CONSTANT 0S
40 0 INVERT CONSTANT 1S
42 { 0S INVERT -> 1S }
43 { 1S INVERT -> 0S }
45 { 0S 0S AND -> 0S }
[all...]
/titanic_51/usr/src/boot/sys/boot/arm/ixp425/boot2/
H A DMakefile17 SRCS=arm_init.S boot2.c ${BOOT_FLAVOR:tl}_board.c
19 SRCS+=strlen.c ashldi3.c divsi3.S muldi3.c
28 OBJS+= ${SRCS:N*.h:R:S/$/.o/g}
29 S=${.CURDIR}/../../../.. macro
43 ldscript.$M: $S/conf/ldscript.$M
44 cat $S/conf/ldscript.$M|sed s/KERNPHYSADDR/${KERNPHYSADDR}/g| \
52 memchr.c: $S/../lib/libc/string/memchr.c
53 sed -e 's/string\.h/lib.h/' < $S/../lib/libc/string/memchr.c > \
56 memmem.c: $S/../lib/libc/string/memmem.c
57 sed -e 's/string\.h/lib.h/' < $S/
[all...]
/titanic_51/usr/src/uts/common/smbsrv/ndl/
H A Dsecurity.ndl96 #define SID_NULL "S-1-0-0"
97 #define SID_WORLD_DOMAIN "S-1-1"
98 #define SID_WORLD "S-1-1-0"
99 #define SID_CREATOR_OWNER_DOMAIN "S-1-3"
100 #define SID_CREATOR_OWNER "S-1-3-0"
101 #define SID_CREATOR_GROUP "S-1-3-1"
102 #define SID_NT_AUTHORITY "S-1-5"
103 #define SID_NT_DIALUP "S-1-5-1"
104 #define SID_NT_NETWORK "S-1-5-2"
105 #define SID_NT_BATCH "S
[all...]
/titanic_51/usr/src/cmd/sendmail/aux/
H A Detrn.pl128 socket(S, &PF_INET, &SOCK_STREAM, $proto)
130 if (connect(S, $sinl)) {
132 print S "quit\n";
135 close(S);
142 close(S);
157 socket(S, &PF_INET, &SOCK_STREAM, $proto)
161 if (! connect(S, $sinr)) {
165 select((select(S), $OUTPUT_AUTOFLUSH = 1)[0]); # don't buffer output to S
169 while (<S>) {
[all...]
/titanic_51/usr/src/lib/gss_mechs/mech_krb5/include/
H A Dsocket-utils.h102 #define sa2sin(S) ((struct sockaddr_in *)(S)) argument
103 #define sa2sin6(S) ((struct sockaddr_in6 *)(S)) argument
104 #define ss2sa(S) ((struct sockaddr *)(S)) argument
105 #define ss2sin(S) ((struct sockaddr_in *)(S)) argument
106 #define ss2sin6(S) ((struct sockaddr_in6 *)(S)) argument
[all...]
/titanic_51/usr/src/lib/libm/common/complex/
H A Dctanhf.c41 float r, u, v, t, x, y, S, C; in ctanhf() local
74 S = sinf(y + y); in ctanhf()
76 (void) sincosf(y, &S, &C); in ctanhf()
77 S = (S + S) * C; in ctanhf()
84 F_IM(ans) = zero * S; /* x is inf */ in ctanhf()
86 F_IM(ans) = S * expf(-x); /* underflow */ in ctanhf()
88 F_IM(ans) = (S + S) * exp in ctanhf()
[all...]
H A Dctanhl.c42 long double r, u, v, t, x, y, S, C; in ctanhl() local
77 S = sinl(y + y); in ctanhl()
79 (void) sincosl(y, &S, &C); in ctanhl()
80 S = (S + S) * C; in ctanhl()
87 LD_IM(ans) = zero * S; /* x is inf */ in ctanhl()
89 LD_IM(ans) = S * expl(-x); /* underflow */ in ctanhl()
91 LD_IM(ans) = (S + S) * exp in ctanhl()
[all...]
H A Dctanh.c99 double t, r, v, u, x, y, S, C; in ctanh() local
134 S = sin(y + y); in ctanh()
136 (void) sincos(y, &S, &C); in ctanh()
137 S = (S + S) * C; in ctanh()
145 D_IM(ans) = zero * S; /* x is inf */ in ctanh()
147 D_IM(ans) = S * exp(-x); /* underflow */ in ctanh()
149 D_IM(ans) = (S + S) * ex in ctanh()
[all...]
/titanic_51/usr/src/uts/common/sys/fs/
H A Dpc_label.h105 #define ltohs(S) (*((ushort_t *)(&(S)))) argument
107 #define htols(S) (*((ushort_t *)(&(S)))) argument
113 #define ltohs(S) ((getbyte(S, 1) << 8) | getbyte(S, 0))
116 #define htols(S) ((getbyte(S, 1) << 8) | getbyte(S,
[all...]
/titanic_51/usr/src/grub/grub-0.97/stage2/
H A DMakefile.am12 EXTRA_DIST = setjmp.S apm.S $(noinst_SCRIPTS)
100 pre_stage2_exec_SOURCES = asm.S bios.c boot.c builtins.c char_io.c \
128 start_exec_SOURCES = start.S
142 start_eltorito_exec_SOURCES = start_eltorito.S
153 e2fs_stage1_5_exec_SOURCES = start.S asm.S common.c char_io.c disk_io.c \
162 fat_stage1_5_exec_SOURCES = start.S asm.S common.c char_io.c disk_io.c \
171 ffs_stage1_5_exec_SOURCES = start.S as
[all...]
/titanic_51/usr/src/uts/common/io/i40e/
H A Di40e_osdep.h30 #define DEBUGOUT(S) i40e_debug(NULL, 0, S) argument
31 #define DEBUGOUT1(S, A) i40e_debug(NULL, 0, S, A) argument
32 #define DEBUGOUT2(S, A, B) i40e_debug(NULL, 0, S, A, B) argument
33 #define DEBUGOUT3(S, A, B, C) i40e_debug(NULL, 0, S, A, B, C) argument
34 #define DEBUGOUT4(S, A, B, C, D) \ argument
35 i40e_debug(NULL, 0, S,
36 DEBUGOUT5(S,A,B,C,D,E) global() argument
38 DEBUGOUT6(S,A,B,C,D,E,F) global() argument
40 DEBUGOUT7(S,A,B,C,D,E,F,G) global() argument
[all...]
/titanic_51/usr/src/uts/sun/io/audio/drv/audiocs/
H A Daudio_4231.h385 #define CS4231_DMA_MAP_REGS(S) ((S)->cs_dma_ops->cs_dma_map_regs)(S) argument
386 #define CS4231_DMA_UNMAP_REGS(S) ((S)->cs_dma_ops->cs_dma_unmap_regs)(S) argument
387 #define CS4231_DMA_RESET(S) ((S)->cs_dma_ops->cs_dma_reset)(S) argument
388 #define CS4231_DMA_START(S, argument
389 CS4231_DMA_STOP(S,E) global() argument
390 CS4231_DMA_POWER(S,L) global() argument
391 CS4231_DMA_ATTR(S) global() argument
392 CS4231_DMA_RELOAD(S,E) global() argument
393 CS4231_DMA_ADDR(S,E) global() argument
[all...]
/titanic_51/usr/src/cmd/stat/kstat/
H A Dkstat.h67 #define SAVE_HRTIME(I, S, N) \ argument
70 v.ui64 = S->N; \
74 #define SAVE_INT32(I, S, N) \ argument
77 v.i32 = S->N; \
81 #define SAVE_UINT32(I, S, N) \ argument
84 v.ui32 = S->N; \
88 #define SAVE_INT64(I, S, N) \ argument
91 v.i64 = S->N; \
95 #define SAVE_UINT64(I, S, N) \ argument
98 v.ui64 = S
106 SAVE_STRING(I,S,N) global() argument
[all...]
/titanic_51/usr/src/lib/libm/i386/src/
H A D__reduction.s35 / 0 S C S/C
36 / 1 C -S -C/S
37 / 2 -S -C S/C
38 / 3 -C S -C/S

12345678910>>...30