Home
last modified time | relevance | path

Searched refs:xc (Results 1 – 25 of 320) sorted by relevance

12345678910>>...13

/freebsd/contrib/gdtoa/
H A Dsum.c42 ULong carry, *xc, *xa, *xb, *xe, y; local
55 xc = c->x;
56 xe = xc + b->wds;
63 Storeinc(xc, z, y);
65 while(xc < xe);
67 while(xc < xe) {
72 Storeinc(xc, z, y);
78 *xc++ = y & 0xffff;
80 while(xc < xe);
82 while(xc < xe) {
[all …]
H A Dmisc.c308 xc = xc0;
316 *xc = carry;
324 xc = xc0;
334 *xc = carry;
338 xc = xc0;
340 z2 = *xc;
349 *xc = z2;
356 xc = xc0;
369 for(xc0 = c->x, xc = xc0 + wc; wc > 0 && !*--xc; --wc) ;
564 xc = c->x;
[all …]
/freebsd/contrib/bearssl/src/x509/
H A Dx509_minimal_full.c29 br_x509_minimal_init_full(br_x509_minimal_context *xc, in br_x509_minimal_init_full() argument
48 br_x509_minimal_init(xc, &br_sha256_vtable, in br_x509_minimal_init_full()
50 br_x509_minimal_set_rsa(xc, &br_rsa_i31_pkcs1_vrfy); in br_x509_minimal_init_full()
51 br_x509_minimal_set_ecdsa(xc, in br_x509_minimal_init_full()
57 br_x509_minimal_set_hash(xc, id, hc); in br_x509_minimal_init_full()
H A Dx509_knownkey.c87 const br_x509_knownkey_context *xc; in kk_get_pkey() local
89 xc = (const br_x509_knownkey_context *)ctx; in kk_get_pkey()
91 *usages = xc->usages; in kk_get_pkey()
93 return &xc->pkey; in kk_get_pkey()
/freebsd/contrib/bearssl/samples/
H A Dcustom_profile.c409 br_x509_minimal_init(xc, &br_sha256_vtable, in example_client_profile()
422 br_x509_minimal_set_rsa(xc, &br_rsa_i31_pkcs1_vrfy); in example_client_profile()
423 br_x509_minimal_set_ecdsa(xc, in example_client_profile()
436 br_ssl_engine_set_hash(xc, br_sha1_ID, &br_sha1_vtable); in example_client_profile()
437 br_ssl_engine_set_hash(xc, br_sha224_ID, &br_sha224_vtable); in example_client_profile()
438 br_ssl_engine_set_hash(xc, br_sha256_ID, &br_sha256_vtable); in example_client_profile()
439 br_ssl_engine_set_hash(xc, br_sha384_ID, &br_sha384_vtable); in example_client_profile()
440 br_ssl_engine_set_hash(xc, br_sha512_ID, &br_sha512_vtable); in example_client_profile()
445 br_ssl_engine_set_x509(&cc->eng, &xc->vtable); in example_client_profile()
/freebsd/contrib/bearssl/src/ssl/
H A Dssl_hs_client.c106 const br_x509_class **xc; in make_pms_rsa() local
112 xc = ctx->eng.x509ctx; in make_pms_rsa()
113 pk = (*xc)->get_pkey(xc, NULL); in make_pms_rsa()
200 xc = ctx->eng.x509ctx; in verify_SKE_sig()
201 pk = (*xc)->get_pkey(xc, NULL); in verify_SKE_sig()
280 xc = ctx->eng.x509ctx; in make_pms_ecdh()
281 pk = (*xc)->get_pkey(xc, NULL); in make_pms_ecdh()
348 xc = ctx->eng.x509ctx; in make_pms_static_ecdh()
349 pk = (*xc)->get_pkey(xc, NULL); in make_pms_static_ecdh()
1395 xc = *(ENG->x509ctx); in br_ssl_hs_client_run()
[all …]
H A Dssl_client_full.c30 br_x509_minimal_context *xc, in br_ssl_client_init_full() argument
127 br_x509_minimal_init(xc, &br_sha256_vtable, in br_ssl_client_init_full()
141 br_x509_minimal_set_rsa(xc, br_ssl_engine_get_rsavrfy(&cc->eng)); in br_ssl_client_init_full()
142 br_x509_minimal_set_ecdsa(xc, in br_ssl_client_init_full()
155 br_x509_minimal_set_hash(xc, id, hc); in br_ssl_client_init_full()
161 br_ssl_engine_set_x509(&cc->eng, &xc->vtable); in br_ssl_client_init_full()
H A Dssl_hs_server.c200 const br_x509_class **xc; in do_static_ecdh() local
203 xc = ctx->eng.x509ctx; in do_static_ecdh()
204 pk = (*xc)->get_pkey(xc, NULL); in do_static_ecdh()
412 xc = ctx->eng.x509ctx; in verify_CV_sig()
413 pk = (*xc)->get_pkey(xc, NULL); in verify_CV_sig()
1449 xc = *(ENG->x509ctx); in br_ssl_hs_server_run()
1951 xc = *(ENG->x509ctx); in br_ssl_hs_server_run()
1962 xc = *(ENG->x509ctx); in br_ssl_hs_server_run()
1972 xc = *(ENG->x509ctx); in br_ssl_hs_server_run()
1982 xc = *(ENG->x509ctx); in br_ssl_hs_server_run()
[all …]
/freebsd/contrib/bearssl/tools/
H A Dcerts.c41 br_x509_certificate *xc) in certificate_to_trust_anchor_inner() argument
48 br_x509_decoder_push(&dc, xc->data, xc->data_len); in certificate_to_trust_anchor_inner()
87 certificate_to_trust_anchor(br_x509_certificate *xc) in certificate_to_trust_anchor() argument
91 if (certificate_to_trust_anchor_inner(&ta, xc) < 0) { in certificate_to_trust_anchor()
144 get_cert_signer_algo(br_x509_certificate *xc) in get_cert_signer_algo() argument
150 br_x509_decoder_push(&dc, xc->data, xc->data_len); in get_cert_signer_algo()
H A Dverify.c167 free_cert_contents(br_x509_certificate *xc) in free_cert_contents() argument
169 xfree(xc->data); in free_cert_contents()
272 br_x509_certificate *xc; in do_verify() local
274 xc = &VEC_ELT(chain, u); in do_verify()
275 mc.vtable->start_cert(&mc.vtable, xc->data_len); in do_verify()
276 mc.vtable->append(&mc.vtable, xc->data, xc->data_len); in do_verify()
/freebsd/lib/libvgl/
H A Dsimple.c389 VGLSetXY(object, xc+x, yc+y, color); in set4pixels()
390 VGLSetXY(object, xc-x, yc+y, color); in set4pixels()
392 VGLSetXY(object, xc+x, yc-y, color); in set4pixels()
393 VGLSetXY(object, xc-x, yc-y, color); in set4pixels()
397 VGLSetXY(object, xc, yc+y, color); in set4pixels()
399 VGLSetXY(object, xc, yc-y, color); in set4pixels()
430 VGLLine(object, xc+x, yc+y, xc-x, yc+y, color); in set2lines()
432 VGLLine(object, xc+x, yc-y, xc-x, yc-y, color); in set2lines()
435 VGLLine(object, xc, yc+y, xc, yc-y, color); in set2lines()
446 set2lines(object, x, y, xc, yc, color); in VGLFilledEllipse()
[all …]
/freebsd/sys/contrib/device-tree/src/powerpc/fsl/
H A Dcyrus_p5020.dts76 ranges = <0 0 0xc 0x20000000 0 0x10000000>;
79 ranges = <0 0 0xc 0x30000000 0 0x10000000>;
92 ranges = <0x02000000 0 0xe0000000 0xc 0x00000000 0x0 0x20000000
107 ranges = <0x02000000 0x0 0xe0000000 0xc 0x20000000 0x0 0x20000000
122 ranges = <0x02000000 0 0xe0000000 0xc 0x40000000 0 0x20000000
137 ranges = <0x02000000 0 0xe0000000 0xc 0x60000000 0 0x20000000
H A Dmpc8536ds_36b.dts45 ranges = <0x02000000 0 0xf0000000 0xc 0x00000000 0 0x10000000
60 ranges = <0x02000000 0 0xf8000000 0xc 0x18000000 0 0x08000000
75 ranges = <0x02000000 0 0xf8000000 0xc 0x10000000 0 0x08000000
90 ranges = <0x02000000 0 0xe0000000 0xc 0x20000000 0 0x20000000
H A Dmpc8548cds_36b.dts33 ranges = <0x2000000 0x0 0xe0000000 0xc 0x00000000 0x0 0x10000000
40 ranges = <0x2000000 0x0 0xe0000000 0xc 0x10000000 0x0 0x10000000
55 ranges = <0x2000000 0x0 0xe0000000 0xc 0x20000000 0x0 0x20000000
71 ranges = <0x0 0x0 0xc 0x40000000 0x0 0x20000000>;
H A Dmpc8572ds_36b.dts36 ranges = <0x2000000 0x0 0xe0000000 0xc 0x00000000 0x0 0x20000000
51 ranges = <0x2000000 0x0 0xe0000000 0xc 0x20000000 0x0 0x20000000
66 ranges = <0x2000000 0x0 0xe0000000 0xc 0x40000000 0x0 0x20000000
/freebsd/sys/dev/uart/
H A Duart_bus.h179 int ptr, xc; in uart_rx_get() local
184 xc = sc->sc_rxbuf[ptr++]; in uart_rx_get()
186 return (xc); in uart_rx_get()
212 uart_rx_put(struct uart_softc *sc, int xc) in uart_rx_put() argument
219 sc->sc_rxbuf[sc->sc_rxput] = xc; in uart_rx_put()
H A Duart_tty.c323 int c, err = 0, pend, sig, xc; in uart_tty_intr() local
337 xc = uart_rx_peek(sc); in uart_tty_intr()
338 c = xc & 0xff; in uart_tty_intr()
339 if (xc & UART_STAT_FRAMERR) in uart_tty_intr()
341 if (xc & UART_STAT_OVERRUN) in uart_tty_intr()
343 if (xc & UART_STAT_PARERR) in uart_tty_intr()
/freebsd/crypto/openssl/crypto/sha/
H A Dsha_local.h90 Xupdate(f,xi,xa,xb,xc,xd); \
95 Xupdate(f,xi,xa,xb,xc,xd); \
100 Xupdate(f,xa,xa,xb,xc,xd); \
105 Xupdate(f,xa,xa,xb,xc,xd); \
110 Xupdate(f,xa,xa,xb,xc,xd); \
341 # define BODY_16_19(xa,xb,xc,xd) do { \ argument
342 Xupdate(T,xa,xa,xb,xc,xd); \
347 # define BODY_20_39(xa,xb,xc,xd) do { \ argument
348 Xupdate(T,xa,xa,xb,xc,xd); \
354 Xupdate(T,xa,xa,xb,xc,xd); \
[all …]
/freebsd/lib/libsecureboot/
H A Dbrf.c272 br_x509_certificate xc; in parse_certificates() local
274 xc.data = pos[u].data; in parse_certificates()
275 xc.data_len = pos[u].data_len; in parse_certificates()
277 VEC_ADD(cert_list, xc); in parse_certificates()
343 br_x509_certificate *xc) in certificate_to_trust_anchor_inner() argument
350 br_x509_decoder_push(&dc, xc->data, xc->data_len); in certificate_to_trust_anchor_inner()
H A Dvets.c204 free_cert_contents(br_x509_certificate *xc) in free_cert_contents() argument
206 xfree(xc->data); in free_cert_contents()
213 x509_cn_get(br_x509_certificate *xc, char *buf, size_t len) in x509_cn_get() argument
239 mc.vtable->start_cert(&mc.vtable, xc->data_len); in x509_cn_get()
240 mc.vtable->append(&mc.vtable, xc->data, xc->data_len); in x509_cn_get()
493 br_x509_certificate *xc; in verify_signer_xcs() local
547 xc = &VEC_ELT(chain, u); in verify_signer_xcs()
548 mc.vtable->start_cert(&mc.vtable, xc->data_len); in verify_signer_xcs()
549 mc.vtable->append(&mc.vtable, xc->data, xc->data_len); in verify_signer_xcs()
/freebsd/crypto/openssl/crypto/chacha/asm/
H A Dchacha-armv4.pl70 my ($xc,$xc_) = (@t[0..1]);
106 "&add ($xc,$xc,$xd)",
110 "&eor (@x[$b0],@x[$b0],$xc,'ror#20')",
120 "&add ($xc,$xc,$xd)",
132 "&eor (@x[$b0],@x[$b0],$xc,'ror#25')",
138 "&str ($xc,'[sp,#4*(16+$c0)]')",
139 "&ldr ($xc,'[sp,#4*(16+$c2)]')",
149 "&add ($xc,$xc,$xd)",
153 "&eor (@x[$b2],@x[$b2],$xc,'ror#20')",
163 "&add ($xc,$xc,$xd)",
[all …]
H A Dchacha-x86.pl415 &paddd ($xc,$xd);
417 &pxor ($xb,$xc);
429 &paddd ($xc,$xd);
432 &pxor ($xb,$xc);
442 ($xc,$xc_)=($xc_,$xc);
587 &movdqa (&QWP(16*8-128,"ebx"),$xc);
829 &vpaddd ($xc,$xc,$xd);
831 &vpxor ($xb,$i!=0?$xb:$xb_,$xc);
841 &vpaddd ($xc,$xc,$xd);
843 &vpxor ($xb,$xb,$xc);
[all …]
/freebsd/sys/contrib/device-tree/Bindings/thermal/
H A Dti_soc_thermal.txt70 reg = <0x4a0021e0 0xc
71 0x4a00232c 0xc
80 reg = <0x4a0021e0 0xc
81 0x4a00232c 0xc
/freebsd/contrib/netbsd-tests/ipf/regress/
H A Dbpf-f11 pass in bpf-v4 { "0x20 0 0 0xc 0x15 0 0x1 0x1010101 0x6 0 0 0x60 0x6 0 0 0" }
2 pass out bpf-v4 { "0x20 0 0 0xc 0x15 0 0x1 0x1010101 0x6 0 0 0x60 0x6 0 0 0" }
/freebsd/contrib/netbsd-tests/ipf/expected/
H A Dbpf11 pass in bpf-v4 { "0x20 0 0 0xc 0x15 0 0x1 0x1010101 0x6 0 0 0x60 0x6 0 0 0" }
2 pass out bpf-v4 { "0 0 0 0 0x20 0 0 0xc 0x15 0 0x1 0x1010101 0x6 0 0 0x1 0x6 0 0 0" }

12345678910>>...13