Home
last modified time | relevance | path

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

12345678910>>...25

/titanic_44/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_data, krb5int_free_srv_dns_data), in krb5int_accessor()
[all …]
/titanic_44/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_44/usr/src/cmd/sort/common/
H A Doptions.c204 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->m_fields_head), nF); in parse_old_field_spec()
326 field_add_to_chain(&(S->m_fields_head), nF); in parse_old_field_spec()
343 field_add_to_chain(&(S->m_fields_head), nF); in parse_old_field_spec()
[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.c75 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_streamp) == -1) { in merge_n_streams()
327 if (prepare_output_stream(out_streamp, S) != -1) in merge_n_streams()
[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->m_fields_head, &cur_streamp->s_current, in check_if_sorted()
[all …]
H A Dinternal.c311 internal_sort(sort_t *S) in internal_sort() argument
325 set_memory_ratio(S, &numerator, &denominator); in internal_sort()
326 set_cleanup_chain(&S->m_temporary_streams); in internal_sort()
328 if (S->m_field_options & FIELD_REVERSE_COMPARISONS) in internal_sort()
340 if (S->m_entire_line) in internal_sort()
345 cur_stream = S->m_input_streams; in internal_sort()
348 if (stream_open_for_read(S, cur_stream) == -1) in internal_sort()
356 S->m_memory_available) / denominator); in internal_sort()
360 sort_mem = S->m_memory_available - input_mem; in internal_sort()
369 sort_stream->s_element_size = S->m_single_byte_locale ? in internal_sort()
[all …]
/titanic_44/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, A, B, C, D, E, F)
[all …]
/titanic_44/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-1-5-3"
[all …]
/titanic_44/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>) {
185 close(S);
[all …]
/titanic_44/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
/titanic_44/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) * expf(-(x + x)); in ctanhf()
102 (void) sincosf(y, &S, &C); in ctanhf()
108 F_IM(ans) = (r * S) * v; in ctanhf()
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) * expl(-(x + x)); in ctanhl()
105 sincosl(y, &S, &C); in ctanhl()
111 LD_IM(ans) = (r * S) * v; in ctanhl()
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) * exp(-(x + x)); in ctanh()
163 (void) sincos(y, &S, &C); in ctanh()
169 D_IM(ans) = (r * S) * v; in ctanh()
/titanic_44/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, 0))
/titanic_44/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 asm.S common.c char_io.c disk_io.c \
180 ufs_stage1_5_exec_SOURCES = start.S asm.S common.c char_io.c disk_io.c \
189 ufs2_stage1_5_exec_SOURCES = start.S asm.S common.c char_io.c disk_io.c \
198 zfs_stage1_5_exec_SOURCES = start.S asm.S common.c char_io.c disk_io.c \
[all …]
H A DMakefile.solaris611 SRC_FILES = Makefile.am Makefile.in apic.h apm.S asm.S bios.c boot.c \
621 mb_header.h mb_info.h md5.c md5.h nbi.h nbloader.S \
622 pc_slice.h pxeloader.S serial.c serial.h setjmp.S shared.h \
624 start.S start_eltorito.S term.h terminfo.c terminfo.h \
669 $(DISKLESS_ASMOBJS): $$(@:diskless_exec-%.o=%.S)
670 $(CCAS) $(CCASFLAGS) -c -o $@ $(@:diskless_exec-%.o=%.S)
682 $(E2FS_STAGE1_5_ASMOBJS): $$(@:e2fs_stage1_5_exec-%.o=%.S)
683 $(CCAS) $(CCASFLAGS) -c -o $@ $(@:e2fs_stage1_5_exec-%.o=%.S)
695 $(FAT_STAGE1_5_ASMOBJS): $$(@:fat_stage1_5_exec-%.o=%.S)
696 $(CCAS) $(CCASFLAGS) -c -o $@ $(@:fat_stage1_5_exec-%.o=%.S)
[all …]
/titanic_44/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, A, B, C, D)
36 #define DEBUGOUT5(S, A, B, C, D, E) \ argument
37 i40e_debug(NULL, 0, S, A, B, C, D, E)
38 #define DEBUGOUT6(S, A, B, C, D, E, F) \ argument
39 i40e_debug(NULL, 0, S, A, B, C, D, E, F)
[all …]
/titanic_44/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, E) ((S)->cs_dma_ops->cs_dma_start)(E) argument
389 #define CS4231_DMA_STOP(S, E) ((S)->cs_dma_ops->cs_dma_stop)(E) argument
390 #define CS4231_DMA_POWER(S, L) ((S)->cs_dma_ops->cs_dma_power)(S, L) argument
391 #define CS4231_DMA_ATTR(S) ((S)->cs_dma_ops->cs_dma_attr) argument
392 #define CS4231_DMA_RELOAD(S, E) ((S)->cs_dma_ops->cs_dma_reload)(E) argument
393 #define CS4231_DMA_ADDR(S, E) ((S)->cs_dma_ops->cs_dma_addr)(E) argument
/titanic_44/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->N; \
[all …]
/titanic_44/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
/titanic_44/usr/src/cmd/lp/cmd/lpadmin/
H A Ddo_pwheel.c66 if (delpwheel(*S) == -1) { in do_pwheel()
67 LP_ERRMSG1 (WARNING, E_ADM_BADPWHEEL, *S); in do_pwheel()
84 send_message(S_QUIET_ALERT, *S, (char *)QA_PRINTWHEEL, ""); in do_pwheel()
93 LP_ERRMSG1 (WARNING, E_LP_NOQUIET, *S); in do_pwheel()
107 send_message(S_UNLOAD_PRINTWHEEL, *S); in do_pwheel()
110 send_message(S_LOAD_PRINTWHEEL, *S); in do_pwheel()
187 if (putpwheel(*S, ppw) == -1) {
191 *S,

12345678910>>...25