Home
last modified time | relevance | path

Searched refs:p (Results 1 – 25 of 262) sorted by relevance

1234567891011

/optee_os/lib/libmbedtls/mbedtls/library/
H A Dasn1parse.c28 int mbedtls_asn1_get_len(unsigned char **p, in mbedtls_asn1_get_len() argument
32 if ((end - *p) < 1) { in mbedtls_asn1_get_len()
36 if ((**p & 0x80) == 0) { in mbedtls_asn1_get_len()
37 *len = *(*p)++; in mbedtls_asn1_get_len()
39 int n = (**p) & 0x7F; in mbedtls_asn1_get_len()
43 if ((end - *p) <= n) { in mbedtls_asn1_get_len()
47 (*p)++; in mbedtls_asn1_get_len()
49 *len = (*len << 8) | **p; in mbedtls_asn1_get_len()
50 (*p)++; in mbedtls_asn1_get_len()
54 if (*len > (size_t) (end - *p)) { in mbedtls_asn1_get_len()
[all …]
H A Dasn1write.c24 int mbedtls_asn1_write_len(unsigned char **p, const unsigned char *start, size_t len) in mbedtls_asn1_write_len() argument
40 if (required > (*p - start)) { in mbedtls_asn1_write_len()
45 *--(*p) = MBEDTLS_BYTE_0(len); in mbedtls_asn1_write_len()
50 *--(*p) = (unsigned char) (0x80 + required - 1); in mbedtls_asn1_write_len()
56 int mbedtls_asn1_write_tag(unsigned char **p, const unsigned char *start, unsigned char tag) in mbedtls_asn1_write_tag() argument
58 if (*p - start < 1) { in mbedtls_asn1_write_tag()
62 *--(*p) = tag; in mbedtls_asn1_write_tag()
69 static int mbedtls_asn1_write_len_and_tag(unsigned char **p, in mbedtls_asn1_write_len_and_tag() argument
76 MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(p, start, len)); in mbedtls_asn1_write_len_and_tag()
77 MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(p, start, tag)); in mbedtls_asn1_write_len_and_tag()
[all …]
H A Dx509.c63 int mbedtls_x509_get_serial(unsigned char **p, const unsigned char *end, in mbedtls_x509_get_serial() argument
68 if ((end - *p) < 1) { in mbedtls_x509_get_serial()
73 if (**p != (MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_PRIMITIVE | 2) && in mbedtls_x509_get_serial()
74 **p != MBEDTLS_ASN1_INTEGER) { in mbedtls_x509_get_serial()
79 serial->tag = *(*p)++; in mbedtls_x509_get_serial()
81 if ((ret = mbedtls_asn1_get_len(p, end, &serial->len)) != 0) { in mbedtls_x509_get_serial()
85 serial->p = *p; in mbedtls_x509_get_serial()
86 *p += serial->len; in mbedtls_x509_get_serial()
97 int mbedtls_x509_get_alg_null(unsigned char **p, const unsigned char *end, in mbedtls_x509_get_alg_null() argument
102 if ((ret = mbedtls_asn1_get_alg_null(p, end, alg)) != 0) { in mbedtls_x509_get_alg_null()
[all …]
H A Dx509_csr.c43 static int x509_csr_get_version(unsigned char **p, in x509_csr_get_version() argument
49 if ((ret = mbedtls_asn1_get_int(p, end, ver)) != 0) { in x509_csr_get_version()
65 unsigned char **p, const unsigned char *end, in x509_csr_parse_extensions() argument
73 while (*p < end) { in x509_csr_parse_extensions()
79 if ((ret = mbedtls_asn1_get_tag(p, end, &len, in x509_csr_parse_extensions()
84 end_ext_data = *p + len; in x509_csr_parse_extensions()
87 if ((ret = mbedtls_asn1_get_tag(p, end_ext_data, &extn_oid.len, in x509_csr_parse_extensions()
93 extn_oid.p = *p; in x509_csr_parse_extensions()
94 *p += extn_oid.len; in x509_csr_parse_extensions()
97 if ((ret = mbedtls_asn1_get_bool(p, end_ext_data, &is_critical)) != 0 && in x509_csr_parse_extensions()
[all …]
H A Dx509_crl.c51 static int x509_crl_get_version(unsigned char **p, in x509_crl_get_version() argument
57 if ((ret = mbedtls_asn1_get_int(p, end, ver)) != 0) { in x509_crl_get_version()
76 static int x509_get_crl_ext(unsigned char **p, in x509_get_crl_ext() argument
82 if (*p == end) { in x509_get_crl_ext()
90 if ((ret = mbedtls_x509_get_ext(p, end, ext, 0)) != 0) { in x509_get_crl_ext()
94 end = ext->p + ext->len; in x509_get_crl_ext()
96 while (*p < end) { in x509_get_crl_ext()
108 if ((ret = mbedtls_asn1_get_tag(p, end, &len, in x509_get_crl_ext()
113 end_ext_data = *p + len; in x509_get_crl_ext()
116 if ((ret = mbedtls_asn1_get_tag(p, end_ext_data, &len, in x509_get_crl_ext()
[all …]
H A Dpkcs7.c40 static int pkcs7_get_next_content_len(unsigned char **p, unsigned char *end, in pkcs7_get_next_content_len() argument
45 ret = mbedtls_asn1_get_tag(p, end, len, MBEDTLS_ASN1_CONSTRUCTED in pkcs7_get_next_content_len()
49 } else if ((size_t) (end - *p) != *len) { in pkcs7_get_next_content_len()
61 static int pkcs7_get_version(unsigned char **p, unsigned char *end, int *ver) in pkcs7_get_version() argument
65 ret = mbedtls_asn1_get_int(p, end, ver); in pkcs7_get_version()
84 static int pkcs7_get_content_info_type(unsigned char **p, unsigned char *end, in pkcs7_get_content_info_type() argument
90 unsigned char *start = *p; in pkcs7_get_content_info_type()
92 ret = mbedtls_asn1_get_tag(p, end, &len, MBEDTLS_ASN1_CONSTRUCTED in pkcs7_get_content_info_type()
95 *p = start; in pkcs7_get_content_info_type()
98 *seq_end = *p + len; in pkcs7_get_content_info_type()
[all …]
H A Dssl_client.c31 unsigned char *p = buf; in ssl_write_hostname_ext() local
47 MBEDTLS_SSL_CHK_BUF_PTR(p, end, hostname_len + 9); in ssl_write_hostname_ext()
75 MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_SERVERNAME, p, 0); in ssl_write_hostname_ext()
76 p += 2; in ssl_write_hostname_ext()
78 MBEDTLS_PUT_UINT16_BE(hostname_len + 5, p, 0); in ssl_write_hostname_ext()
79 p += 2; in ssl_write_hostname_ext()
81 MBEDTLS_PUT_UINT16_BE(hostname_len + 3, p, 0); in ssl_write_hostname_ext()
82 p += 2; in ssl_write_hostname_ext()
84 *p++ = MBEDTLS_BYTE_0(MBEDTLS_TLS_EXT_SERVERNAME_HOSTNAME); in ssl_write_hostname_ext()
86 MBEDTLS_PUT_UINT16_BE(hostname_len, p, 0); in ssl_write_hostname_ext()
[all …]
H A Dssl_tls13_client.c51 unsigned char *p = buf; in ssl_tls13_write_supported_versions_ext() local
65 MBEDTLS_SSL_CHK_BUF_PTR(p, end, 5 + versions_len); in ssl_tls13_write_supported_versions_ext()
67 MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_SUPPORTED_VERSIONS, p, 0); in ssl_tls13_write_supported_versions_ext()
68 MBEDTLS_PUT_UINT16_BE(versions_len + 1, p, 2); in ssl_tls13_write_supported_versions_ext()
69 p += 4; in ssl_tls13_write_supported_versions_ext()
72 *p++ = versions_len; in ssl_tls13_write_supported_versions_ext()
78 mbedtls_ssl_write_version(p, MBEDTLS_SSL_TRANSPORT_STREAM, in ssl_tls13_write_supported_versions_ext()
84 mbedtls_ssl_write_version(p + 2, MBEDTLS_SSL_TRANSPORT_STREAM, in ssl_tls13_write_supported_versions_ext()
130 const unsigned char *p = buf; in ssl_tls13_parse_alpn_ext() local
150 MBEDTLS_SSL_CHK_BUF_READ_PTR(p, end, 2); in ssl_tls13_parse_alpn_ext()
[all …]
H A Dbignum_mod.c27 mbedtls_mpi_uint *p, in mbedtls_mpi_mod_residue_setup() argument
30 if (p_limbs != N->limbs || !mbedtls_mpi_core_lt_ct(p, N->p, N->limbs)) { in mbedtls_mpi_mod_residue_setup()
35 r->p = p; in mbedtls_mpi_mod_residue_setup()
47 r->p = NULL; in mbedtls_mpi_mod_residue_release()
56 N->p = NULL; in mbedtls_mpi_mod_modulus_init()
84 N->p = NULL; in mbedtls_mpi_mod_modulus_free()
110 memcpy(N.p, A, sizeof(mbedtls_mpi_uint) * limbs); in set_mont_const_square()
115 *X = RR.p; in set_mont_const_square()
116 RR.p = NULL; in set_mont_const_square()
127 const mbedtls_mpi_uint *p, in standard_modulus_setup() argument
[all …]
H A Dx509_create.c246 unsigned char *p = der + 1; in parse_attribute_value_hex_der_encoded() local
247 if (mbedtls_asn1_get_len(&p, der + der_length, data_len) != 0) { in parse_attribute_value_hex_der_encoded()
260 if (p[i] == 0) { in parse_attribute_value_hex_der_encoded()
270 memcpy(data, p, *data_len); in parse_attribute_value_hex_der_encoded()
287 mbedtls_asn1_buf oid = { .p = NULL, .len = 0, .tag = MBEDTLS_ASN1_NULL }; in mbedtls_x509_string_to_names()
312 oid.p = mbedtls_calloc(1, oid.len); in mbedtls_x509_string_to_names()
313 memcpy(oid.p, attr_descr->oid, oid.len); in mbedtls_x509_string_to_names()
323 mbedtls_free(oid.p); in mbedtls_x509_string_to_names()
332 mbedtls_free(oid.p); in mbedtls_x509_string_to_names()
337 mbedtls_free(oid.p); in mbedtls_x509_string_to_names()
[all …]
H A Dbignum.c92 void * const p[2] = { X->p, Y->p }; in mbedtls_mpi_lt_mpi_ct() local
94 mbedtls_ct_condition_t lt = mbedtls_mpi_core_lt_ct(p[i], p[i ^ 1], X->n); in mbedtls_mpi_lt_mpi_ct()
134 mbedtls_mpi_core_cond_assign(X->p, Y->p, Y->n, do_assign); in mbedtls_mpi_safe_cond_assign()
138 X->p[i] = mbedtls_ct_mpi_uint_if_else_0(do_not_assign, X->p[i]); in mbedtls_mpi_safe_cond_assign()
172 mbedtls_mpi_core_cond_swap(X->p, Y->p, X->n, do_swap); in mbedtls_mpi_safe_cond_swap()
195 X->p = NULL; in mpi_init()
217 if (X->p != NULL) { in mbedtls_mpi_free()
219 mbedtls_mpi_zeroize(X->p, X->n); in mbedtls_mpi_free()
220 mempool_free(mbedtls_mpi_mempool, X->p); in mbedtls_mpi_free()
222 mbedtls_mpi_zeroize_and_free(X->p, X->n); in mbedtls_mpi_free()
[all …]
H A Dx509_crt.c282 if (name->len < 3 || name->p[0] != '*' || name->p[1] != '.') { in x509_check_wildcard()
298 x509_memcasecmp(name->p + 1, cn + cn_idx, name->len - 1) == 0) { in x509_check_wildcard()
315 memcmp(a->p, b->p, b->len) == 0) { in x509_string_cmp()
322 x509_memcasecmp(a->p, b->p, b->len) == 0) { in x509_string_cmp()
350 memcmp(a->oid.p, b->oid.p, b->oid.len) != 0) { in x509_name_cmp()
395 static int x509_get_version(unsigned char **p, in x509_get_version() argument
402 if ((ret = mbedtls_asn1_get_tag(p, end, &len, in x509_get_version()
413 end = *p + len; in x509_get_version()
415 if ((ret = mbedtls_asn1_get_int(p, end, ver)) != 0) { in x509_get_version()
419 if (*p != end) { in x509_get_version()
[all …]
H A Dpkparse.c112 unsigned char *p = params->p; in pk_group_from_specified() local
113 const unsigned char *const end = params->p + params->len; in pk_group_from_specified()
119 if ((ret = mbedtls_asn1_get_int(&p, end, &ver)) != 0) { in pk_group_from_specified()
133 if ((ret = mbedtls_asn1_get_tag(&p, end, &len, in pk_group_from_specified()
138 end_field = p + len; in pk_group_from_specified()
148 if ((ret = mbedtls_asn1_get_tag(&p, end_field, &len, MBEDTLS_ASN1_OID)) != 0) { in pk_group_from_specified()
153 memcmp(p, MBEDTLS_OID_ANSI_X9_62_PRIME_FIELD, len) != 0) { in pk_group_from_specified()
157 p += len; in pk_group_from_specified()
160 if ((ret = mbedtls_asn1_get_mpi(&p, end_field, &grp->P)) != 0) { in pk_group_from_specified()
166 if (p != end_field) { in pk_group_from_specified()
[all …]
H A Dpkwrite.c62 static int pk_write_rsa_der(unsigned char **p, unsigned char *buf, in pk_write_rsa_der() argument
74 if (tmp_len > (size_t) (*p - buf)) { in pk_write_rsa_der()
78 *p -= tmp_len; in pk_write_rsa_der()
79 memcpy(*p, tmp, tmp_len); in pk_write_rsa_der()
85 return mbedtls_rsa_write_key(mbedtls_pk_rsa(*pk), buf, p); in pk_write_rsa_der()
94 static int pk_write_ec_pubkey(unsigned char **p, unsigned char *start, in pk_write_ec_pubkey() argument
109 if (*p < start || (size_t) (*p - start) < len) { in pk_write_ec_pubkey()
113 *p -= len; in pk_write_ec_pubkey()
114 memcpy(*p, buf, len); in pk_write_ec_pubkey()
119 static int pk_write_ec_pubkey(unsigned char **p, unsigned char *start, in pk_write_ec_pubkey() argument
[all …]
/optee_os/core/mm/
H A Dpgt_cache.c161 static bool pgt_entry_matches(struct pgt *p, vaddr_t begin, vaddr_t last) in pgt_entry_matches() argument
163 if (!p) in pgt_entry_matches()
167 return core_is_buffer_inside(p->vabase, CORE_MMU_PGDIR_SIZE, begin, in pgt_entry_matches()
175 struct pgt *p = NULL; in pgt_flush_range() local
181 p = SLIST_FIRST(pgt_cache); in pgt_flush_range()
182 while (pgt_entry_matches(p, begin, last)) { in pgt_flush_range()
184 free_pgt(p); in pgt_flush_range()
185 p = SLIST_FIRST(pgt_cache); in pgt_flush_range()
192 if (!p) in pgt_flush_range()
200 next_p = SLIST_NEXT(p, link); in pgt_flush_range()
[all …]
/optee_os/core/pta/tests/
H A Dinvoke.c35 paddr_t p = 0; in test_v2p2v() local
42 p = virt_to_phys(va); in test_v2p2v()
45 if (!p) in test_v2p2v()
49 v = phys_to_virt(p, MEM_AREA_TS_VASPACE, size); in test_v2p2v()
51 v = phys_to_virt(p, MEM_AREA_NSEC_SHM, size); in test_v2p2v()
53 v = phys_to_virt(p, MEM_AREA_SDP_MEM, size); in test_v2p2v()
55 v = phys_to_virt(p, MEM_AREA_SHM_VASPACE, size); in test_v2p2v()
66 EMSG("va %p -> pa 0x%" PRIxPA " -> va %p", va, p, v); in test_v2p2v()
77 TEE_Param p[TEE_NUM_PARAMS]) in test_entry_memref_null()
87 if (p[0].memref.buffer || p[0].memref.size) in test_entry_memref_null()
[all …]
/optee_os/lib/libutils/ext/include/
H A Datomic.h15 static inline bool atomic_cas_uint(unsigned int *p, unsigned int *oval, in atomic_cas_uint() argument
18 return __compiler_compare_and_swap(p, oval, nval); in atomic_cas_uint()
21 static inline bool atomic_cas_u32(uint32_t *p, uint32_t *oval, uint32_t nval) in atomic_cas_u32() argument
23 return __compiler_compare_and_swap(p, oval, nval); in atomic_cas_u32()
26 static inline int atomic_load_int(int *p) in atomic_load_int() argument
28 return __compiler_atomic_load(p); in atomic_load_int()
31 static inline short int atomic_load_short(short int *p) in atomic_load_short() argument
33 return __compiler_atomic_load(p); in atomic_load_short()
36 static inline unsigned int atomic_load_uint(unsigned int *p) in atomic_load_uint() argument
38 return __compiler_atomic_load(p); in atomic_load_uint()
[all …]
/optee_os/lib/libutee/arch/arm/gprof/
H A Dgprof.c130 struct gmonparam *p = &_gmonparam; in __utee_gprof_init() local
145 p->lowpc = ROUNDDOWN(lowpc, HISTFRACTION * sizeof(HISTCOUNTER)); in __utee_gprof_init()
146 p->highpc = ROUNDUP(highpc, HISTFRACTION * sizeof(HISTCOUNTER)); in __utee_gprof_init()
147 p->textsize = p->highpc - p->lowpc; in __utee_gprof_init()
148 p->kcountsize = ROUNDUP(p->textsize / HISTFRACTION, sizeof(*p->froms)); in __utee_gprof_init()
149 p->hashfraction = HASHFRACTION; in __utee_gprof_init()
150 p->log_hashfraction = -1; in __utee_gprof_init()
160 p->log_hashfraction = __builtin_ffs(p->hashfraction * in __utee_gprof_init()
161 sizeof(*p->froms)) - 1; in __utee_gprof_init()
163 p->fromssize = p->textsize / HASHFRACTION; in __utee_gprof_init()
[all …]
/optee_os/core/lib/libtomcrypt/src/ciphers/
H A Dmulti2.c12 static void s_pi1(ulong32 *p) in s_pi1() argument
14 p[1] ^= p[0]; in s_pi1()
17 static void s_pi2(ulong32 *p, const ulong32 *k) in s_pi2() argument
20 t = (p[1] + k[0]) & 0xFFFFFFFFUL; in s_pi2()
23 p[0] ^= t; in s_pi2()
26 static void s_pi3(ulong32 *p, const ulong32 *k) in s_pi3() argument
29 t = p[0] + k[1]; in s_pi3()
34 t = ROL(t, 16) ^ (p[0] | t); in s_pi3()
35 p[1] ^= t; in s_pi3()
38 static void s_pi4(ulong32 *p, const ulong32 *k) in s_pi4() argument
[all …]
/optee_os/core/include/
H A Dio.h22 #define READ_ONCE(p) __compiler_atomic_load(&(p)) argument
23 #define WRITE_ONCE(p, v) __compiler_atomic_store(&(p), (v)) argument
80 static inline uint64_t get_be64(const void *p) in get_be64() argument
82 return TEE_U64_FROM_BIG_ENDIAN(*(const uint64_t *)p); in get_be64()
85 static inline void put_be64(void *p, uint64_t val) in put_be64() argument
87 *(uint64_t *)p = TEE_U64_TO_BIG_ENDIAN(val); in put_be64()
90 static inline uint32_t get_be32(const void *p) in get_be32() argument
92 return TEE_U32_FROM_BIG_ENDIAN(*(const uint32_t *)p); in get_be32()
95 static inline void put_be32(void *p, uint32_t val) in put_be32() argument
97 *(uint32_t *)p = TEE_U32_TO_BIG_ENDIAN(val); in put_be32()
[all …]
/optee_os/core/lib/libtomcrypt/src/pk/ecc/
H A Dltc_ecc_points.c19 ecc_point *p; in ltc_ecc_new_point() local
20 p = XCALLOC(1, sizeof(*p)); in ltc_ecc_new_point()
21 if (p == NULL) { in ltc_ecc_new_point()
25 &p->x, &p->y, &p->z, LTC_NULL) != CRYPT_OK) { in ltc_ecc_new_point()
26 XFREE(p); in ltc_ecc_new_point()
29 return p; in ltc_ecc_new_point()
35 void ltc_ecc_del_point(ecc_point *p) in ltc_ecc_del_point() argument
38 if (p != NULL) { in ltc_ecc_del_point()
39 …mp_clear_multi(p->x, p->y, p->z, LTC_NULL); /* note: p->z may be NULL but that's ok with this func… in ltc_ecc_del_point()
40 XFREE(p); in ltc_ecc_del_point()
[all …]
/optee_os/lib/libutee/
H A Dtee_uuid_from_str.c46 const char *p = s; in tee_uuid_from_str() local
49 if (!p || strnlen(p, 37) != 36) in tee_uuid_from_str()
51 if (p[8] != '-' || p[13] != '-' || p[18] != '-' || p[23] != '-') in tee_uuid_from_str()
54 u.timeLow = parse_hex(p, 8, &res); in tee_uuid_from_str()
57 p += 9; in tee_uuid_from_str()
58 u.timeMid = parse_hex(p, 4, &res); in tee_uuid_from_str()
61 p += 5; in tee_uuid_from_str()
62 u.timeHiAndVersion = parse_hex(p, 4, &res); in tee_uuid_from_str()
65 p += 5; in tee_uuid_from_str()
67 u.clockSeqAndNode[i] = parse_hex(p, 2, &res); in tee_uuid_from_str()
[all …]
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/
H A Dasn1write.h53 int mbedtls_asn1_write_len(unsigned char **p, const unsigned char *start,
67 int mbedtls_asn1_write_tag(unsigned char **p, const unsigned char *start,
85 int mbedtls_asn1_write_raw_buffer(unsigned char **p, const unsigned char *start,
103 int mbedtls_asn1_write_mpi(unsigned char **p, const unsigned char *start,
119 int mbedtls_asn1_write_null(unsigned char **p, const unsigned char *start);
135 int mbedtls_asn1_write_oid(unsigned char **p, const unsigned char *start,
153 int mbedtls_asn1_write_algorithm_identifier(unsigned char **p,
174 int mbedtls_asn1_write_algorithm_identifier_ext(unsigned char **p,
192 int mbedtls_asn1_write_bool(unsigned char **p, const unsigned char *start,
209 int mbedtls_asn1_write_int(unsigned char **p, const unsigned char *start, int val);
[all …]
/optee_os/core/drivers/crypto/versal/
H A Drsa.c31 struct rsa_public_key *p = rsa_data->key.key; in do_encrypt() local
78 crypto_bignum_bn2bin_pad(rsa_data->key.n_size, p->n, key.buf); in do_encrypt()
80 p->e, (uint8_t *)key.buf + RSA_MAX_MOD_LEN); in do_encrypt()
123 struct rsa_keypair *p = rsa_data->key.key; in do_decrypt() local
169 crypto_bignum_bn2bin_pad(rsa_data->key.n_size, p->n, key.buf); in do_decrypt()
170 crypto_bignum_bn2bin_pad(rsa_data->key.n_size, p->d, in do_decrypt()
207 static TEE_Result do_ssa_sign(struct drvcrypt_rsa_ssa *p) in do_ssa_sign() argument
209 switch (p->algo) { in do_ssa_sign()
215 if (p->key.n_size != 128) { in do_ssa_sign()
219 return sw_crypto_acipher_rsassa_sign(p->algo, in do_ssa_sign()
[all …]
/optee_os/core/pta/
H A Dstats.c21 static TEE_Result get_alloc_stats(uint32_t type, TEE_Param p[TEE_NUM_PARAMS]) in get_alloc_stats()
42 pool_id = p[0].value.a; in get_alloc_stats()
50 if (p[1].memref.size < size_to_retrieve) { in get_alloc_stats()
51 p[1].memref.size = size_to_retrieve; in get_alloc_stats()
54 p[1].memref.size = size_to_retrieve; in get_alloc_stats()
55 stats = p[1].memref.buffer; in get_alloc_stats()
66 if (p[0].value.b) in get_alloc_stats()
77 phys_mem_stats(stats, p[0].value.b); in get_alloc_stats()
86 if (p[0].value.b) in get_alloc_stats()
94 if (rpmb_mem_stats(stats, p[0].value.b)) in get_alloc_stats()
[all …]

1234567891011