Home
last modified time | relevance | path

Searched refs:c3 (Results 1 – 25 of 94) sorted by relevance

1234

/illumos-gate/usr/src/contrib/ast/src/lib/libast/astsa/
H A Dhashkey.h42 #define HASHKEY3(c1,c2,c3) HASHKEYPART(HASHKEY2(c1,c2),c3) argument
43 #define HASHKEY4(c1,c2,c3,c4) HASHKEYPART(HASHKEY3(c1,c2,c3),c4) argument
44 #define HASHKEY5(c1,c2,c3,c4,c5) HASHKEYPART(HASHKEY4(c1,c2,c3,c4),c5) argument
45 #define HASHKEY6(c1,c2,c3,c4,c5,c6) HASHKEYPART(HASHKEY5(c1,c2,c3,c4,c5),c6) argument
49 #define HASHNKEY3(n,c3,c2,c1) HASHKEY4((n)+HASHKEYOFF,c3,c2,c1) argument
50 #define HASHNKEY4(n,c4,c3,c2,c1) HASHKEY5((n)+'a',c4,c3,c2,c1) argument
51 #define HASHNKEY5(n,c5,c4,c3,c2,c1) HASHKEY6((n)+'a',c5,c4,c3,c2,c1) argument
/illumos-gate/usr/src/contrib/ast/src/lib/libast/include/
H A Dhashkey.h43 #define HASHKEY3(c1,c2,c3) HASHKEYPART(HASHKEY2(c1,c2),c3) argument
44 #define HASHKEY4(c1,c2,c3,c4) HASHKEYPART(HASHKEY3(c1,c2,c3),c4) argument
45 #define HASHKEY5(c1,c2,c3,c4,c5) HASHKEYPART(HASHKEY4(c1,c2,c3,c4),c5) argument
46 #define HASHKEY6(c1,c2,c3,c4,c5,c6) HASHKEYPART(HASHKEY5(c1,c2,c3,c4,c5),c6) argument
50 #define HASHNKEY3(n,c3,c2,c1) HASHKEY4((n)+HASHKEYOFF,c3,c2,c1) argument
51 #define HASHNKEY4(n,c4,c3,c2,c1) HASHKEY5((n)+'a',c4,c3,c2,c1) argument
52 #define HASHNKEY5(n,c5,c4,c3,c2,c1) HASHKEY6((n)+'a',c5,c4,c3,c2,c1) argument
/illumos-gate/usr/src/lib/libc/port/fp/
H A D__tbl_fdq.c202 int c0, c1, c2, c3; in __four_digits_quick() local
208 c3 = pt[3] + (u & 7); in __four_digits_quick()
209 if (c3 > '9') { in __four_digits_quick()
210 c3 -= 10; in __four_digits_quick()
222 s[3] = c3; in __four_digits_quick()
/illumos-gate/usr/src/uts/common/sys/tsol/
H A Dlabel_macro.h50 uint32_t c3; member
120 (l1)->_comps.c3 == (l2)->_comps.c3 && \
183 (l)->_comps.c1 = (l)->_comps.c2 = (l)->_comps.c3 = (l)->_comps.c4 = \
189 (l)->_comps.c1 = (l)->_comps.c2 = (l)->_comps.c3 = (l)->_comps.c4 = \
212 (l1)->_comps.c3 == (l2)->_comps.c3 && \
226 (l2)->_comps.c3 == ((l1)->_comps.c3 & (l2)->_comps.c3) && \
250 (l1)->_comps.c3 |= (l2)->_comps.c3, \
266 (l1)->_comps.c3 &= (l2)->_comps.c3, \
283 (l)->_comps.c1 = (l)->_comps.c2 = (l)->_comps.c3 = (l)->_comps.c4 = \
292 (l)->_comps.c1 = (l)->_comps.c2 = (l)->_comps.c3 = (l)->_comps.c4 = \
[all …]
/illumos-gate/usr/src/cmd/sendmail/util/
H A Drfc2047.c225 int c1, c2, c3, c4; in decode_rfc2047() local
247 ((c3 = char64(*pp)) == -1)) { in decode_rfc2047()
251 c3 != -1) { in decode_rfc2047()
253 (c3 >> 2); in decode_rfc2047()
261 if (pp < endofmime && c3 != -1 && in decode_rfc2047()
263 *q++ = ((c3 & 0x3) << 6) | (c4); in decode_rfc2047()
/illumos-gate/usr/src/cmd/iconv/
H A Dscanner.c174 int c1, c2, c3; in scan_dec_byte() local
190 c3 = scanc(); in scan_dec_byte()
191 if (!isdigit(c3)) { in scan_dec_byte()
192 unscanc(c3); in scan_dec_byte()
195 b += (c3 - '0'); in scan_dec_byte()
203 int c1, c2, c3; in scan_oct_byte() local
221 c3 = scanc(); in scan_oct_byte()
222 if (!isodigit(c3)) { in scan_oct_byte()
223 unscanc(c3); in scan_oct_byte()
226 b += (c3 - '0'); in scan_oct_byte()
/illumos-gate/usr/src/common/zfs/
H A Dzfs_fletcher_superscalar4.c97 uint64_t a3, b3, c3, d3; in fletcher_4_superscalar4_native() local
110 c3 = ctx->superscalar[2].v[2]; in fletcher_4_superscalar4_native()
128 c3 += b3; in fletcher_4_superscalar4_native()
132 d3 += c3; in fletcher_4_superscalar4_native()
146 ctx->superscalar[2].v[2] = c3; in fletcher_4_superscalar4_native()
162 uint64_t a3, b3, c3, d3; in fletcher_4_superscalar4_byteswap() local
175 c3 = ctx->superscalar[2].v[2]; in fletcher_4_superscalar4_byteswap()
193 c3 += b3; in fletcher_4_superscalar4_byteswap()
197 d3 += c3; in fletcher_4_superscalar4_byteswap()
211 ctx->superscalar[2].v[2] = c3; in fletcher_4_superscalar4_byteswap()
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dbtree2.test107 btree_insert $::c3 $key $data
135 btree_move_to $::c3 {}
143 set key [btree_key $::c3]
159 btree_next $::c3
229 btree_delete $::c3
233 btree_delete $::c3
296 btree_close_cursor $::c3
322 btree_close_cursor $::c3
372 btree_close_cursor $::c3
399 btree_close_cursor $::c3
[all …]
/illumos-gate/usr/src/cmd/localedef/
H A Dscanner.c276 int c1, c2, c3; in scan_dec_byte() local
292 c3 = scanc(); in scan_dec_byte()
293 if (!isdigit(c3)) { in scan_dec_byte()
294 unscanc(c3); in scan_dec_byte()
297 b += (c3 - '0'); in scan_dec_byte()
305 int c1, c2, c3; in scan_oct_byte() local
323 c3 = scanc(); in scan_oct_byte()
324 if (!isodigit(c3)) { in scan_oct_byte()
325 unscanc(c3); in scan_oct_byte()
328 b += (c3 - '0'); in scan_oct_byte()
/illumos-gate/usr/src/cmd/bhyve/
H A Dvga.c484 c3 |= m3; in vga_mem_wr_handler()
495 c3 = enb_set_reset & 8 ? c3 & m3 : val & m3; in vga_mem_wr_handler()
506 c3 = enb_set_reset & 8 ? c3 | m3 : val | m3; in vga_mem_wr_handler()
517 c3 = enb_set_reset & 8 ? c3 ^ m3 : val ^ m3; in vga_mem_wr_handler()
543 c3 |= m3; in vga_mem_wr_handler()
554 c3 &= m3; in vga_mem_wr_handler()
565 c3 |= m3; in vga_mem_wr_handler()
576 c3 ^= m3; in vga_mem_wr_handler()
602 c3 |= m3; in vga_mem_wr_handler()
613 c3 &= m3; in vga_mem_wr_handler()
[all …]
/illumos-gate/usr/src/lib/libm/common/Q/
H A D__lgammal.c64 c3 = 3.0L, variable
98 return primary(x-y)+logl((x-c1)*(x-c2)*(x-c3)); in __k_lgammal()
100 return primary(x-y)+logl((x-c1)*(x-c2)*(x-c3)*(x-c4)); in __k_lgammal()
102 return primary(x-y)+logl((x-c1)*(x-c2)*(x-c3)*(x-c4)*(x-c5)); in __k_lgammal()
105 logl((x-c1)*(x-c2)*(x-c3)*(x-c4)*(x-c5)*(x-c6)); in __k_lgammal()
/illumos-gate/usr/src/lib/libm/common/LD/
H A D__lgammal.c64 c3 = 3.0L, variable
102 return (primary(x-y)+logl((x-c1)*(x-c2)*(x-c3))); in __k_lgammal()
104 return (primary(x-y)+logl((x-c1)*(x-c2)*(x-c3)*(x-c4))); in __k_lgammal()
106 return (primary(x-y)+logl((x-c1)*(x-c2)*(x-c3)*(x-c4)*(x-c5))); in __k_lgammal()
109 logl((x-c1)*(x-c2)*(x-c3)*(x-c4)*(x-c5)*(x-c6)); in __k_lgammal()
/illumos-gate/usr/src/lib/libsasl/lib/
H A Dsaslutil.c193 int c1, c2, c3, c4; in sasl_decode64() local
212 c3 = in[2]; in sasl_decode64()
213 if (c3 != '=' && CHAR64(c3) == -1) return SASL_BADPROT; in sasl_decode64()
219 if (c3 != '=') { in sasl_decode64()
220 *out++ = ((CHAR64(c2) << 4) & 0xf0) | (CHAR64(c3) >> 2); in sasl_decode64()
223 *out++ = ((CHAR64(c3) << 6) & 0xc0) | CHAR64(c4); in sasl_decode64()
/illumos-gate/usr/src/lib/crypt_modules/bsdbf/
H A Dbcrypt.c115 uint8_t c1, c2, c3, c4; in decode_base64() local
128 c3 = CHAR64(*(p + 2)); in decode_base64()
129 if (c3 == 255) in decode_base64()
132 *bp++ = ((c2 & 0x0f) << 4) | ((c3 & 0x3c) >> 2); in decode_base64()
139 *bp++ = ((c3 & 0x03) << 6) | c4; in decode_base64()
/illumos-gate/usr/src/test/util-tests/tests/dis/risc-v/
H A Dtst.rv32f.out7 libdis_test+0x18: c3 70 31 20 fmadd.s ft1,ft2,ft3,ft4
8 libdis_test+0x1c: c3 00 31 20 fmadd.s ft1,ft2,ft3,ft4,rne
9 libdis_test+0x20: c3 10 31 20 fmadd.s ft1,ft2,ft3,ft4,rtz
10 libdis_test+0x24: c3 20 31 20 fmadd.s ft1,ft2,ft3,ft4,rdn
11 libdis_test+0x28: c3 30 31 20 fmadd.s ft1,ft2,ft3,ft4,rup
12 libdis_test+0x2c: c3 40 31 20 fmadd.s ft1,ft2,ft3,ft4,rmm
88 libdis_test+0x15c: 53 c3 0f d0 fcvt.s.w ft6,t6,rmm
94 libdis_test+0x174: 53 c3 1f d0 fcvt.s.wu ft6,t6,rmm
H A Dtst.rv32d.out7 libdis_test+0x18: c3 70 31 22 fmadd.d ft1,ft2,ft3,ft4
8 libdis_test+0x1c: c3 00 31 22 fmadd.d ft1,ft2,ft3,ft4,rne
9 libdis_test+0x20: c3 10 31 22 fmadd.d ft1,ft2,ft3,ft4,rtz
10 libdis_test+0x24: c3 20 31 22 fmadd.d ft1,ft2,ft3,ft4,rdn
11 libdis_test+0x28: c3 30 31 22 fmadd.d ft1,ft2,ft3,ft4,rup
12 libdis_test+0x2c: c3 40 31 22 fmadd.d ft1,ft2,ft3,ft4,rmm
H A Dtst.csr.out24 libdis_test+0x5c: 73 a3 c3 c0 csrrs t1,hpmcounter12,t2
40 libdis_test+0x9c: 73 a3 c3 c1 csrrs t1,hpmcounter28,t2
56 libdis_test+0xdc: 73 a3 c3 c8 csrrs t1,hpmcounter12h,t2
72 libdis_test+0x11c: 73 a3 c3 c9 csrrs t1,hpmcounter28h,t2
120 libdis_test+0x1dc: 73 a3 c3 3b csrrs t1,pmpaddr12,t2
/illumos-gate/usr/src/cmd/col/
H A Dcol.c390 wchar_t c1, c2, c3, c4, c5, c6, c7; in outc() local
398 c3 = *line; in outc()
415 c2 = c3; in outc()
416 c3 = c4; in outc()
423 wchar_t c1, c2, c3; in outc() local
432 c3 = *line; in outc()
436 c2 = c3; in outc()
/illumos-gate/usr/src/test/util-tests/tests/dis/i386/
H A D32.adx.out1 libdis_test: 66 0f 38 f6 c3 adcx %ebx,%eax
4 libdis_test+0x10: f3 0f 38 f6 c3 adox %ebx,%eax
H A D64.adx.out1 libdis_test: 66 48 0f 38 f6 c3 adcx %rbx,%rax
5 libdis_test+0x13: f3 48 0f 38 f6 c3 adox %rbx,%rax
H A Dtst.vmx.out3 libdis_test+0x6: 0f 01 c3 vmresume
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dmime.c1099 int c1, c2, c3, c4; local
1117 c3 = sm_io_getc(e->e_dfp, SM_TIME_DEFAULT);
1118 } while (isascii(c3) && isspace(c3));
1119 if (c3 == SM_IO_EOF)
1160 if (c3 == '=')
1162 c3 = CHAR64(c3);
1163 *fbufp = ((c2 & 0x0f) << 4) | ((c3 & 0x3c) >> 2);
1168 *fbufp = ((c3 & 0x03) << 6) | c4;
/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vhypot.S73 ! c3 = vis_fcmpgt32(DC2,y);
76 ! c1 &= c3;
289 and %o4,%o5,%o4 ! (2_0) c1 &= c3;
327 and %o4,%o1,%o4 ! (3_1) c1 &= c3;
375 and %g1,%o4,%g1 ! (0_0) c1 &= c3;
433 and %o5,%o1,%o5 ! (1_0) c1 &= c3;
493 and %o4,%o5,%o4 ! (2_0) c1 &= c3;
566 and %o4,%o1,%o4 ! (3_1) c1 &= c3;
629 and %g1,%o4,%g1 ! (0_0) c1 &= c3;
693 and %o5,%o1,%o5 ! (1_0) c1 &= c3;
[all …]
/illumos-gate/usr/src/lib/iconv_modules/zh/common/
H A DUTF-8%zh_CN.gbk.c93 unsigned char c3, c4; in _icv_iconv() local
122 c3 = *(*inbuf + size++); in _icv_iconv()
131 unichr = (unsigned long) (c1 | (c2<<8) | (c3)<<16 | (c4<<24)); in _icv_iconv()
133 unichr = (unsigned long) ((c1<<24) | (c2<<16) | (c3<<8) | c4); in _icv_iconv()
H A Dzh_TW-euc%zh_TW-iso2022-CN-EXT.c132 #define BUF_INPUT(c1, c2, c3, c4)\ argument
135 *(*outbuf)++ = c3;\

1234