| /freebsd/crypto/openssl/crypto/asn1/ |
| H A D | a_time.c | 493 struct tm stm; in ossl_asn1_time_print_ex() local 497 if (!ossl_asn1_time_to_tm(&stm, tm)) in ossl_asn1_time_print_ex() 522 stm.tm_year + 1900, stm.tm_mon + 1, in ossl_asn1_time_print_ex() 523 stm.tm_mday, stm.tm_hour, in ossl_asn1_time_print_ex() 524 stm.tm_min, stm.tm_sec, f_len, f) in ossl_asn1_time_print_ex() 528 _asn1_mon[stm.tm_mon], stm.tm_mday, stm.tm_hour, in ossl_asn1_time_print_ex() 529 stm.tm_min, stm.tm_sec, f_len, f, in ossl_asn1_time_print_ex() 530 stm.tm_year + 1900) in ossl_asn1_time_print_ex() 537 stm.tm_year + 1900, stm.tm_mon + 1, in ossl_asn1_time_print_ex() 538 stm.tm_mday, stm.tm_hour, in ossl_asn1_time_print_ex() [all …]
|
| H A D | a_utctm.c | 77 struct tm stm, ttm; in ASN1_UTCTIME_cmp_time_t() local 80 if (!ossl_asn1_utctime_to_tm(&stm, s)) in ASN1_UTCTIME_cmp_time_t() 86 if (!OPENSSL_gmtime_diff(&day, &sec, &ttm, &stm)) in ASN1_UTCTIME_cmp_time_t()
|
| /freebsd/contrib/netbsd-tests/lib/libc/ttyio/ |
| H A D | t_ptm.c | 62 struct stat stm, sts; in ATF_TC_BODY() local 73 REQUIRE_ERRNO(fstat(fdm, &stm), -1); in ATF_TC_BODY() 74 ATF_REQUIRE_EQ(major(stm.st_rdev), 165); in ATF_TC_BODY() 86 REQUIRE_ERRNO(fstat(ptm.cfd, &stm), -1); in ATF_TC_BODY() 88 ATF_REQUIRE_EQ(stm.st_rdev, sts.st_rdev); in ATF_TC_BODY() 91 REQUIRE_ERRNO(fstat(ptm.sfd, &stm), -1); in ATF_TC_BODY() 93 ATF_REQUIRE_EQ(stm.st_rdev, sts.st_rdev); in ATF_TC_BODY() 127 struct stat stm, sts; in ATF_TC_BODY() local 139 REQUIRE_ERRNO(fstat(fdm, &stm), -1); in ATF_TC_BODY() 144 ATF_REQUIRE_EQ_MSG(major(stm.st_rdev), major(sts.st_rdev), in ATF_TC_BODY() [all …]
|
| /freebsd/contrib/lua/src/ |
| H A D | loslib.c | 232 static void setallfields (lua_State *L, struct tm *stm) { in setallfields() argument 233 setfield(L, "year", stm->tm_year, 1900); in setallfields() 234 setfield(L, "month", stm->tm_mon, 1); in setallfields() 235 setfield(L, "day", stm->tm_mday, 0); in setallfields() 236 setfield(L, "hour", stm->tm_hour, 0); in setallfields() 237 setfield(L, "min", stm->tm_min, 0); in setallfields() 238 setfield(L, "sec", stm->tm_sec, 0); in setallfields() 239 setfield(L, "yday", stm->tm_yday, 1); in setallfields() 240 setfield(L, "wday", stm->tm_wday, 1); in setallfields() 241 setboolfield(L, "isdst", stm->tm_isdst); in setallfields() [all …]
|
| /freebsd/contrib/atf/atf-c/detail/ |
| H A D | test_helpers.h | 43 #define CE(stm) ATF_CHECK(!atf_is_error(stm)) argument 44 #define RE(stm) ATF_REQUIRE(!atf_is_error(stm)) argument
|
| /freebsd/sys/contrib/device-tree/src/arm64/freescale/ |
| H A D | s32g3.dtsi | 426 compatible = "nxp,s32g3-stm", "nxp,s32g2-stm"; 435 compatible = "nxp,s32g3-stm", "nxp,s32g2-stm"; 444 compatible = "nxp,s32g3-stm", "nxp,s32g2-stm"; 453 compatible = "nxp,s32g3-stm", "nxp,s32g2-stm"; 653 compatible = "nxp,s32g3-stm", "nxp,s32g2-stm"; 662 compatible = "nxp,s32g3-stm", "nxp,s32g2-stm"; 671 compatible = "nxp,s32g3-stm", "nxp,s32g2-stm"; 896 compatible = "nxp,s32g3-stm", "nxp,s32g2-stm"; 905 compatible = "nxp,s32g3-stm", "nxp,s32g2-stm"; 914 compatible = "nxp,s32g3-stm", "nxp,s32g2-stm"; [all …]
|
| H A D | s32g2.dtsi | 368 compatible = "nxp,s32g2-stm"; 377 compatible = "nxp,s32g2-stm"; 386 compatible = "nxp,s32g2-stm"; 395 compatible = "nxp,s32g2-stm"; 582 compatible = "nxp,s32g2-stm"; 591 compatible = "nxp,s32g2-stm"; 600 compatible = "nxp,s32g2-stm";
|
| /freebsd/contrib/ntp/sntp/libopts/ |
| H A D | time.c | 109 struct tm stm; in optionTimeDate() local 112 if (getdate_r(od->optArg.argString, &stm) != 0) { in optionTimeDate() 120 tm = mktime(&stm); in optionTimeDate()
|
| /freebsd/sys/dev/spibus/ |
| H A D | spigen.c | 225 spigen_transfer_mmapped(struct cdev *cdev, struct spigen_transfer_mmapped *stm) in spigen_transfer_mmapped() argument 235 if (mmap->bufsize < stm->stm_command_length + stm->stm_data_length) in spigen_transfer_mmapped() 239 transfer.tx_cmd_sz = transfer.rx_cmd_sz = stm->stm_command_length; in spigen_transfer_mmapped() 241 (void *)((char *)mmap->kvaddr + stm->stm_command_length); in spigen_transfer_mmapped() 242 transfer.tx_data_sz = transfer.rx_data_sz = stm->stm_data_length; in spigen_transfer_mmapped()
|
| /freebsd/sys/contrib/device-tree/src/arm64/sprd/ |
| H A D | sc9836.dtsi | 181 stm@10006000 { 182 compatible = "arm,coresight-stm", "arm,primecell"; 185 reg-names = "stm-base", "stm-stimulus-base";
|
| H A D | sc9860.dtsi | 290 stm@10006000 { 291 compatible = "arm,coresight-stm", "arm,primecell"; 294 reg-names = "stm-base", "stm-stimulus-base";
|
| /freebsd/lib/libopencsd/ |
| H A D | Makefile | 11 ${OPENCSDSRC}/decoder/source/stm/ \ 16 ${OPENCSDSRC}/decoder/include/opencsd/stm/ \ 173 STMINCSDIR=${INCLUDEDIR}/opencsd/stm
|
| /freebsd/sys/contrib/device-tree/Bindings/arm/ |
| H A D | coresight.txt | 47 "arm,coresight-stm", "arm,primecell"; [1] 79 * reg-names: the only acceptable values are "stm-base" and 80 "stm-stimulus-base", each corresponding to the areas defined in "reg". 365 stm@20100000 { 366 compatible = "arm,coresight-stm", "arm,primecell"; 369 reg-names = "stm-base", "stm-stimulus-base";
|
| /freebsd/sys/dev/psci/ |
| H A D | smccc_arm.S | 48 stm r12, {r0-r3}
|
| /freebsd/crypto/openssl/crypto/chacha/asm/ |
| H A D | chacha-s390x.pl | 121 stm ($xc,$xc_,"$stdframe+4*8+4*$c0($sp)"); # reload pair of 'c's 274 &{$z? \&stmg:\&stm} ("%r6","%r15","6*$SIZE_T($sp)"); 298 stm (@t[0],@t[1],"$stdframe+4*8+4*10($sp)");# offload x[10]-x[11] 312 stm (@t[0],@t[1],"$stdframe+4*8+4*8($sp)"); # offload x[8]-x[9] 406 stm (@x[0],@x[7],"$stdframe+4*0($sp)"); 410 stm (@x[12],@x[15],"$stdframe+4*12($sp)"); 419 stm (@x[0],@x[3],"$stdframe+4*8($sp)"); 453 &{$z? \&stmg:\&stm} ("%r6","%r7","6*$SIZE_T($sp)"); 743 &{$z? \&stmg:\&stm} ("%r6","%r7","6*$SIZE_T($sp)");
|
| /freebsd/contrib/llvm-project/libunwind/src/ |
| H A D | UnwindRegistersSave.S | 840 stm r0!, {r0-r7} 844 stm r0!, {r1-r3} 858 @ 32bit thumb-2 restrictions for stm: 861 stm r0, {r0-r12}
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBTypeSummary.cpp | 147 [cb](ValueObject &valobj, Stream &stm, in CreateWithCallback() 154 stm.Write(stream.GetData(), stream.GetSize()); in CreateWithCallback()
|
| /freebsd/crypto/openssl/crypto/poly1305/asm/ |
| H A D | poly1305-s390x.pl | 117 &{$z? \&stmg:\&stm} ("%r2","%r3","0(%r4)"); 139 &{$z? \&stmg:\&stm} ("%r6","%r14","6*$SIZE_T($sp)"); 242 &{$z? \&stmg:\&stm} ("%r6","%r14","6*$SIZE_T($sp)"); 355 &{$z? \&stmg:\&stm} ("%r10","%r15","10*$SIZE_T($sp)"); 894 &{$z? \&stmg:\&stm} ("%r6","%r10","6*$SIZE_T($sp)");
|
| /freebsd/sys/contrib/device-tree/src/arm64/arm/ |
| H A D | juno-scmi.dtsi | 18 stm@20100000 {
|
| H A D | juno-base.dtsi | 215 stm_sys: stm@20100000 { 216 compatible = "arm,coresight-stm", "arm,primecell"; 219 reg-names = "stm-base", "stm-stimulus-base";
|
| /freebsd/etc/mtree/ |
| H A D | BSD.include.dist | 434 stm
|
| /freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
| H A D | msm8998-mtp.dts | 407 &stm {
|
| H A D | msm8998-mtp.dtsi | 355 &stm {
|
| H A D | msm8916.dtsi | 583 stm: stm@802000 { label 584 compatible = "arm,coresight-stm", "arm,primecell"; 587 reg-names = "stm-base", "stm-stimulus-base";
|
| /freebsd/sys/dev/bnxt/bnxt_en/ |
| H A D | if_bnxt.c | 4597 struct bnxt_ioctl_hwrm_fw_set_time *stm = in bnxt_priv_ioctl() local 4600 rc = bnxt_hwrm_fw_set_time(softc, stm->year, in bnxt_priv_ioctl() 4601 stm->month, stm->day, stm->hour, stm->minute, in bnxt_priv_ioctl() 4602 stm->second, stm->millisecond, stm->zone); in bnxt_priv_ioctl()
|