Home
last modified time | relevance | path

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

/bionic/libc/stdio/
Dvfscanf.cpp461 wchar_t* new_allocation = in __svfscanf() local
463 if (new_allocation == nullptr) goto allocation_failure; in __svfscanf()
464 allocation = wcp = new_allocation; in __svfscanf()
511 char* new_allocation = reinterpret_cast<char*>(realloc(allocation, capacity)); in __svfscanf() local
512 if (new_allocation == nullptr) goto allocation_failure; in __svfscanf()
513 allocation = p = new_allocation; in __svfscanf()