Home
last modified time | relevance | path

Searched refs:B (Results 1 – 25 of 769) sorted by relevance

12345678910>>...31

/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A DTEST.mk32 local B G P S T
39 B := $(P:B)
41 T := $(B)
50 B := $(P:B)
52 T := $(B)
106 for B $(>)
116 $(B) :: $(B:B:S=$(S))
117 T := $(B)
123 test.$(B) : $(T) - $(B).tst
132 B := $(T:B)
[all …]
H A Dpackage.mk1109 if ! B
1112 base := -z $(B)
1117 version := $(binary:B:B:/$(name).//)
1136 error 3 $(B:B:S): base overwrite would invalidate delta $(D:B:S)
1138 error 1 $(B:B:S): replacing current base
1272 for i in $(~covers:D=$(PACKAGESRC):B:S=.lic:T=F:T=I:N=*.def:D=$(PACKAGESRC):B:S:T=F:B:S)
1388 if ! B
1396 version := $(runtime:B:B:/$(name).//)
1415 error 3 $(B:B:S): base overwrite would invalidate delta $(D:B:S)
1417 error 1 $(B:B:S): replacing current base
[all …]
H A DWWW.mk24 local A B D I J L X E P R M
27 B := $(*:N=*.mm::O=1:B)
28 D := $(WWWDIR)/$(B)
49 then ( $(<:B) '--??html' -- 2>$(<) ) || true
68 O := $(I:D=$(D):B:S)
75 return $(*$(%:T=SR):N=-l*:T=F:P=B:N!=-l*|/*)
91 .WWW : $(J:D=$(M):B:S=.html)
92 $(J:D=$(M):B:S=.html) : $(I) $(I:B:S=.1:T=F:?$(I:B:S=.1)??)
129 .WWW .WWW.BIN : $(D)/$(B)-$(CC.HOSTTYPE).tgz
130 $(D)/$(B)-$(CC.HOSTTYPE).tgz : $(X:V)
[all …]
/illumos-gate/usr/src/contrib/mDNSResponder/mDNSCore/
H A DDNSDigest.c252 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()
1028 B = c->B += B; in md5_block_host_order()
1054 B=c->B; in md5_block_data_order()
[all …]
/illumos-gate/usr/src/lib/libdtrace/common/
H A Dio.d.in65 b_flags = B->b_flags;
66 b_addr = B->b_un.b_addr;
67 b_bcount = B->b_bcount;
69 b_blkno = sizeof (long) == 8 ? B->_b_blkno._f : B->_b_blkno._p._l;
70 b_resid = B->b_resid;
73 b_error = B->b_error;
74 b_edev = B->b_edev;
88 dev_major = B->b_dip != NULL ? getmajor(B->b_edev) :
90 dev_minor = B->b_dip != NULL ? getminor(B->b_edev) :
99 lltostr(B->b_dip == NULL ? getminor(B->b_file->v_vfsp->vfs_dev) :
[all …]
/illumos-gate/usr/src/cmd/ast/libshell/common/tests/
H A Dsun_solaris_cr_6713682_compound_var_bleeds_through_subshell.sh90 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 Dconstexpr-init.c10 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/uts/common/io/ixgbe/
H A Dixgbe_debug.h78 #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)
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)
102 #define DEBUGOUT6(S, A, B, C, D, E, F)
105 #define ERROR_REPORT2(S, A, B)
[all …]
/illumos-gate/usr/src/contrib/ast/lib/package/
H A Dpackage.mk1109 if ! B
1112 base := -z $(B)
1117 version := $(binary:B:B:/$(name).//)
1136 error 3 $(B:B:S): base overwrite would invalidate delta $(D:B:S)
1138 error 1 $(B:B:S): replacing current base
1272 for i in $(~covers:D=$(PACKAGESRC):B:S=.lic:T=F:T=I:N=*.def:D=$(PACKAGESRC):B:S:T=F:B:S)
1388 if ! B
1396 version := $(runtime:B:B:/$(name).//)
1415 error 3 $(B:B:S): base overwrite would invalidate delta $(D:B:S)
1417 error 1 $(B:B:S): replacing current base
[all …]
/illumos-gate/usr/src/cmd/spell/
H A Dspellin.c41 #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 Dhashlook.c38 #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 Dlauxlib.c392 #define buffonstack(B) ((B)->b != (B)->initb) argument
400 if (B->size - B->n < sz) { /* not enough space? */ 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()
413 B->b = newbuff; in luaL_prepbuffsize()
416 return &B->b[B->n]; in luaL_prepbuffsize()
423 luaL_addsize(B, l); in luaL_addlstring()
434 lua_pushlstring(L, B->b, B->n); in luaL_pushresult()
458 B->L = L; in luaL_buffinit()
459 B->b = B->initb; in luaL_buffinit()
[all …]
H A Dlauxlib.h141 #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);
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);
153 LUALIB_API void (luaL_pushresultsize) (luaL_Buffer *B, size_t sz);
[all …]
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/
H A DOBSOLETE9 .B FCEDIT
12 .B hist
14 .B FCEDIT
72 .B \-k
98 .B ENV
111 .B \-s
116 .B \-
122 .B \-t
137 .B \-
146 .B \+
[all …]
/illumos-gate/usr/src/uts/common/inet/ipf/
H A Dbpf-ipf.h113 #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)
123 #define BIOCGSTATS _IOR(B,111, struct bpf_stat)
[all …]
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dthread1.test45 # read-lock B
47 # unlock B
68 thread_step B
69 thread_result B
72 thread_argc B
75 thread_argv B 0
83 thread_result B
103 # read-lock B
119 thread_step B
120 thread_result B
[all …]
/illumos-gate/usr/src/cmd/lp/filter/postscript/common/
H A Dgen.h67 #define MIN(A, B) ((A) < (B) ? (A) : (B)) argument
68 #define MAX(A, B) ((A) > (B) ? (A) : (B)) argument
/illumos-gate/usr/src/test/util-tests/tests/libsff/
H A Dlibsff_enc.out2 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/test/libc-tests/tests/regex/data/
H A Dbug16127.dat14 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/contrib/ast/src/lib/libast/uwin/
H A Dcrypt.c692 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()
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()
754 B.b32.i0 = k ^ q0 ^ kp->b32.i0; \ in des_cipher()
782 STORE(L,L0,L1,B); in des_cipher()
785 STORE(L,L0,L1,B); in des_cipher()
786 out[0] = B.b[0]; out[1] = B.b[1]; out[2] = B.b[2]; out[3] = B.b[3]; in des_cipher()
[all …]
/illumos-gate/usr/src/uts/common/gssapi/
H A Dkgssapi_defs.h54 #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/uts/common/io/i40e/
H A Di40e_osdep.h32 #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/cmd/perl/contrib/Sun/Solaris/Lgrp/pod/
H A DLgrp.pod124 The constants are exported with B<:CONSTANTS> or B<:ALL> tags:
186 B<undef> and sets B<$!> to indicate the error.
227 the specified process or thread. Otherwise, B<undef> is returned and B<$!> is
235 stale. Otherwise, it returns B<undef> and sets B<$!> to indicate the error.
245 returns the list of CPUs in the lgroup specified by B<$lgrp>. The B<$context>
265 In case of error B<undef> is returned in scalar context and B<$!> is set to
302 In case of error B<undef> is returned and B<$!> is set to EINVAL indicatng that
414 returns B<undef> and set B<$!> to indicate the error.
501 Returns B<True> if $lgrp is leaf (has no children), B<False> otherwise.
526 Returns B<T> if the lgroup information in the object is stale, B<F>
[all …]
/illumos-gate/usr/src/uts/common/rpc/
H A Drpcsec_defs.h56 #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)
/illumos-gate/usr/src/cmd/lp/include/
H A Dlp.h287 #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

12345678910>>...31