Home
last modified time | relevance | path

Searched refs:b (Results 226 – 250 of 2955) sorted by relevance

12345678910>>...119

/illumos-gate/usr/src/uts/common/sys/
H A Dddi_impldefs.h1167 (((b) >= 'a') && ((b) <= 'z')) || \
1168 (((b) >= 'A') && ((b) <= 'Z')) || \
1169 (((b) >= '0') && ((b) <= '9')) || \
1170 (b == '+') || (b == '-') || (b == '.') || (b == '=') || \
1171 (b == ' ') || (b == 0x00))
1211 ((b) == DEVID_SCSI3_WWN) || \
1214 ((b) == DEVID_NVME_EUI64) || \
1215 ((b) == DEVID_NVME_NGUID) || \
1216 ((b) == DEVID_FAB))
1222 ((b) == DEVID_SCSI3_VPD_NAA))
[all …]
/illumos-gate/usr/src/common/mpi/
H A Dmpi.c525 mp_zero(b); in mp_mul_d()
734 SIGN(b) = (SIGN(b) == NEG) ? ZPOS : NEG; in mp_neg()
789 if (a == b) { in mp_sub()
842 b = &tmp; in mp_mul()
849 b = a; in mp_mul()
2943 *a = *b; in s_mp_exch()
2944 *b = tmp; in s_mp_exch()
3208 b_msd = DIGIT(b, USED(b) - 1); in s_mp_norm()
3314 if(b) in s_mp_sub_d()
3596 a = b; in s_mp_add_3arg()
[all …]
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A D_Q_cplx_lr_div_ix.c53 long double b, c, d; local
55 b = *pb;
59 b /= (c * c + d * d);
62 ((long double *)&v)[0] = b * d;
63 ((long double *)&v)[1] = b * c;
66 ((long double *)v)[0] = b * d;
67 ((long double *)v)[1] = b * c;
H A D_Q_cplx_div.c97 long double a, b, c, d, r; local
107 b = ((long double *)z)[1];
113 bb.q = b;
151 j = testinfl(b);
154 b = j;
162 j = testinfl(b);
165 b = j;
193 ((long double *)&v)[0] = (a * c + b * d) * r;
194 ((long double *)&v)[1] = (b * c - a * d) * r;
197 ((long double *)v)[0] = (a * c + b * d) * r;
[all …]
/illumos-gate/usr/src/test/util-tests/tests/dis/i386/
H A D64.vbmi2.out12 8b 23 00 00 00 42
24 8b 23 00 00 00 42
36 8b 23 00 00 00 42
48 8b 23 00 00 00 42
64 8b 23 00 00 00 42
371 8b 23 00 00 00
379 8b 23 00 00 00
387 8b 23 00 00 00
395 8b 23 00 00 00
406 8b 23 00 00 00
[all …]
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dfletcher.c68 uint64_t a, b, c, d; in fletcher_4_native() local
70 for (a = b = c = d = 0; ip < ipend; ip++) { in fletcher_4_native()
72 b += a; in fletcher_4_native()
73 c += b; in fletcher_4_native()
77 ZIO_SET_CHECKSUM(zcp, a, b, c, d); in fletcher_4_native()
86 uint64_t a, b, c, d; in fletcher_4_byteswap() local
88 for (a = b = c = d = 0; ip < ipend; ip++) { in fletcher_4_byteswap()
90 b += a; in fletcher_4_byteswap()
91 c += b; in fletcher_4_byteswap()
95 ZIO_SET_CHECKSUM(zcp, a, b, c, d); in fletcher_4_byteswap()
/illumos-gate/usr/src/cmd/ypcmd/
H A Dyp_b_subr.c609 b =
1076 b = (struct ypbind_binding *)calloc(1, sizeof (*b));
1077 if (b == NULL)
1078 return (b);
1116 if (b)
1117 free(b);
1147 if (b)
1148 free(b);
1152 return (b);
1159 if (b == NULL)
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/wpad/
H A Dwpa_enc.c33 uint8_t *a, *r, b[16]; in aes_wrap() local
57 (void) memcpy(b, a, 8); in aes_wrap()
58 (void) memcpy(b + 8, r, 8); in aes_wrap()
59 AES_encrypt(b, b, &key); in aes_wrap()
60 (void) memcpy(a, b, 8); in aes_wrap()
62 (void) memcpy(r, b + 8, 8); in aes_wrap()
84 uint8_t a[8], *r, b[16]; in aes_unwrap() local
106 (void) memcpy(b, a, 8); in aes_unwrap()
107 b[7] ^= n * j + i; in aes_unwrap()
110 AES_decrypt(b, b, &key); in aes_unwrap()
[all …]
/illumos-gate/usr/src/test/util-tests/tests/awk/gnu/
H A Dopasnslf.awk2 print b += b += 1
3 b = 6
4 print b += b++
5 print b
/illumos-gate/usr/src/cmd/isns/isnsd/
H A Dhtable.c132 b->r = a; in avl_ll()
133 b->bf = 0; in avl_ll()
135 return (b); in avl_ll()
158 b->l = a; in avl_rr()
159 b->bf = 0; in avl_rr()
161 return (b); in avl_rr()
183 c = b->r; in avl_lr()
189 c->l = b; in avl_lr()
233 c = b->l; in avl_rl()
239 c->r = b; in avl_rl()
[all …]
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dinfinite-loop04.c3 static void foo(char *b) in foo() argument
5 while (b) { in foo()
6 if (b++) in foo()
8 ++b; in foo()
9 use(*b); in foo()
10 &b; in foo()
H A Dsm_select3.c3 int a, b, c; variable
6 if (a ? b : c) in func()
38 if (a ? b : 1) { in func()
43 if (!b) in func()
48 if (!b) in func()
53 if (a ? b : 0) { in func()
61 if (b) in func()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/tests/
H A Dlocale.sh38 b=$($SHELL -c '(LC_ALL=debug / 2>/dev/null); /' 2>&1 | sed -e "s,.*: *,," -e "s, *\[.*,,")
39 [[ "$b" == "$a" ]] || err_exit "locale not restored after subshell -- expected '$a', got '$b'"
40 b=$($SHELL -c '(LC_ALL=debug; / 2>/dev/null); /' 2>&1 | sed -e "s,.*: *,," -e "s, *\[.*,,")
41 [[ "$b" == "$a" ]] || err_exit "locale not restored after subshell -- expected '$a', got '$b'"
52 do b="$(printf "$s")"
162 unset a b c
164 integer a b c
174 do for ((b = 0; b < 3; b++))
175 do if (( b != a ))
177 do if (( c != a && c != b ))
[all …]
/illumos-gate/usr/src/boot/libsa/
H A Dqdivrem.c49 #define COMBINE(a, b) (((u_int)(a) << HALF_BITS) | (b)) argument
295 (void)__udivmoddi4(a, b, &r); in __umoddi3()
304 __divdi3(quad_t a, quad_t b) in __divdi3() argument
313 if (b < 0) in __divdi3()
316 ub = b; in __divdi3()
328 __moddi3(quad_t a, quad_t b) in __moddi3() argument
337 if (b < 0) in __moddi3()
338 ub = -(u_quad_t)b; in __moddi3()
340 ub = b; in __moddi3()
350 d = __divdi3(a, b); in __divmoddi4()
[all …]
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dindex.test262 SELECT b FROM t1 WHERE a=1 ORDER BY b;
267 SELECT b FROM t1 WHERE a=2 ORDER BY b;
273 SELECT b FROM t1 WHERE a=1 ORDER BY b;
279 SELECT b FROM t1 WHERE a=1 ORDER BY b;
295 SELECT b FROM t1 WHERE a=1 ORDER BY b;
301 SELECT b FROM t1 WHERE a=1 ORDER BY b;
307 SELECT b FROM t1 WHERE a=1 ORDER BY b;
313 SELECT b FROM t1 WHERE a=1 ORDER BY b;
318 SELECT b FROM t1 ORDER BY b;
329 b int,
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/string/
H A Dstrpcmp.c31 strpcmp(register const char* a, register const char* b) in strpcmp() argument
33 while (*a == *b) in strpcmp()
37 b++; in strpcmp()
39 if (*a == 0 && *b == '/') in strpcmp()
41 if (*a == '/' && *b == 0) in strpcmp()
43 return (a < b) ? -1 : 1; in strpcmp()
/illumos-gate/usr/src/test/util-tests/tests/awk/bugs-fixed/
H A Dstring-conv.awk5 b = a ""
6 print "1 ->", b
8 b = a ""
9 print "2 ->", b
11 b = a ""
12 print "3 ->", b
/illumos-gate/usr/src/cmd/rmformat/
H A Drmformat.h59 #define DPRINTF2(str, a, b) (void) printf(str, a, b) argument
60 #define DPRINTF3(str, a, b, c) (void) printf(str, a, b, c) argument
61 #define DPRINTF4(str, a, b, c, d) (void) printf(str, a, b, c, d) argument
65 #define DPRINTF2(str, a, b)
66 #define DPRINTF3(str, a, b, c)
67 #define DPRINTF4(str, a, b, c, d)
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_util.c116 b.len = vp2buf(myself, &b.buf, b.len, fmt, ap); in reportError()
119 if (b.len > 0) { in reportError()
121 defErr->message = b.buf; in reportError()
128 sfree(b.buf); in reportError()
487 b->len = vp2buf(msg, &b->buf, b->len, fmt, ap); in bp2buf()
502 new = realloc(b->buf, b->len+len+1); in bc2buf()
504 b->buf = new; in bc2buf()
505 memcpy(&(b->buf[b->len]), buf, len); in bc2buf()
506 b->len += len; in bc2buf()
508 if (b->len > 0 && b->buf[b->len-1] != '\0') in bc2buf()
[all …]
/illumos-gate/usr/src/uts/intel/promif/
H A Dprom_printf.c100 int b, c, i, pad, width, ells; in _doprint() local
130 b = 10; in _doprint()
150 b = 16; in _doprint()
154 b = 10; in _doprint()
159 b = 8; in _doprint()
168 _printn(ul, b, width, pad, emit, bp); in _doprint()
172 b = va_arg(adx, int); in _doprint()
174 if ((c = ((b >> i) & 0x7f)) != 0) { in _doprint()
201 _printn(uint64_t n, int b, int width, int pad, void (*emit)(char, char **), in _printn() argument
209 *cp++ = "0123456789abcdef"[n%b]; in _printn()
[all …]
/illumos-gate/usr/src/uts/common/io/cxgbe/t4nex/
H A Dt4_l2t.c66 #define __jhash_mix(a, b, c) \ argument
68 a -= b; a -= c; a ^= (c>>13); \
69 b -= c; b -= a; b ^= (a<<8); \
70 c -= a; c -= b; c ^= (b>>13); \
72 b -= c; b -= a; b ^= (a<<16); \
73 c -= a; c -= b; c ^= (b>>5); \
74 a -= b; a -= c; a ^= (c>>3); \
75 b -= c; b -= a; b ^= (a<<10); \
76 c -= a; c -= b; c ^= (b>>15); \
93 b += JHASH_GOLDEN_RATIO; in jhash_3words()
[all …]
/illumos-gate/usr/src/common/crypto/ecc/
H A Decl-priv.h205 mp_err ec_GFp_add(const mp_int *a, const mp_int *b, mp_int *r,
208 mp_err ec_GFp_sub(const mp_int *a, const mp_int *b, mp_int *r,
212 mp_err ec_GFp_add_3(const mp_int *a, const mp_int *b, mp_int *r,
214 mp_err ec_GFp_add_4(const mp_int *a, const mp_int *b, mp_int *r,
216 mp_err ec_GFp_add_5(const mp_int *a, const mp_int *b, mp_int *r,
218 mp_err ec_GFp_add_6(const mp_int *a, const mp_int *b, mp_int *r,
230 mp_err ec_GFp_mul(const mp_int *a, const mp_int *b, mp_int *r,
233 mp_err ec_GFp_div(const mp_int *a, const mp_int *b, mp_int *r,
236 mp_err ec_GF2m_add(const mp_int *a, const mp_int *b, mp_int *r,
240 mp_err ec_GF2m_mul(const mp_int *a, const mp_int *b, mp_int *r,
[all …]
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Dacoutput.h567 #define ACPI_DUMP_OPERANDS(a, b ,c) AcpiExDumpOperands(a, b, c) argument
568 #define ACPI_DUMP_ENTRY(a, b) AcpiNsDumpEntry (a, b) argument
569 #define ACPI_DUMP_PATHNAME(a, b, c, d) AcpiNsDumpPathname(a, b, c, d) argument
572 #define ACPI_TRACE_POINT(a, b, c, d) AcpiTracePoint (a, b, c, d) argument
585 #define ACPI_FUNCTION_TRACE_PTR(a, b) argument
586 #define ACPI_FUNCTION_TRACE_U32(a, b) argument
587 #define ACPI_FUNCTION_TRACE_STR(a, b) argument
590 #define ACPI_DUMP_OPERANDS(a, b, c) argument
591 #define ACPI_DUMP_ENTRY(a, b) argument
593 #define ACPI_DUMP_BUFFER(a, b) argument
[all …]
/illumos-gate/usr/src/lib/libcryptoutil/common/
H A Dtohexstr.c71 uchar_t *b = NULL; in hexstr_to_bytes() local
86 b = malloc(*blen); in hexstr_to_bytes()
87 if (b == NULL) { in hexstr_to_bytes()
110 b[i/2] |= ch; in hexstr_to_bytes()
112 b[i/2] = (ch << 4); in hexstr_to_bytes()
116 if (b != NULL && ret != 0) { in hexstr_to_bytes()
117 free(b); in hexstr_to_bytes()
120 *bytes = b; in hexstr_to_bytes()
/illumos-gate/usr/src/lib/libc/i386/fp/
H A D_D_cplx_mul.c82 double a, b, c, d; in _D_cplx_mul() local
95 b = ((double *)&z)[1]; in _D_cplx_mul()
101 x = (long double)a * c - (long double)b * d; in _D_cplx_mul()
102 y = (long double)a * d + (long double)b * c; in _D_cplx_mul()
114 j = testinf(b); in _D_cplx_mul()
118 b = j; in _D_cplx_mul()
130 x = inf.f * ((long double)a * c - (long double)b * d); in _D_cplx_mul()
131 y = inf.f * ((long double)a * d + (long double)b * c); in _D_cplx_mul()

12345678910>>...119