Home
last modified time | relevance | path

Searched refs:nlen (Results 1 – 6 of 6) sorted by relevance

/optee_os/ta/pkcs11/src/
H A Dserializer.c179 size_t nlen = 0; in serialize() local
181 if (ADD_OVERFLOW(*blen, len, &nlen)) in serialize()
184 buf = TEE_Realloc(*bstart, nlen); in serialize()
190 *blen = nlen; in serialize()
/optee_os/core/kernel/
H A Dlockdep.c159 size_t nlen = qe->pathlen + 1; in lockdep_graph_get_shortest_cycle() local
166 nlen * sizeof(uintptr_t)); in lockdep_graph_get_shortest_cycle()
174 qe->path[nlen - 1] = 0; in lockdep_graph_get_shortest_cycle()
180 size_t nlen = 0; in lockdep_graph_get_shortest_cycle() local
185 nlen = qe->pathlen + 1; in lockdep_graph_get_shortest_cycle()
190 nqe->path = malloc(nlen * sizeof(uintptr_t)); in lockdep_graph_get_shortest_cycle()
193 nqe->pathlen = nlen; in lockdep_graph_get_shortest_cycle()
196 nqe->path[nlen - 1] = e->to->lock_id; in lockdep_graph_get_shortest_cycle()
/optee_os/core/lib/zlib/
H A Dinflate.h117 unsigned nlen; /* number of length code lengths */ member
H A Dinflate.c936 state->nlen = BITS(5) + 257;
943 if (state->nlen > 286 || state->ndist > 30) {
976 while (state->have < state->nlen + state->ndist) {
1013 if (state->have + copy > state->nlen + state->ndist) {
1039 ret = inflate_table(LENS, state->lens, state->nlen, &(state->next),
1048 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
/optee_os/lib/libmbedtls/mbedtls/library/
H A Decp_curves.c4562 const mbedtls_mpi_uint *n, size_t nlen, in ecp_group_load() argument
4570 ecp_mpi_load(&grp->N, n, nlen); in ecp_group_load()
H A Decp_curves_new.c4530 const mbedtls_mpi_uint *n, size_t nlen, in ecp_group_load() argument
4538 ecp_mpi_load(&grp->N, n, nlen); in ecp_group_load()