| /freebsd/contrib/nvi/ex/ |
| H A D | ex_cscope.c | 197 CSC *csc; in cscope_add() local 260 CALLOC_RET(sp, csc, 1, sizeof(CSC) + len); in cscope_add() 261 csc->dname = csc->buf; in cscope_add() 262 csc->dlen = len; in cscope_add() 263 memcpy(csc->dname, np, len); in cscope_add() 265 csc->mtim = sb.st_mtimespec; in cscope_add() 267 csc->mtim = sb.st_mtim; in cscope_add() 269 csc->mtim.tv_sec = sb.st_mtime; in cscope_add() 270 csc->mtim.tv_nsec = 0; in cscope_add() 274 if (get_paths(sp, csc)) in cscope_add() [all …]
|
| /freebsd/usr.bin/tr/ |
| H A D | cset.c | 153 struct csclass *csc; in cset_in_hard() local 155 for (csc = cs->cs_classes; csc != NULL; csc = csc->csc_next) in cset_in_hard() 156 if (csc->csc_invert ^ (iswctype(ch, csc->csc_type) != 0)) in cset_in_hard() 200 struct csclass *csc; in cset_addclass() local 202 csc = malloc(sizeof(*csc)); in cset_addclass() 203 if (csc == NULL) in cset_addclass() 205 csc->csc_type = type; in cset_addclass() 206 csc->csc_invert = invert; in cset_addclass() 207 csc->csc_next = cs->cs_classes; in cset_addclass() 208 cs->cs_classes = csc; in cset_addclass()
|
| /freebsd/contrib/bearssl/mk/ |
| H A D | mkT0.cmd | 4 rem This script uses the command-line C# compiler csc.exe, which is 10 if exist "%SystemRoot%\Microsoft.NET\Framework\v3.5\csc.exe" ( 11 set CSC="%SystemRoot%\Microsoft.NET\Framework\v3.5\csc.exe" 14 if exist "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\csc.exe" ( 15 set CSC="%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\csc.exe" 18 if exist "%SystemRoot%\Microsoft.NET\Framework64\v3.5\csc.exe" ( 19 set CSC="%SystemRoot%\Microsoft.NET\Framework64\v3.5\csc.exe" 22 if exist "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\csc.exe" ( 23 set CSC="%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\csc.exe"
|
| H A D | mkT0.sh | 3 CSC=$(which mono-csc || which dmcs || echo "none")
|
| /freebsd/crypto/openssl/apps/ |
| H A D | verify.c | 266 X509_STORE_CTX *csc; in check() local 286 csc = X509_STORE_CTX_new(); in check() 287 if (csc == NULL) { in check() 294 if (!X509_STORE_CTX_init(csc, ctx, x, uchain)) { in check() 295 X509_STORE_CTX_free(csc); in check() 302 X509_STORE_CTX_set0_trusted_stack(csc, tchain); in check() 304 X509_STORE_CTX_set0_crls(csc, crls); in check() 305 i = X509_verify_cert(csc); in check() 306 if (i > 0 && X509_STORE_CTX_get_error(csc) == X509_V_OK) { in check() 312 chain = X509_STORE_CTX_get1_chain(csc); in check() [all …]
|
| /freebsd/crypto/openssl/crypto/cmp/ |
| H A D | cmp_vfy.c | 112 X509_STORE_CTX *csc = NULL; in OSSL_CMP_validate_cert_path() local 125 if ((csc = X509_STORE_CTX_new_ex(ctx->libctx, ctx->propq)) == NULL in OSSL_CMP_validate_cert_path() 126 || !X509_STORE_CTX_init(csc, trusted_store, in OSSL_CMP_validate_cert_path() 130 valid = X509_verify_cert(csc) > 0; in OSSL_CMP_validate_cert_path() 140 X509_STORE_CTX_free(csc); in OSSL_CMP_validate_cert_path() 147 X509_STORE_CTX *csc; in verify_cb_cert() local 152 if ((csc = X509_STORE_CTX_new()) != NULL in verify_cb_cert() 153 && X509_STORE_CTX_init(csc, ts, cert, NULL)) { in verify_cb_cert() 154 X509_STORE_CTX_set_error(csc, err); in verify_cb_cert() 155 X509_STORE_CTX_set_current_cert(csc, cert); in verify_cb_cert() [all …]
|
| H A D | cmp_genm.c | 228 X509_STORE_CTX *csc = NULL; in verify_ss_cert() local 236 if ((csc = X509_STORE_CTX_new_ex(libctx, propq)) == NULL in verify_ss_cert() 237 || !X509_STORE_CTX_init(csc, ts, target, untrusted)) in verify_ss_cert() 239 X509_STORE_CTX_set_flags(csc, X509_V_FLAG_CHECK_SS_SIGNATURE); in verify_ss_cert() 240 X509_STORE_CTX_set_verify_cb(csc, selfsigned_verify_cb); in verify_ss_cert() 241 ok = X509_verify_cert(csc) > 0; in verify_ss_cert() 244 X509_STORE_CTX_free(csc); in verify_ss_cert()
|
| H A D | cmp_client.c | 609 X509_STORE_CTX *csc = X509_STORE_CTX_new_ex(ctx->libctx, ctx->propq); in OSSL_CMP_certConf_cb() local 612 if (csc == NULL) in OSSL_CMP_certConf_cb() 614 if (!X509_STORE_CTX_init(csc, out_trusted, cert, ctx->untrusted)) in OSSL_CMP_certConf_cb() 617 X509_VERIFY_PARAM_clear_flags(X509_STORE_CTX_get0_param(csc), in OSSL_CMP_certConf_cb() 622 if (X509_verify_cert(csc) <= 0) in OSSL_CMP_certConf_cb() 625 if (!ossl_x509_add_certs_new(&chain, X509_STORE_CTX_get0_chain(csc), in OSSL_CMP_certConf_cb() 632 X509_STORE_CTX_free(csc); in OSSL_CMP_certConf_cb()
|
| /freebsd/sys/dev/pccbb/ |
| H A D | pccbb_pci.c | 664 uint8_t csc; in cbb_pci_filt() local 687 csc = exca_getb(&sc->exca, EXCA_CSC); in cbb_pci_filt() 688 if (csc & EXCA_CSC_READY) { in cbb_pci_filt()
|
| /freebsd/sys/contrib/device-tree/Bindings/display/mediatek/ |
| H A D | mediatek,disp.txt | 30 "mediatek,<chip>-disp-ovl" - overlay (4 layers, blending, csc) 31 "mediatek,<chip>-disp-ovl-2l" - overlay (2 layers, blending, csc)
|
| /freebsd/contrib/ntp/sntp/ |
| H A D | COPYRIGHT | 86 14. [15]Casey Crellin <casey@csc.co.za> vxWorks (Tornado) port and help 176 15. mailto:%20casey@csc.co.za
|
| /freebsd/contrib/ntp/ |
| H A D | COPYRIGHT | 86 14. [15]Casey Crellin <casey@csc.co.za> vxWorks (Tornado) port and help 176 15. mailto:%20casey@csc.co.za
|
| /freebsd/sys/contrib/device-tree/src/arm64/broadcom/ |
| H A D | bcm2712.dtsi | 379 "csc", 408 "csc",
|
| /freebsd/sys/contrib/device-tree/src/arm/broadcom/ |
| H A D | bcm2711.dtsi | 346 "csc", 387 "csc",
|
| /freebsd/contrib/sqlite3/ |
| H A D | Makefile.msc | 404 CSC = csc.exe
|
| /freebsd/libexec/bootpd/ |
| H A D | Changes | 25 01/02/95 Jukka Ukkonen <ukkonen@csc.fi>
|
| /freebsd/contrib/tcsh/ |
| H A D | Ported | 116 : [orban@kato.den.csci.csc.com (Tom Orban)
|
| H A D | Fixes | 1004 15. FreeBSD fixes Jukka Ukkonen <jau@jau.csc.fi>
|
| /freebsd/sys/contrib/device-tree/src/arm/ti/omap/ |
| H A D | dra7-l4.dtsi | 4212 "csc",
|