/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | coresight-cti.yaml | 13 a star topology via the Cross Trigger Matrix (CTM), which is not programmable. 25 CTIs are interconnected in a star topology via the CTM, using a number of 102 arm,cti-ctm-id: 105 Defines the CTM this CTI is connected to, in large systems with multiple 106 separate CTI/CTM nets. Typically multi-socket systems where the CTM is 262 arm,cti-ctm-id = <1>;
|
H A D | arm,coresight-cti.yaml | 13 a star topology via the Cross Trigger Matrix (CTM), which is not programmable. 24 CTIs are interconnected in a star topology via the CTM, using a number of 101 arm,cti-ctm-id: 104 Defines the CTM this CTI is connected to, in large systems with multiple 105 separate CTI/CTM nets. Typically multi-socket systems where the CTM is 278 arm,cti-ctm-id = <1>;
|
/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/ |
H A D | ctf.c | 296 struct ctf_member_v3 ctm; in write_type() local 397 ctm.ctm_name = CTF_TYPE_NAME(CTF_STRTAB_0, in write_type() 399 ctm.ctm_type = mp->ml_type->t_id; in write_type() 400 ctm.ctm_offset = mp->ml_offset; in write_type() 402 SWAP_32(ctm.ctm_name); in write_type() 403 SWAP_32(ctm.ctm_type); in write_type() 404 SWAP_32(ctm.ctm_offset); in write_type() 406 ctf_buf_write(b, &ctm, sizeof (ctm)); in write_type() 1212 struct ctf_member_v2 *ctm = v; in resurrect_types() local 1217 ctm->ctm_name); in resurrect_types() [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DAGISelMatcherOpt.cpp | 398 CheckTypeMatcher *CTM = cast_or_null<CheckTypeMatcher>( in FactorNodes() local 400 if (!CTM || in FactorNodes() 403 CTM->getType() == MVT::iPTR || in FactorNodes() 405 CTM->getResNo() != 0 || in FactorNodes() 408 !CTM->canMoveBefore(OptionsToMatch[i])) { in FactorNodes() 444 auto *CTM = cast<CheckTypeMatcher>(M); in FactorNodes() local 445 Matcher *MatcherWithoutCTM = OptionsToMatch[i]->unlinkNode(CTM); in FactorNodes() 446 MVT::SimpleValueType CTMTy = CTM->getType(); in FactorNodes() 447 delete CTM; in FactorNodes()
|
/freebsd/cddl/contrib/opensolaris/common/ctf/ |
H A D | ctf_types.c | 137 const struct ctf_member_v2 *ctm = v; in ctf_get_ctm_info() local 139 name = ctm->ctm_name; in ctf_get_ctm_info() 140 type = ctm->ctm_type; in ctf_get_ctm_info() 141 offset = ctm->ctm_offset; in ctf_get_ctm_info() 142 increment = sizeof(*ctm); in ctf_get_ctm_info() 153 const struct ctf_member_v3 *ctm = v; in ctf_get_ctm_info() local 155 name = ctm->ctm_name; in ctf_get_ctm_info() 156 type = ctm->ctm_type; in ctf_get_ctm_info() 157 offset = ctm->ctm_offset; in ctf_get_ctm_info() 158 increment = sizeof(*ctm); in ctf_get_ctm_info()
|
H A D | ctf_create.c | 105 struct ctf_member_v2 ctm; in ctf_copy_smembers() local 107 ctm.ctm_name = name; in ctf_copy_smembers() 108 ctm.ctm_type = (ushort_t)dmd->dmd_type; in ctf_copy_smembers() 109 ctm.ctm_offset = (ushort_t)dmd->dmd_offset; in ctf_copy_smembers() 111 sz = sizeof (ctm); in ctf_copy_smembers() 112 bcopy(&ctm, t, sz); in ctf_copy_smembers() 115 struct ctf_member_v3 ctm; in ctf_copy_smembers() local 117 ctm.ctm_name = name; in ctf_copy_smembers() 118 ctm.ctm_type = dmd->dmd_type; in ctf_copy_smembers() 119 ctm.ctm_offset = dmd->dmd_offset; in ctf_copy_smembers() [all …]
|
/freebsd/targets/pseudo/userland/ |
H A D | Makefile.depend | 512 usr.sbin/ctm/ctm \ 513 usr.sbin/ctm/ctm_dequeue \ 514 usr.sbin/ctm/ctm_rmail \ 515 usr.sbin/ctm/ctm_smail \
|
/freebsd/contrib/ntp/html/drivers/ |
H A D | tf582_4.html | 59 …r more detail, see <a href="http://www.npl.co.uk/npl/ctm/truetime.html">http://www.npl.co.uk/npl/c…
|
/freebsd/usr.bin/at/ |
H A D | at.c | 465 unsigned long ctm; in list_jobs() local 498 if(sscanf(dirent->d_name, "%c%5lx%8lx", &queue, &jobno, &ctm)!=3) in list_jobs() 508 runtimer = 60*(time_t) ctm; in list_jobs() 541 unsigned long ctm; in process_jobs() local 578 if(sscanf(dirent->d_name, "%c%5lx%8lx", &queue, &jobno, &ctm)!=3) in process_jobs()
|
/freebsd/share/dict/ |
H A D | freebsd | 32 CTM
|
/freebsd/libexec/atrun/ |
H A D | atrun.c | 450 unsigned long ctm; in main() local 541 if (sscanf(dirent->d_name,"%c%5lx%8lx",&queue,&jobno,&ctm) != 3) in main() 544 run_time = (time_t) ctm*60; in main()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
H A D | CSKYAsmPrinter.cpp | 255 const CSKYTargetMachine &CTM = static_cast<const CSKYTargetMachine &>(TM); in emitAttributes() local 258 const CSKYSubtarget STI(TT, CPU, /*TuneCPU=*/CPU, FS, CTM); in emitAttributes()
|
/freebsd/crypto/openssl/crypto/x509/ |
H A D | x509_vfy.c | 1851 int X509_cmp_current_time(const ASN1_TIME *ctm) in X509_cmp_current_time() argument 1853 return X509_cmp_time(ctm, NULL); in X509_cmp_current_time() 1856 int X509_cmp_time(const ASN1_TIME *ctm, time_t *cmp_time) in X509_cmp_time() argument 1879 switch (ctm->type) { in X509_cmp_time() 1881 if (ctm->length != (int)(utctime_length)) in X509_cmp_time() 1885 if (ctm->length != (int)(generalizedtime_length)) in X509_cmp_time() 1897 for (i = 0; i < ctm->length - 1; i++) { in X509_cmp_time() 1898 if (!ossl_ascii_isdigit(ctm->data[i])) in X509_cmp_time() 1901 if (ctm->data[ctm->length - 1] != upper_z) in X509_cmp_time() 1912 if (ASN1_TIME_diff(&day, &sec, ctm, asn1_cmp_time) == 0) in X509_cmp_time()
|
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | dt_cg.c | 1006 ctf_membinfo_t ctm; in dt_cg_asgn_op() local 1063 mnp->dn_membname, &ctm) == CTF_ERR) { in dt_cg_asgn_op() 1075 if (ctm.ctm_offset != 0) { in dt_cg_asgn_op() 1084 dt_cg_setx(dlp, r2, ctm.ctm_offset / NBBY); in dt_cg_asgn_op()
|
H A D | dt_parser.c | 1804 ctf_membinfo_t ctm; in dt_node_offsetof() local 1826 if (ctf_member_info(dtt.dtt_ctfp, type, name, &ctm) == CTF_ERR) { in dt_node_offsetof() 1832 dt_node_type_assign(&dn, dtt.dtt_ctfp, ctm.ctm_type, B_FALSE); in dt_node_offsetof() 1839 return (dt_node_int(ctm.ctm_offset / NBBY)); in dt_node_offsetof() 4286 ctf_membinfo_t ctm; in dt_cook_xlator() local 4297 mnp->dn_membname, &ctm) == CTF_ERR) { in dt_cook_xlator() 4305 dt_node_type_assign(mnp, dxp->dx_dst_ctfp, ctm.ctm_type, in dt_cook_xlator()
|
/freebsd/ |
H A D | UPDATING | 1136 The set of CTM commands (ctm, ctm_smail, ctm_rmail, ctm_dequeue) 1137 has been converted to a port (misc/ctm) and will be removed from 1138 FreeBSD-13. It is available as a package (ctm) for all supported
|
H A D | ObsoleteFiles.inc | 11152 # 20181215: Migration of CTM to ports 11153 OLD_FILES+=usr/sbin/ctm 11157 OLD_FILES+=usr/share/man/man1/ctm.1.gz 11161 OLD_FILES+=usr/share/man/man5/ctm.5.gz
|
/freebsd/sys/contrib/alpine-hal/ |
H A D | al_hal_nb_regs.h | 1151 /* CA15 CTM and Coresight CTI operate at same clock, bypass modes can be enabled but it's being set… 1153 /* CA15 CTM and Coresight CTI operate according to the same clock.
|
/freebsd/contrib/tcpdump/ |
H A D | print-802_15_4.c | 255 "CTM IE", /* 0x32 */ 1224 case 0x32: /* CTM IE */ in ieee802_15_4_print_mlme_ie()
|