Home
last modified time | relevance | path

Searched full:ccs (Results 1 – 25 of 123) sorted by relevance

12345

/freebsd/sys/contrib/device-tree/Bindings/media/i2c/
H A Dmipi-ccs.yaml5 $id: http://devicetree.org/schemas/media/i2c/mipi-ccs.yaml#
8 title: MIPI CCS, SMIA++ and SMIA compliant camera sensors
15 CCS (Camera Command Set) is a raw Bayer camera sensor standard defined by the
30 - const: mipi-ccs-1.1
31 - const: mipi-ccs
33 - const: mipi-ccs-1.0
34 - const: mipi-ccs
116 compatible = "mipi-ccs-1.0", "mipi-ccs";
/freebsd/contrib/bmake/mk/sys/
H A DUnixWare.mk15 PATH ?= /usr/sbin:/usr/bin:/usr/ccs/bin:/usr/ccs/lib:/usr/ucb:${DEV_TOOLS_PREFIX}/bin
62 CPP ?= /usr/ccs/lib/cpp
92 LIBC ?= ${DESTDIR}/usr/ccs/lib/libc.a
95 LIBCURSES ?= ${DESTDIR}/usr/ccs/lib/libcurses.a
103 LIBL ?= ${DESTDIR}/usr/ccs/lib/libl.a
104 LIBM ?= ${DESTDIR}/usr/ccs/lib/libm.a
112 LIBTERMCAP ?= ${DESTDIR}/usr/ccs/lib/libtermcap.a
115 LIBY ?= ${DESTDIR}/usr/ccs/lib/liby.a
H A DOSF1.mk12 PATH ?=/usr/sbin:/usr/bin:/usr/ucb:/opt/gnu/bin:/usr/ccs/bin
54 CPP ?= /usr/ccs/lib/cpp
H A DSunOS.mk25 PATH ?=/usr/xpg4/bin:/usr/sbin:/usr/bin:/usr/ucb:/usr/sfw/bin:/opt/gnu/bin:/usr/ccs/bin:/usr/local/…
35 CPP ?= /usr/ccs/lib/cpp
/freebsd/contrib/lib9p/pytest/
H A Dclient.py80 def ccs(self, cid=None): member in TestState
177 Start a test case. Most callers must then do a ccs() to connect.
180 new ccs() will reconnect, if the server is still alive.
223 def ccs(self): member in TestCase
224 "call tstate ccs, turn socket.error connect failure into test fail"
227 ret = self.tstate.ccs()
437 tc.ccs()
447 clnt = tc.ccs()
457 clnt = tc.ccs()
472 clnt = tc.ccs()
[all …]
/freebsd/usr.sbin/bhyve/
H A Dpci_xhci.c160 uint32_t ccs; /* consumer cycle state */ member
184 #define ep_ccs _ep_trb_rings._epu_trb.ccs
350 uint64_t ringaddr, int ccs);
675 devep->ep_sctx_trbs[i].ccs = in pci_xhci_init_ep()
1297 devep->ep_sctx_trbs[streamid].ccs = in pci_xhci_cmd_set_tr()
1404 uint32_t ccs; /* cycle state (XHCI 4.9.2) */ in pci_xhci_complete_commands() local
1414 ccs = sc->opregs.crcr & XHCI_CRCR_LO_RCS; in pci_xhci_complete_commands()
1423 (ccs & XHCI_TRB_3_CYCLE_BIT)) in pci_xhci_complete_commands()
1427 " dwTrb3 x%08x, TRB_CYCLE %u/ccs %u", in pci_xhci_complete_commands()
1429 trb->dwTrb3 & XHCI_TRB_3_CYCLE_BIT, ccs)); in pci_xhci_complete_commands()
[all …]
H A Dusb_emul.c58 void *hci_data, int ccs) in usb_data_xfer_append() argument
69 xb->ccs = ccs; in usb_data_xfer_append()
H A Dusb_emul.h105 int ccs; member
157 void *buf, int blen, void *hci_data, int ccs);
/freebsd/contrib/tzdata/
H A Dchecktab.awk74 ccs = input_ccs[zone_NR] = $1
78 split(ccs, cca, /,/)
120 ccs = input_ccs[i]
121 if (!ccs) continue
123 split(ccs, cca, /,/)
/freebsd/crypto/openssl/test/
H A Ddtlstest.c472 * Test that swapping later records before Finished or CCS still works
516 /* Recv flight 2, send flight 3: ClientKeyExchange, CCS, Finished */ in test_swap_records()
521 /* Swap Finished and CCS within the datagram */ in test_swap_records()
528 /* Recv flight 3, send flight 4: datagram 0(NST, CCS) datagram 1(Finished) */ in test_swap_records()
540 /* Finished comes before NST/CCS */ in test_swap_records()
544 /* App data comes before NST/CCS */ in test_swap_records()
555 * Recv flight 4 (datagram 1): NST, CCS, + flight 5: app data in test_swap_records()
629 /* Recv flight 2, send flight 3: ClientKeyExchange, CCS, Finished */ in test_duplicate_app_data()
633 /* Recv flight 3, send flight 4: datagram 0(NST, CCS) datagram 1(Finished) */ in test_duplicate_app_data()
651 /* App data comes before NST/CCS */ in test_duplicate_app_data()
[all …]
H A Dasynciotest.c228 * We can't fragment anything after the ServerHello (or CCS <= in async_write()
309 * CCS) in test_asyncio()
H A Dtls13ccstest.c44 "Watch CCS filter"); in bio_f_watchccs_filter()
371 * Check there were no unexpected CCS messages, all record versions in test_tls13ccs()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp676 if (CodeCompletionString *CCS = Results[I].CreateCodeCompletionString( in ProcessCodeCompleteResults() local
679 OS << " : " << CCS->getAsString(); in ProcessCodeCompleteResults()
680 if (const char *BriefComment = CCS->getBriefComment()) in ProcessCodeCompleteResults()
691 if (CodeCompletionString *CCS = Results[I].CreateCodeCompletionString( in ProcessCodeCompleteResults() local
694 OS << " : " << CCS->getAsString(); in ProcessCodeCompleteResults()
728 static std::string getOverloadAsString(const CodeCompletionString &CCS) { in getOverloadAsString() argument
732 for (auto &C : CCS) { in getOverloadAsString()
763 if (CodeCompletionString *CCS = Candidates[I].CreateSignatureString( in ProcessOverloadCandidates() local
766 OS << "OVERLOAD: " << getOverloadAsString(*CCS) << "\n"; in ProcessOverloadCandidates()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp49 std::vector<Record *> CCs = Records.getAllDerivedDefinitions("CallingConv"); in run() local
55 for (Record *CC : CCs) { in run()
74 for (Record *CC : CCs) { in run()
363 // Transitively merge all delegated CCs into AssignedRegsMap. in EmitArgRegisterLists()
/freebsd/crypto/openssl/crypto/
H A Dssl_err.c84 {ERR_PACK(ERR_LIB_SSL, 0, SSL_R_CCS_RECEIVED_EARLY), "ccs received early"},
139 "data between ccs and finished"},
193 "got a fin before a ccs"},
214 "invalid ccs message"},
552 "unexpected ccs message"},
/freebsd/crypto/krb5/src/clients/ksu/
H A Dccache.c412 krb5_ccache_overwrite(krb5_context context, krb5_ccache ccs, krb5_ccache cct, in krb5_ccache_overwrite() argument
419 if (ks_ccache_is_initialized(context, ccs)) { in krb5_ccache_overwrite()
420 retval = krb5_get_nonexp_tkts(context, ccs, &ccs_creds_arr); in krb5_ccache_overwrite()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/
H A Dtst.schrock.ksh36 # /usr/ccs/bin/nm execs a 64-bit version of itself. DTrace uses libproc
/freebsd/crypto/openssl/ssl/record/
H A Drec_layer_d1.c290 * We now have application data between CCS and Finished. Most likely in dtls1_read_bytes()
480 * We can't process a CCS now, because previous handshake messages in dtls1_read_bytes()
509 * here, then retransmit our CCS and FINISHED. in dtls1_read_bytes()
/freebsd/sys/dev/ahci/
H A Dahci.c1377 int i, ccs, port, reset = 0; in ahci_ch_intr_main() local
1432 /* They also report wrong CCS, so try to guess one. */ in ahci_ch_intr_main()
1433 ccs = powerof2(cstatus) ? ffs(cstatus) - 1 : -1; in ahci_ch_intr_main()
1435 ccs = (ATA_INL(ch->r_mem, AHCI_P_CMD) & in ahci_ch_intr_main()
1438 //device_printf(dev, "%s ERROR is %08x cs %08x ss %08x rs %08x tfd %02x serr %08x fbs %08x ccs %d\n… in ahci_ch_intr_main()
1440 // serr, ATA_INL(ch->r_mem, AHCI_P_FBS), ccs); in ahci_ch_intr_main()
1462 ccs = 0; in ahci_ch_intr_main()
1497 if (i == ccs) in ahci_ch_intr_main()
1510 if (ch->numtslots == 0 && i != ccs && port != -2) in ahci_ch_intr_main()
1862 int ccs; in ahci_timeout() local
[all …]
/freebsd/crypto/openssh/
H A Dbuildpkg.sh.in110 [ -d /usr/ccs/bin ] && {
111 echo $PATH | grep ":/usr/ccs/bin" > /dev/null 2>&1
112 [ $? -ne 0 ] && PATH=$PATH:/usr/ccs/bin
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/ia32/
H A Dasm_linkage.h59 * /usr/ccs/bin/as prefixes are parsed as separate instructions
/freebsd/contrib/tcpdump/cmake/Modules/
H A DFindPCAP.cmake198 # being "a pcap-config in /usr/bin or /usr/ccs/bin" (the latter
203 "${PCAP_CONFIG}" STREQUAL /usr/ccs/bin/pcap-config)
/freebsd/sys/contrib/openzfs/lib/libspl/include/os/freebsd/sys/ia32/
H A Dasm_linkage.h62 * /usr/ccs/bin/as prefixes are parsed as separate instructions
/freebsd/contrib/byacc/test/
H A Drun_make.sh140 for name in /usr/ccs/bin/yacc
/freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/ia32/
H A Dasm_linkage.h80 * /usr/ccs/bin/as prefixes are parsed as separate instructions

12345