/illumos-gate/usr/src/tools/smatch/src/validation/ |
H A D | repeat.h | 1 #define R0(P, S) P(S) argument 2 #define R1(P, S) R0(P,S##0) R0(P,S##1) argument 3 #define R2(P, S) R0(P,S##0) R0(P,S##1) R0(P,S##2) R0(P,S##3) argument 4 #define R3(P, S) R0(P,S##0) R0(P,S##1) R0(P,S##2) R0(P,S##3) R0(P,S##4) R0(P,S##5) R0(P,S##… argument 5 #define R4(P, S) R3(P,S##0) R3(P,S##1) argument 6 #define R5(P, S) R3(P,S##0) R3(P,S##1) R3(P,S##2) R3(P,S##3) argument 7 #define R6(P, S) R3(P,S##0) R3(P,S##1) R3(P,S##2) R3(P,S##3) R3(P,S##4) R3(P,S##5) R3(P,S##… argument 8 #define R7(P, S) R6(P,S##0) R6(P,S##1) argument 9 #define R8(P, S) R6(P,S##0) R6(P,S##1) R6(P,S##2) R6(P,S##3) argument 10 #define R9(P, S) R6(P,S##0) R6(P,S##1) R6(P,S##2) R6(P,S##3) R6(P,S##4) R6(P,S##5) R6(P,S##… argument [all …]
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/ |
H A D | accessor.c | 48 #define S(FIELD, VAL) .FIELD = VAL in krb5int_accessor() macro 51 #define S(FIELD, VAL) internals_temp.FIELD = VAL in krb5int_accessor() 54 S (free_addrlist, krb5int_free_addrlist), in krb5int_accessor() 55 S (krb5_hmac, krb5_hmac), in krb5int_accessor() 56 S (md5_hash_provider, &krb5int_hash_md5), in krb5int_accessor() 57 S (arcfour_enc_provider, &krb5int_enc_arcfour), in krb5int_accessor() 58 S (sendto_udp, &krb5int_sendto), in krb5int_accessor() 59 S (add_host_to_list, krb5int_add_host_to_list), in krb5int_accessor() 61 S (make_srv_query_realm, krb5int_make_srv_query_realm), in krb5int_accessor() 62 S (free_srv_dns_data, krb5int_free_srv_dns_data), in krb5int_accessor() [all …]
|
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/data/ |
H A D | signals.c | 32 #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("Death of Child"), [all …]
|
/illumos-gate/usr/src/uts/common/fs/zfs/lua/ |
H A D | lundump.c | 30 static l_noret error(LoadState* S, const char* why) in error() argument 32 luaO_pushfstring(S->L,"%s: %s precompiled chunk",S->name,why); in error() 33 luaD_throw(S->L,LUA_ERRSYNTAX); in error() 36 #define LoadMem(S,b,n,size) LoadBlock(S,b,(n)*(size)) argument 37 #define LoadByte(S) (lu_byte)LoadChar(S) argument 38 #define LoadVar(S,x) LoadMem(S,&x,1,sizeof(x)) argument 39 #define LoadVector(S,b,n,size) LoadMem(S,b,n,size) argument 45 static void LoadBlock(LoadState* S, void* b, size_t size) in LoadBlock() argument 47 if (luaZ_read(S->Z,b,size)!=0) error(S,"truncated"); in LoadBlock() 50 static int LoadChar(LoadState* S) in LoadChar() argument [all …]
|
/illumos-gate/usr/src/cmd/sort/ |
H A D | options.c | 202 parse_new_field_spec(sort_t *S, char *arg) in parse_new_field_spec() argument 218 nF = field_new(S); in parse_new_field_spec() 233 if (S->m_verbose) in parse_new_field_spec() 246 field_add_to_chain(&(S->m_fields_head), nF); in parse_new_field_spec() 247 } else if (S->m_verbose) { in parse_new_field_spec() 258 parse_old_field_spec(sort_t *S, int argc, char *argv[]) in parse_old_field_spec() argument 268 nF = field_new(S); in parse_old_field_spec() 288 field_add_to_chain(&(S->m_fields_head), nF); in parse_old_field_spec() 324 field_add_to_chain(&(S->m_fields_head), nF); in parse_old_field_spec() 341 field_add_to_chain(&(S->m_fields_head), nF); in parse_old_field_spec() [all …]
|
H A D | initialize.c | 62 initialize_pre(sort_t *S) in initialize_pre() argument 67 (void) memset(S, 0, sizeof (sort_t)); in initialize_pre() 69 S->m_stats = safe_realloc(NULL, sizeof (sort_statistics_t)); in initialize_pre() 70 __S(stats_init(S->m_stats)); in initialize_pre() 72 S->m_default_species = ALPHA; in initialize_pre() 81 S->m_c_locale = xstreql("C", setlocale(LC_COLLATE, NULL)); in initialize_pre() 82 S->m_single_byte_locale = SGN(MB_CUR_MAX == 1); in initialize_pre() 84 S->m_c_locale = 0; in initialize_pre() 85 S->m_single_byte_locale = 0; in initialize_pre() 123 initialize_post(sort_t *S) in initialize_post() argument [all …]
|
H A D | merge.c | 73 prepare_output_stream(stream_t *ostrp, sort_t *S) in prepare_output_stream() argument 79 (S->m_single_byte_locale ? STREAM_SINGLE : STREAM_WIDE) | in prepare_output_stream() 80 (S->m_unique_lines ? STREAM_UNIQUE : 0)); in prepare_output_stream() 82 if (S->m_output_to_stdout) { in prepare_output_stream() 86 ostrp->s_filename = S->m_output_filename; in prepare_output_stream() 281 merge_n_streams(sort_t *S, stream_t *head_streamp, int n_streams, in merge_n_streams() argument 288 flag_t is_single_byte = S->m_single_byte_locale; in merge_n_streams() 294 2 * S->m_memory_available / DEFAULT_RELEASE_SIZE); in merge_n_streams() 305 stream_open_for_read(S, bot_streamp) == -1) { in merge_n_streams() 325 if (prepare_output_stream(out_streamp, S) != -1) in merge_n_streams() [all …]
|
H A D | convert.c | 38 convert(sort_t *S) in convert() argument 40 stream_t *convert_chain = S->m_input_streams; in convert() 45 coll_convert = S->m_coll_convert; in convert() 47 if (S->m_field_options & FIELD_REVERSE_COMPARISONS) in convert() 52 if (S->m_entire_line) in convert() 58 stream_open_for_read(S, cur_streamp); in convert() 70 (void) coll_convert(S->m_fields_head, in convert() 72 S->m_field_separator); in convert() 104 sort_t S; in main() local 106 initialize_pre(&S); in main() [all …]
|
H A D | main.c | 66 static sort_t S; variable 71 initialize_pre(&S); in main() 73 if (options(&S, argc, argv)) in main() 76 initialize_post(&S); in main() 78 if (S.m_check_if_sorted_only) in main() 79 check_if_sorted(&S); in main() 81 if (!S.m_merge_only) in main() 82 internal_sort(&S); in main() 84 merge(&S); in main()
|
H A D | check.c | 100 check_if_sorted(sort_t *S) in check_if_sorted() argument 112 stream_t *cur_streamp = S->m_input_streams; in check_if_sorted() 119 set_memory_ratio(S, &numerator, &denominator); in check_if_sorted() 121 if (stream_open_for_read(S, cur_streamp) > 1) in check_if_sorted() 141 input_mem = numerator * S->m_memory_available / denominator / 4; in check_if_sorted() 156 if (S->m_field_options & FIELD_REVERSE_COMPARISONS) in check_if_sorted() 160 if (S->m_unique_lines) in check_if_sorted() 175 (void) conversion_fcn(S->m_fields_head, &cur_streamp->s_current, in check_if_sorted() 176 FCV_REALLOC, S->m_field_separator); in check_if_sorted() 186 (void) conversion_fcn(S->m_fields_head, &cur_streamp->s_current, in check_if_sorted() [all …]
|
H A D | invoke.c | 48 display_global_defns(sort_t *S) in display_global_defns() argument 50 if (S->m_field_separator.sc) in display_global_defns() 52 S->m_field_separator.sc); in display_global_defns() 59 sort_t S; in main() local 61 initialize_pre(&S); in main() 63 if (options(&S, argc, argv)) in main() 66 display_global_defns(&S); in main() 67 display_field_defns(S.m_fields_head); in main()
|
/illumos-gate/usr/src/common/ficl/test/ |
H A D | core.fr | 9 \ 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 } 46 { 0S 1S AND -> 0S } 47 { 1S 0S AND -> 0S } 48 { 1S 1S AND -> 1S } 50 { 0S 0S OR -> 0S } [all …]
|
/illumos-gate/usr/src/uts/common/io/ixgbe/ |
H A D | ixgbe_debug.h | 74 #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 …]
|
/illumos-gate/usr/src/test/util-tests/tests/awk/gnu/ |
H A D | wjposer1.in | 6 %S:JOPA/EDFR/VESE 16 %S:JOPA/BRBI 25 %S:MAGO 37 %S:MAGO/BRBI/JOPA/EDFR/VESE/JEKO 47 %S:JOPA 57 %S:VESE/PEJO 69 %S:JOPA 86 %S:EDFR 103 %S:LITM/JOPA/BRBI 115 %S:LITM/JOPA/BRBI/MAGO [all …]
|
H A D | wjposer1.ok | 7 %S:JOPA/EDFR/VESE 18 %S:JOPA/BRBI 28 %S:MAGO 41 %S:MAGO/BRBI/JOPA/EDFR/VESE/JEKO 53 %S:MAGO/BRBI/JOPA/EDFR/VESE/JEKO 65 %S:MAGO/BRBI/JOPA/EDFR/VESE/JEKO 76 %S:JOPA 87 %S:VESE/PEJO 100 %S:JOPA 118 %S:EDFR [all …]
|
/illumos-gate/usr/src/uts/common/smbsrv/ndl/ |
H A D | security.ndl | 96 #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 …]
|
/illumos-gate/usr/src/cmd/sendmail/util/ |
H A D | etrn.pl | 128 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 …]
|
/illumos-gate/usr/src/lib/libm/common/complex/ |
H A D | ctanhf.c | 41 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 D | ctanhl.c | 42 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 D | ctanh.c | 99 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()
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/include/ |
H A D | socket-utils.h | 102 #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
|
/illumos-gate/usr/src/tools/smatch/src/validation/linear/ |
H A D | logical.c | 1 struct S { struct 9 int os(int i, struct S *b) { return i || b->s; } in os() argument 10 int ou(int i, struct S *b) { return i || b->u; } in ou() 11 int ol(int i, struct S *b) { return i || b->l; } in ol() 12 int od(int i, struct S *b) { return i || b->d; } in od() 14 int as(int i, struct S *b) { return i && b->s; } in as() 15 int au(int i, struct S *b) { return i && b->u; } in au() 16 int al(int i, struct S *b) { return i && b->l; } in al() 17 int ad(int i, struct S *b) { return i && b->d; } in ad()
|
/illumos-gate/usr/src/uts/common/sys/fs/ |
H A D | pc_label.h | 103 #define ltohs(S) (*((ushort_t *)(&(S)))) argument 105 #define htols(S) (*((ushort_t *)(&(S)))) argument 111 #define ltohs(S) ((getbyte(S, 1) << 8) | getbyte(S, 0)) 114 #define htols(S) ((getbyte(S, 1) << 8) | getbyte(S, 0))
|
/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | Makefile.am | 12 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 …]
|
/illumos-gate/usr/src/uts/common/io/i40e/ |
H A D | i40e_osdep.h | 30 #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 …]
|