/illumos-gate/usr/src/test/util-tests/tests/libjedec/hex2spd/data/ddr4/ |
H A D | M386AAK40B40-CWD70.spd | 11 0000: 23 12 0C 04 85 29 B2 08 00 60 00 03 08 0B 80 00 14 0030: 00 00 00 00 00 00 00 00 00 00 00 00 0B 0B 0B 0B 15 0040: 0B 0B 0B 0B 0B 0B 0B 0B 0B 0B 0B 0B 0B 0B 00 00 26 00F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 2B 3F 31 0140: 80 CE 00 23 24 BA AD CA FE 4D 33 38 36 41 41 4B
|
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/ |
H A D | TEST.mk | 32 local B G P S T 39 B := $(P:B) 41 T := $(B) 45 test.$$(T) : $$(B).tst 47 :SAVE: $$(B).tst 50 B := $(P:B) 52 T := $(B) 54 :INSTALLDIR: $(B) 55 $(B) :: $(P) $(*:-l*|*$(CC.SUFFIX.ARCHIVE)) 58 $(B) : (TESTCC) [all …]
|
H A D | package.mk | 174 R += $(T:D=$(PACKAGESRC)/LICENSES:B) 177 R += $(F:T=I:N=*.def:D=$(PACKAGESRC):B:S:T=F) 1047 $(SUM) -x $(checksum) < $(source) > $(source:D:B:S=.$(checksum)) 1048 echo local > $(source:D:B=$(name):S=.tim) 1051 $(SUM) -x $(checksum) < $(old.new.source) > $(old.new.source:D:B:S=.$(checksum)) 1081 $(SUM) -x $(checksum) < $(source) > $(source:D:B:S=.$(checksum)) 1083 echo local > $(source:D:B=$(name):S=.tim) 1090 local A B D I P V 1105 B := $(A:N=*.$(stamp).$(CC.HOSTTYPE).$(suffix):N!=*.$(stamp).$(stamp).*:O=1:T=F) 1109 if ! B [all …]
|
/illumos-gate/usr/src/contrib/mDNSResponder/mDNSCore/ |
H A D | DNSDigest.c | 252 ll=(c)->B; HOST_l2c(ll,(s)); \ 936 c->B=INIT_DATA_B; in MD5_Init() 949 register unsigned MD32_REG_T A,B,C,D; in md5_block_host_order() local 952 B=c->B; in md5_block_host_order() 959 R0(A,B,C,D,X[ 0], 7,0xd76aa478L); in md5_block_host_order() 960 R0(D,A,B,C,X[ 1],12,0xe8c7b756L); in md5_block_host_order() 961 R0(C,D,A,B,X[ 2],17,0x242070dbL); in md5_block_host_order() 962 R0(B,C,D,A,X[ 3],22,0xc1bdceeeL); in md5_block_host_order() 963 R0(A,B,C,D,X[ 4], 7,0xf57c0fafL); in md5_block_host_order() 964 R0(D,A,B,C,X[ 5],12,0x4787c62aL); in md5_block_host_order() [all …]
|
/illumos-gate/usr/src/lib/libdtrace/common/ |
H A D | io.d.in | 64 translator bufinfo_t < struct buf *B > { 65 b_flags = B->b_flags; 66 b_addr = B->b_un.b_addr; 67 b_bcount = B->b_bcount; 68 b_lblkno = B->_b_blkno._f; 69 b_blkno = sizeof (long) == 8 ? B->_b_blkno._f : B->_b_blkno._p._l; 70 b_resid = B->b_resid; 71 b_bufsize = B->b_bufsize; 72 b_iodone = (caddr_t)B->b_iodone; 73 b_error = B->b_error; [all …]
|
/illumos-gate/usr/src/cmd/ast/libshell/common/tests/ |
H A D | sun_solaris_cr_6713682_compound_var_bleeds_through_subshell.sh | 90 var1="$(${SHELL} -c 'unset l ; ( l=( a=1 b="BE" ) ; printf "%B\n" l ) ; printf "%B\n"… 91 var2="$(${SHELL} -c 'unset l ; ( ulimit -c 0 ; l=( a=1 b="BE" ) ; printf "%B\n" l ) ; printf "%B\n"… 95 var1="$(${SHELL} -c '( l=( a=1 b="BE" ) ; printf "%B\n" l) ; printf "%B\n" l')" || er… 96 var2="$(${SHELL} -c '( ulimit -c 0 ; l=( a=1 b="BE" ) ; printf "%B\n" l) ; printf "%B\n" l')" || er… 100 …nset l ; ( compound l ; l.a=1 ; l.b="BE" ; printf "%B\n" l) ; printf "%B\n" l')" || … 101 …nset l ; ( ulimit -c 0 ; compound l ; l.a=1 ; l.b="BE" ; printf "%B\n" l) ; printf "%B\n" l')" || … 105 var1="$(${SHELL} -c '( compound l ; l.a=1 ; l.b="BE" ; printf "%B\n" l) ; printf "%B\n" l')"… 106 var2="$(${SHELL} -c '( ulimit -c 0 ; compound l ; l.a=1 ; l.b="BE" ; printf "%B\n" l) ; printf "%B\…
|
/illumos-gate/usr/src/tools/smatch/src/validation/ |
H A D | constexpr-init.c | 10 struct B { struct 15 static struct B d= {1, {1, {1, 1}}}; // OK argument 16 static struct B e= {a, {1, {1, 1}}}; // KO 17 static struct B f= {1, {a, {1, 1}}}; // KO 18 static struct B g= {1, {1, {a, 1}}}; // KO 19 static struct B h= {1, {1, {1, a}}}; // KO 20 static struct B i= {.c = 1, .d = {.a = 1, .b = {1, 1}}}; // OK 21 static struct B j= {.c = a, .d = {.a = 1, .b = {1, 1}}}; // KO 22 static struct B k= {.c = 1, .d = {.a = a, .b = {1, 1}}}; // KO 23 static struct B l= {.c = 1, .d = {.a = 1, .b = {a, 1}}}; // KO [all …]
|
/illumos-gate/usr/src/contrib/ast/lib/package/ |
H A D | package.mk | 174 R += $(T:D=$(PACKAGESRC)/LICENSES:B) 177 R += $(F:T=I:N=*.def:D=$(PACKAGESRC):B:S:T=F) 1047 $(SUM) -x $(checksum) < $(source) > $(source:D:B:S=.$(checksum)) 1048 echo local > $(source:D:B=$(name):S=.tim) 1051 $(SUM) -x $(checksum) < $(old.new.source) > $(old.new.source:D:B:S=.$(checksum)) 1081 $(SUM) -x $(checksum) < $(source) > $(source:D:B:S=.$(checksum)) 1083 echo local > $(source:D:B=$(name):S=.tim) 1090 local A B D I P V 1105 B := $(A:N=*.$(stamp).$(CC.HOSTTYPE).$(suffix):N!=*.$(stamp).$(stamp).*:O=1:T=F) 1109 if ! B [all …]
|
/illumos-gate/usr/src/uts/common/io/ixgbe/ |
H A D | ixgbe_debug.h | 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) 93 #define ERROR_REPORT2(S, A, B) DEBUGOUT1(S ":" A, B) argument 94 #define ERROR_REPORT3(S, A, B, C) DEBUGOUT2(S ":" A, B, C) argument 100 #define DEBUGOUT2(S, A, B) 101 #define DEBUGOUT3(S, A, B, C) [all …]
|
/illumos-gate/usr/src/cmd/spell/ |
H A D | spellin.c | 41 #define B (BYTE * sizeof (unsigned)) macro 45 int bp = B; /* bit pointer */ 53 table[wp] |= w1>>(B-bp); in append() 60 bp = B; in append() 114 if (bp != B) in main() 116 bp = B; in main() 129 if (i > B) { in main() 130 if (!(append((unsigned)(w1>>(long)(i-B)), B) && in main() 131 append((unsigned)(w1<<(long)(B+B-i)), in main() 132 i-B))) in main() [all …]
|
H A D | hashlook.c | 38 #define B (BYTE * sizeof (unsigned)) macro 44 (((((long)wp[0]<<B)|wp[1])<<(B-bp))|(wp[2]>>bp)) 46 #define fetch(wp, bp) ((wp[0] << (B - bp)) | (wp[1] >> bp)) 63 bp = B; in hashlook() 81 y = wp[0] << (B - bp); in hashlook() 96 bp += B; in hashlook() 99 if (wp >= tp && (wp > tp||bp < B)) in hashlook()
|
/illumos-gate/usr/src/uts/common/fs/zfs/lua/ |
H A D | lauxlib.c | 392 #define buffonstack(B) ((B)->b != (B)->initb) argument 398 LUALIB_API char *luaL_prepbuffsize (luaL_Buffer *B, size_t sz) { in luaL_prepbuffsize() argument 399 lua_State *L = B->L; in luaL_prepbuffsize() 400 if (B->size - B->n < sz) { /* not enough space? */ in luaL_prepbuffsize() 402 size_t newsize = B->size * 2; /* double buffer size */ in luaL_prepbuffsize() 403 if (newsize - B->n < sz) /* not big enough? */ in luaL_prepbuffsize() 404 newsize = B->n + sz; in luaL_prepbuffsize() 405 if (newsize < B->n || newsize - B->n < sz) in luaL_prepbuffsize() 410 memcpy(newbuff, B->b, B->n * sizeof(char)); in luaL_prepbuffsize() 411 if (buffonstack(B)) in luaL_prepbuffsize() [all …]
|
H A D | lauxlib.h | 141 #define luaL_addchar(B,c) \ argument 142 ((void)((B)->n < (B)->size || luaL_prepbuffsize((B), 1)), \ 143 ((B)->b[(B)->n++] = (c))) 145 #define luaL_addsize(B,s) ((B)->n += (s)) argument 147 LUALIB_API void (luaL_buffinit) (lua_State *L, luaL_Buffer *B); 148 LUALIB_API char *(luaL_prepbuffsize) (luaL_Buffer *B, size_t sz); 149 LUALIB_API void (luaL_addlstring) (luaL_Buffer *B, const char *s, size_t l); 150 LUALIB_API void (luaL_addstring) (luaL_Buffer *B, const char *s); 151 LUALIB_API void (luaL_addvalue) (luaL_Buffer *B); 152 LUALIB_API void (luaL_pushresult) (luaL_Buffer *B); [all …]
|
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/ |
H A D | OBSOLETE | 9 .B FCEDIT 12 .B hist 14 .B FCEDIT 16 .B HISTEDIT 18 .B HISTEDIT 72 .B \-k 79 .B "a=b c" 85 .B \-xf 87 .B typeset 94 .B FPATH [all …]
|
/illumos-gate/usr/src/uts/common/inet/ipf/ |
H A D | bpf-ipf.h | 113 #define BIOCGBLEN _IOR(B,102, u_int) 114 #define BIOCSBLEN _IOWR(B,102, u_int) 115 #define BIOCSETF _IOW(B,103, struct bpf_program) 116 #define BIOCFLUSH _IO(B,104) 117 #define BIOCPROMISC _IO(B,105) 118 #define BIOCGDLT _IOR(B,106, u_int) 119 #define BIOCGETIF _IOR(B,107, struct ifreq) 120 #define BIOCSETIF _IOW(B,108, struct ifreq) 121 #define BIOCSRTIMEOUT _IOW(B,109, struct timeval) 122 #define BIOCGRTIMEOUT _IOR(B,110, struct timeval) [all …]
|
/illumos-gate/usr/src/lib/libsqlite/test/ |
H A D | thread1.test | 45 # read-lock B 47 # unlock B 54 thread_create B test.db 67 thread_compile B {SELECT b FROM t1} 68 thread_step B 69 thread_result B 72 thread_argc B 75 thread_argv B 0 82 thread_finalize B 83 thread_result B [all …]
|
/illumos-gate/usr/src/test/util-tests/tests/libsff/ |
H A D | libsff_enc.out | 2 8B/10B 3 4B/5B 7 64B/66B 8 256B/257B 261 8B/10B 262 4B/5B 265 64B/66B 267 256B/257B
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/uwin/ |
H A D | crypt.c | 692 C_block B; in des_cipher() local 705 B.b[0] = in[0]; B.b[1] = in[1]; B.b[2] = in[2]; B.b[3] = in[3]; in des_cipher() 706 B.b[4] = in[4]; B.b[5] = in[5]; B.b[6] = in[6]; B.b[7] = in[7]; in des_cipher() 707 LOAD(L,L0,L1,B); in des_cipher() 718 STORE(L,L0,L1,B); in des_cipher() 719 PERM3264(L,L0,L1,B.b, (C_block *)IE3264); /* even bits */ in des_cipher() 720 PERM3264(R,R0,R1,B.b+4,(C_block *)IE3264); /* odd bits */ in des_cipher() 741 #define DOXOR(x,y,i) x^=SPTAB(SPE[0][i],B.b[i]); y^=SPTAB(SPE[1][i],B.b[i]); in des_cipher() 745 #define DOXOR(x,y,i) j=B.b[i]; x^=SPTAB(SPE[0][i],j); y^=SPTAB(SPE[1][i],j); in des_cipher() 748 #define DOXOR(x,y,i) k=B.b[i]; x^=SPTAB(SPE[0][i],k); y^=SPTAB(SPE[1][i],k); in des_cipher() [all …]
|
/illumos-gate/usr/src/cmd/lp/filter/postscript/common/ |
H A D | gen.h | 67 #define MIN(A, B) ((A) < (B) ? (A) : (B)) argument 68 #define MAX(A, B) ((A) > (B) ? (A) : (B)) argument
|
/illumos-gate/usr/src/test/libc-tests/tests/regex/data/ |
H A D | bug16127.dat | 14 B [aà] a (0,1) 15 B [aà] à (0,2) 16 B [aàá] a (0,1) 17 B [aàá] à (0,2) 18 B [aàá] á (0,2) 19 B [abà] à (0,2) 20 B [abà] a (0,1) 21 B [abà] b (0,1)
|
/illumos-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Lgrp/pod/ |
H A D | Lgrp.pod | 115 Functions returning scalar value indicate error by returning B<undef>. The 116 caller may examine the B<$!> variable to get the C<errno> value. 120 context and B<undef> is returned in the scalar context. 124 The constants are exported with B<:CONSTANTS> or B<:ALL> tags: 186 B<undef> and sets B<$!> to indicate the error. 197 Upon successful completion, 1 is returned. Otherwise, B<undef> is returned and 198 B<$!> is set to indicate the error. 213 lgroup hierarchy represented by the given cookie. Otherwise, B<undef> is 220 Returns the home lgroup for the given process or thread. The B<$idtype> argument 221 should be C<P_PID> to specify a process and the B<$id> argument should be its [all …]
|
/illumos-gate/usr/src/uts/common/io/i40e/ |
H A D | i40e_osdep.h | 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) 40 #define DEBUGOUT7(S, A, B, C, D, E, F, G) \ argument 41 i40e_debug(NULL, 0, S, A, B, C, D, E, F, G)
|
/illumos-gate/usr/src/uts/common/gssapi/ |
H A D | kgssapi_defs.h | 54 #define GSSLOG(A, B, C) \ argument 55 ((void)((gss_log & (A)) && (printf((B), (C)), TRUE))) 56 #define GSSLOG0(A, B) \ argument 57 ((void)((gss_log & (A)) && (printf(B), TRUE))) 59 #define GSSLOG(A, B, C) argument 60 #define GSSLOG0(A, B) argument
|
/illumos-gate/usr/src/cmd/lp/include/ |
H A D | lp.h | 287 #define STREQU(A, B) ((!(A) || !(B)) ? 0 : (strcmp((A), (B)) == 0)) argument 288 #define STRNEQU(A, B, N) ((!(A) || !(B)) ? 0 : (strncmp((A), (B), (N)) == 0)) argument 289 #define CS_STREQU(A, B) (cs_strcmp((A), (B)) == 0) argument 290 #define CS_STRNEQU(A, B, N) (cs_strncmp((A), (B), (N)) == 0) argument 296 #define SAME(A, B) ((A) == (B) || (A) && (B) && STREQU((A), (B))) argument
|
/illumos-gate/usr/src/uts/common/rpc/ |
H A D | rpcsec_defs.h | 56 #define RPCGSS_LOG1(A, B, C, D) \ argument 57 ((void)((rpcgss_log) && (rpcgss_log & (A)) && (printf((B), \ 59 #define RPCGSS_LOG(A, B, C) \ argument 60 ((void)((rpcgss_log) && (rpcgss_log & (A)) && (printf((B), (C)), TRUE))) 61 #define RPCGSS_LOG0(A, B) \ argument 62 ((void)((rpcgss_log) && (rpcgss_log & (A)) && (printf(B), TRUE))) 64 #define RPCGSS_LOG1(A, B, C, D) 65 #define RPCGSS_LOG(A, B, C) 66 #define RPCGSS_LOG0(A, B)
|