/optee_os-3.20.0/core/lib/scmi-server/ |
A D | sub.mk | 16 scpfw-integ-version-maj = 2 17 scpfw-integ-version-min = 11 18 scpfw-integ-version-pat = 0 19 scpfw-integ-version = $(scpfw-integ-version-maj).$(scpfw-integ-version-min).$(scpfw-integ-version-p… 46 cppflags-lib-y += -DBUILD_VERSION_MAJOR=$(scpfw-integ-version-maj) \ 47 -DBUILD_VERSION_MINOR=$(scpfw-integ-version-min) \ 48 -DBUILD_VERSION_PATCH=$(scpfw-integ-version-pat) 50 scpfw-impl-version := $(shell git -C $(scpfw-path) describe --tags --always --dirty=-dev 2>/dev/nul… 51 echo Unknown_$(scpfw-integ-version))
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/ec25519/ |
A D | ec25519_import_pkcs8.c | 31 unsigned long version, key_len; in ec25519_import_pkcs8() local 44 LTC_ASN1_SHORT_INTEGER, 1uL, &version, in ec25519_import_pkcs8() 53 if ((err == CRYPT_INPUT_TOO_LONG) && (version == 1)) { in ec25519_import_pkcs8() 54 version = 0; in ec25519_import_pkcs8() 67 if (version == 0) { in ec25519_import_pkcs8()
|
A D | ec25519_export.c | 29 unsigned long version, private_key_len = sizeof(private_key); in ec25519_export() local 57 version = 0; in ec25519_export() 59 LTC_ASN1_SHORT_INTEGER, 1uL, &version, in ec25519_export()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/dh/ |
A D | dh_import.c | 19 unsigned long version; in dh_import() local 31 LTC_ASN1_SHORT_INTEGER, 1UL, &version, in dh_import() 38 if (version == 0) { in dh_import() 42 LTC_ASN1_SHORT_INTEGER, 1UL, &version, in dh_import() 58 LTC_ASN1_SHORT_INTEGER, 1UL, &version, in dh_import()
|
A D | dh_export.c | 20 unsigned long version = 0; in dh_export() local 30 LTC_ASN1_SHORT_INTEGER, 1UL, &version, in dh_export() 41 LTC_ASN1_SHORT_INTEGER, 1UL, &version, in dh_export()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/rsa/ |
A D | rsa_import.c | 27 unsigned long version = -1; in rsa_import_pkcs1() local 29 err = der_decode_sequence_multi(in, inlen, LTC_ASN1_SHORT_INTEGER, 1UL, &version, in rsa_import_pkcs1() 48 if (version == 0) { in rsa_import_pkcs1() 51 LTC_ASN1_SHORT_INTEGER, 1UL, &version, in rsa_import_pkcs1() 64 } else if (version == 1) { in rsa_import_pkcs1()
|
A D | rsa_import_pkcs8.c | 51 unsigned long oid[16], version; in rsa_import_pkcs8() local 87 LTC_SET_ASN1(top_seq, 0, LTC_ASN1_SHORT_INTEGER, &version, 1UL); in rsa_import_pkcs8()
|
/optee_os-3.20.0/core/arch/riscv/kernel/ |
A D | link.mk | 27 ldargs-tee.elf := $(link-ldflags) $(link-objs) $(link-out-dir)/version.o \ 65 version-o-cflags = $(filter-out -g3,$(core-platform-cflags) \ 74 define gen-version-o 83 | $(CCcore) $(version-o-cflags) \ 84 -xc - -c -o $(link-out-dir)/version.o 87 $(link-out-dir)/version.o: 88 $(call gen-version-o) 99 cleanfiles += $(link-out-dir)/version.o 103 $(call gen-version-o)
|
/optee_os-3.20.0/core/arch/arm/plat-versal/ |
A D | main.c | 77 uint8_t version = 0; in platform_banner() local 81 if (versal_soc_version(&version)) { in platform_banner() 86 IMSG("Platform Versal:\tSilicon Revision v%"PRIu8, version); in platform_banner()
|
/optee_os-3.20.0/core/include/drivers/ |
A D | imx_mu.h | 21 uint8_t version; member 28 uint8_t version; member
|
A D | versal_pm.h | 12 TEE_Result versal_soc_version(uint8_t *version);
|
/optee_os-3.20.0/core/lib/libfdt/ |
A D | fdt.c | 59 size_t fdt_header_size_(uint32_t version) in fdt_header_size_() argument 61 if (version <= 1) in fdt_header_size_() 63 else if (version <= 2) in fdt_header_size_() 65 else if (version <= 3) in fdt_header_size_() 67 else if (version <= 16) in fdt_header_size_()
|
/optee_os-3.20.0/scripts/ |
A D | tee_bin_parser.py | 28 version = struct.unpack('<B', data)[0] 29 print("Version: \t0x{:02x}".format(version))
|
/optee_os-3.20.0/core/drivers/ |
A D | imx_sc_api.c | 100 .header.version = SC_RPC_VERSION, in sc_rm_get_partition() 135 .header.version = SC_RPC_VERSION, in sc_pm_set_resource_power_mode() 171 .header.version = SC_RPC_VERSION, in sc_rm_assign_resource() 269 .header.version = SC_RPC_VERSION, in imx_sc_seco_start_rng()
|
A D | zynqmp_pm.c | 184 TEE_Result zynqmp_soc_version(uint32_t *version) in zynqmp_soc_version() argument 188 if (!version) in zynqmp_soc_version() 191 res = zynqmp_sip_call(VERSION_ACCESS_SMC, 0, 0, 0, 0, version); in zynqmp_soc_version()
|
A D | versal_pm.c | 149 TEE_Result versal_soc_version(uint8_t *version) in versal_soc_version() argument 154 if (!version) in versal_soc_version() 160 *version = p.data[2] >> version_shift; in versal_soc_version()
|
/optee_os-3.20.0/ta/avb/ |
A D | user_ta.mk | 2 user-ta-version := 0
|
/optee_os-3.20.0/core/arch/arm/kernel/ |
A D | link.mk | 54 ldargs-tee.elf := $(link-ldflags) $(link-objs) $(link-out-dir)/version.o \ 108 init-ldadd := $(link-objs-init) $(link-out-dir)/version.o $(link-ldadd) \ 112 $(call gen-version-o) 154 version-o-cflags = $(filter-out -g3,$(core-platform-cflags) \ 163 define gen-version-o 172 | $(CCcore) $(version-o-cflags) \ 173 -xc - -c -o $(link-out-dir)/version.o 175 $(link-out-dir)/version.o: 176 $(call gen-version-o) 187 cleanfiles += $(link-out-dir)/version.o
|
A D | arm32_gicv3_sysreg.txt | 8 @ GIC architecture version 3.0 and version 4.0
|
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/ |
A D | x509write_crt.c | 48 ctx->version = MBEDTLS_X509_CRT_VERSION_3; in mbedtls_x509write_crt_init() 63 int version ) in mbedtls_x509write_crt_set_version() argument 65 ctx->version = version; in mbedtls_x509write_crt_set_version() 366 if( ctx->version == MBEDTLS_X509_CRT_VERSION_3 ) in mbedtls_x509write_crt_der() 445 if( ctx->version != MBEDTLS_X509_CRT_VERSION_1 ) in mbedtls_x509write_crt_der() 449 mbedtls_asn1_write_int( &c, buf, ctx->version ) ); in mbedtls_x509write_crt_der()
|
A D | x509_crl.c | 319 while( crl->version != 0 && crl->next != NULL ) in mbedtls_x509_crl_parse_der() 322 if( crl->version != 0 && crl->next == NULL ) in mbedtls_x509_crl_parse_der() 394 if( ( ret = x509_crl_get_version( &p, end, &crl->version ) ) != 0 || in mbedtls_x509_crl_parse_der() 401 if( crl->version < 0 || crl->version > 1 ) in mbedtls_x509_crl_parse_der() 407 crl->version++; in mbedtls_x509_crl_parse_der() 477 if( crl->version == 2 ) in mbedtls_x509_crl_parse_der() 639 prefix, crl->version ); in mbedtls_x509_crl_info()
|
/optee_os-3.20.0/lib/libutee/arch/arm/gprof/ |
A D | gmon_out.h | 93 int32_t version; member
|
/optee_os-3.20.0/core/kernel/ |
A D | ree_fs_ta.c | 73 uint32_t version; member 87 uint32_t version) in check_update_version() argument 151 if (db_entry.version > version) { in check_update_version() 154 } else if (db_entry.version < version) { in check_update_version() 156 db_entry.version = version; in check_update_version() 165 db_entry.version = version; in check_update_version() 307 pub_key.version); in ree_fs_ta_open()
|
/optee_os-3.20.0/lib/libutee/include/ |
A D | pta_rtc.h | 39 uint64_t version; member
|
/optee_os-3.20.0/core/arch/arm/plat-amlogic/scripts/ |
A D | aml_bin2img.py | 15 version = 0x00002710 variable 30 version,
|