/freebsd/contrib/gdtoa/ |
H A D | sum.c | 42 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 D | misc.c | 274 ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0; local 308 xc = xc0; 311 z = *x++ * (ULLong)y + *xc + carry; 313 *xc++ = z & 0xffffffffUL; 316 *xc = carry; 324 xc = xc0; 327 z = (*x & 0xffff) * y + (*xc & 0xffff) + carry; 329 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry; 331 Storeinc(xc, z2, z); 334 *xc = carry; [all …]
|
/freebsd/contrib/bearssl/src/x509/ |
H A D | x509_minimal_full.c | 29 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 D | x509_knownkey.c | 87 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 D | custom_profile.c | 409 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 D | ssl_hs_client.c | 106 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() 194 const br_x509_class **xc; in verify_SKE_sig() local 200 xc = ctx->eng.x509ctx; in verify_SKE_sig() 201 pk = (*xc)->get_pkey(xc, NULL); in verify_SKE_sig() 277 const br_x509_class **xc; in make_pms_ecdh() local 280 xc = ctx->eng.x509ctx; in make_pms_ecdh() 281 pk = (*xc)->get_pkey(xc, NULL); in make_pms_ecdh() 345 const br_x509_class **xc; in make_pms_static_ecdh() local [all …]
|
H A D | ssl_client_full.c | 30 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 D | ssl_hs_server.c | 200 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() 407 const br_x509_class **xc; in verify_CV_sig() local 412 xc = ctx->eng.x509ctx; in verify_CV_sig() 413 pk = (*xc)->get_pkey(xc, NULL); in verify_CV_sig() 1445 const br_x509_class *xc; in br_ssl_hs_server_run() local 1449 xc = *(ENG->x509ctx); in br_ssl_hs_server_run() 1450 pk = xc->get_pkey(ENG->x509ctx, &usages); in br_ssl_hs_server_run() 1948 const br_x509_class *xc; in br_ssl_hs_server_run() local [all …]
|
/freebsd/lib/libvgl/ |
H A D | simple.c | 386 set4pixels(VGLBitmap *object, int x, int y, int xc, int yc, u_long color) in set4pixels() argument 389 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() 404 VGLEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color) in VGLEllipse() argument 410 set4pixels(object, x, y, xc, yc, color); in VGLEllipse() 418 set4pixels(object, x, y, xc, yc, color); in VGLEllipse() [all …]
|
/freebsd/contrib/bearssl/tools/ |
H A D | certs.c | 41 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 D | verify.c | 167 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/sys/contrib/device-tree/src/powerpc/fsl/ |
H A D | cyrus_p5020.dts | 76 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 D | mpc8536ds_36b.dts | 45 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 D | mpc8548cds_36b.dts | 33 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 D | mpc8572ds_36b.dts | 36 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 D | uart_bus.h | 179 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 D | uart_tty.c | 323 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 D | sha_local.h | 89 # define BODY_16_19(i,a,b,c,d,e,f,xi,xa,xb,xc,xd) \ argument 90 Xupdate(f,xi,xa,xb,xc,xd); \ 94 # define BODY_20_31(i,a,b,c,d,e,f,xi,xa,xb,xc,xd) \ argument 95 Xupdate(f,xi,xa,xb,xc,xd); \ 99 # define BODY_32_39(i,a,b,c,d,e,f,xa,xb,xc,xd) \ argument 100 Xupdate(f,xa,xa,xb,xc,xd); \ 104 # define BODY_40_59(i,a,b,c,d,e,f,xa,xb,xc,xd) \ argument 105 Xupdate(f,xa,xa,xb,xc,xd); \ 109 # define BODY_60_79(i,a,b,c,d,e,f,xa,xb,xc,xd) \ argument 110 Xupdate(f,xa,xa,xb,xc,xd); \ [all …]
|
/freebsd/lib/libsecureboot/ |
H A D | brf.c | 272 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 D | vets.c | 204 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 D | chacha-armv4.pl | 70 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 D | chacha-x86.pl | 377 my ($xa,$xa_,$xb,$xb_,$xc,$xc_,$xd,$xd_)=map("xmm$_",(0..7)); 415 &paddd ($xc,$xd); 417 &pxor ($xb,$xc); 429 &paddd ($xc,$xd); 432 &pxor ($xb,$xc); 442 ($xc,$xc_)=($xc_,$xc); 565 &movdqa ($xc, &QWP(16*8-128,"ebp")); 587 &movdqa (&QWP(16*8-128,"ebx"),$xc); 791 my ($xa,$xa_,$xb,$xb_,$xc,$xc_,$xd,$xd_)=map("xmm$_",(0..7)); 829 &vpaddd ($xc,$xc,$xd); [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/thermal/ |
H A D | ti_soc_thermal.txt | 70 reg = <0x4a0021e0 0xc 71 0x4a00232c 0xc 80 reg = <0x4a0021e0 0xc 81 0x4a00232c 0xc
|
/freebsd/contrib/netbsd-tests/ipf/expected/ |
H A D | bpf1 | 1 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" }
|
/freebsd/contrib/netbsd-tests/ipf/regress/ |
H A D | bpf-f1 | 1 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" }
|