/freebsd/contrib/nvi/ex/ |
H A D | ex_cscope.c | 90 CSC *, char *, char **, size_t *, int *); 91 static int get_paths(SCR *, CSC *); 93 static int parse(SCR *, CSC *, TAGQ *, int *); 94 static int read_prompt(SCR *, CSC *); 95 static int run_cscope(SCR *, CSC *, char *); 97 static int terminate(SCR *, CSC *, int); 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() [all …]
|
/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" variable 14 if exist "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\csc.exe" ( 15 set CSC="%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\csc.exe" variable 18 if exist "%SystemRoot%\Microsoft.NET\Framework64\v3.5\csc.exe" ( 19 set CSC="%SystemRoot%\Microsoft.NET\Framework64\v3.5\csc.exe" variable 22 if exist "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\csc.exe" ( 23 set CSC="%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\csc.exe" variable 31 %CSC% /nologo /out:T0Comp.exe /main:T0Comp /res:T0\kern.t0,t0-kernel T0\*.cs
|
H A D | mkT0.sh | 3 CSC=$(which mono-csc || which dmcs || echo "none") 5 if [ $CSC = "none" ]; then 11 $CSC /out:T0Comp.exe /main:T0Comp /res:T0/kern.t0,t0-kernel T0/*.cs
|
/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/crypto/openssl/apps/ |
H A D | verify.c | 252 X509_STORE_CTX *csc; in check() local 272 csc = X509_STORE_CTX_new(); in check() 273 if (csc == NULL) { in check() 280 if (!X509_STORE_CTX_init(csc, ctx, x, uchain)) { in check() 281 X509_STORE_CTX_free(csc); in check() 288 X509_STORE_CTX_set0_trusted_stack(csc, tchain); in check() 290 X509_STORE_CTX_set0_crls(csc, crls); in check() 291 i = X509_verify_cert(csc); in check() 292 if (i > 0 && X509_STORE_CTX_get_error(csc) == X509_V_OK) { in check() 298 chain = X509_STORE_CTX_get1_chain(csc); in check() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/media/ |
H A D | ti,vpe.yaml | 26 - description: Color Space Conversion (CSC) register region 33 - const: csc 59 "csc",
|
/freebsd/sys/contrib/device-tree/Bindings/display/ |
H A D | brcm,bcm2711-hdmi.yaml | 26 - description: CSC register range 38 - const: csc 132 "csc",
|
H A D | amlogic,meson-vpu.yaml | 23 R |-------| CSC |----| Scalers | | Encp ----------|----|----HDMI-TX----| 34 This part is also in charge of the CSC (Colorspace Conversion).
|
H A D | renesas,cmm.yaml | 18 space conversion (CSC).
|
/freebsd/sys/dev/pccbb/ |
H A D | pccbb_pci.c | 366 /* CSC Interrupt: Card detect interrupt on */ in cbb_pci_attach() 453 * a bit for each of the CSC and Function interrupts we in cbb_chipinit() 593 * Need to tell ExCA registers to CSC interrupts route via PCI in cbb_chipinit() 595 * INTR_ENABLE and the other is to set CSC to 0. Since both in cbb_chipinit() 664 uint8_t csc; in cbb_pci_filt() local 669 * status change when we route CSC vis PCI. This isn't supposed to be in cbb_pci_filt() 687 csc = exca_getb(&sc->exca, EXCA_CSC); in cbb_pci_filt() 688 if (csc & EXCA_CSC_READY) { in cbb_pci_filt() 870 /* CSC Interrupt: Card detect interrupt on */ in cbb_pci_resume()
|
/freebsd/crypto/openssl/crypto/cmp/ |
H A D | cmp_client.c | 503 X509_STORE_CTX *csc = X509_STORE_CTX_new_ex(ctx->libctx, ctx->propq); in OSSL_CMP_certConf_cb() local 506 if (csc == NULL) in OSSL_CMP_certConf_cb() 508 if (!X509_STORE_CTX_init(csc, out_trusted, cert, ctx->untrusted)) in OSSL_CMP_certConf_cb() 511 X509_VERIFY_PARAM_clear_flags(X509_STORE_CTX_get0_param(csc), in OSSL_CMP_certConf_cb() 516 if (X509_verify_cert(csc) <= 0) in OSSL_CMP_certConf_cb() 519 if (!ossl_x509_add_certs_new(&chain, X509_STORE_CTX_get0_chain(csc), in OSSL_CMP_certConf_cb() 526 X509_STORE_CTX_free(csc); in OSSL_CMP_certConf_cb()
|
H A D | cmp_vfy.c | 109 X509_STORE_CTX *csc = NULL; in OSSL_CMP_validate_cert_path() local 122 if ((csc = X509_STORE_CTX_new_ex(ctx->libctx, ctx->propq)) == NULL in OSSL_CMP_validate_cert_path() 123 || !X509_STORE_CTX_init(csc, trusted_store, in OSSL_CMP_validate_cert_path() 127 valid = X509_verify_cert(csc) > 0; in OSSL_CMP_validate_cert_path() 137 X509_STORE_CTX_free(csc); in OSSL_CMP_validate_cert_path()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ReachableCode.cpp | 637 const CStyleCastExpr *CSC = cast<CStyleCastExpr>(S); in GetUnreachableLoc() local 638 R1 = CSC->getSubExpr()->getSourceRange(); in GetUnreachableLoc() 639 return CSC->getLParenLoc(); in GetUnreachableLoc() 650 const ObjCBridgedCastExpr *CSC = cast<ObjCBridgedCastExpr>(S); in GetUnreachableLoc() local 651 R1 = CSC->getSubExpr()->getSourceRange(); in GetUnreachableLoc() 652 return CSC->getLParenLoc(); in GetUnreachableLoc()
|
/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/nvi/common/ |
H A D | common.h | 27 typedef struct _csc CSC; typedef
|
/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/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
H A D | PDBTypes.h | 164 // Produced e.g. by `csc /debug`. The encoded data is its own mini-stream 176 // (CompressedDataSize is != 0 e.g. if `/embed` is passed to csc.exe.)
|
/freebsd/sys/contrib/device-tree/src/powerpc/ |
H A D | mvme5100.dts | 4 * Copyright 2013 CSC Australia Pty. Ltd.
|
/freebsd/share/mk/ |
H A D | bsd.dep.mk | 210 DEPENDSRCS+= ${SRCS:M*.[cSC]} ${SRCS:M*.cxx} ${SRCS:M*.cpp} ${SRCS:M*.cc} 211 DEPENDSRCS+= ${DPSRCS:M*.[cSC]} ${DPSRCS:M*.cxx} ${DPSRCS:M*.cpp} ${DPSRCS:M*.cc}
|
/freebsd/sys/contrib/openzfs/cmd/ |
H A D | zilstat.in | 47 "csc": [5, 1000, "zil_commit_stall_count"], 48 "cSc": [5, 1000, "zil_commit_suspend_count"],
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | BuiltinsHexagon.def | 70 TARGET_BUILTIN(__builtin_brev_ldb, "v*Sc*CSc*iC", "", V5)
|
/freebsd/contrib/ntp/html/ |
H A D | copyright.html | 84 <li><a href="mailto:%20casey@csc.co.za">Casey Crellin <casey@csc.co.za></a> vxWorks (Tornado) port and help with target configuration</li>
|
/freebsd/contrib/ntp/html/hints/ |
H A D | vxworks.html | 85 <p>Casey Crellin, casey@csc.co.za</p>
|
/freebsd/contrib/tcp_wrappers/ |
H A D | inetcf.c | 128 * Ukkonen <ukkonen@csc.fi>. in inet_cfg()
|