Home
last modified time | relevance | path

Searched refs:last_alloc (Results 1 – 5 of 5) sorted by relevance

/external/libwebsockets/plugins/ssh-base/
Dsshd.c985 pss->last_alloc = sshd_zalloc(pss->len + 1); in lws_ssh_parse_plaintext()
987 pss->last_alloc, pss->state_after_string); in lws_ssh_parse_plaintext()
988 if (!pss->last_alloc) { in lws_ssh_parse_plaintext()
998 pss->last_alloc[pss->npos++] = *p++; in lws_ssh_parse_plaintext()
1001 pss->last_alloc[pss->npos] = '\0'; in lws_ssh_parse_plaintext()
1020 pss->ua->username = (char *)pss->last_alloc; in lws_ssh_parse_plaintext()
1021 pss->last_alloc = NULL; /* it was adopted */ in lws_ssh_parse_plaintext()
1027 pss->ua->service = (char *)pss->last_alloc; in lws_ssh_parse_plaintext()
1028 pss->last_alloc = NULL; /* it was adopted */ in lws_ssh_parse_plaintext()
1089 pss->ua->alg = (char *)pss->last_alloc; in lws_ssh_parse_plaintext()
[all …]
/external/libtextclassifier/native/utils/base/
Darena.cc450 bool BaseArena::AdjustLastAlloc(void *last_alloc, const size_t newsize) { in AllocNewBlock() argument
452 if (last_alloc == nullptr || last_alloc != last_alloc_) return false; in AllocNewBlock()
Darena.h142 bool AdjustLastAlloc(void* last_alloc, const size_t newsize);
/external/tensorflow/tensorflow/core/profiler/convert/
Dxplane_to_memory_profile.cc384 const int last_alloc = active_allocs.size() - 1; in ProcessActiveAllocations() local
385 while (i < last_alloc && active_allocs[i] == active_allocs[i + 1]) { in ProcessActiveAllocations()
/external/libwebsockets/plugins/ssh-base/include/
Dlws-ssh.h479 uint8_t *last_alloc; member