Home
last modified time | relevance | path

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

/external/openssh/openbsd-compat/
Dgetcwd.c63 size_t ptsize, upsize; in getcwd() local
92 if ((up = malloc(upsize = MAXPATHLEN)) == NULL) in getcwd()
94 eup = up + upsize; in getcwd()
137 if ((nup = realloc(up, upsize *= 2)) == NULL) in getcwd()
141 eup = up + upsize; in getcwd()
/external/openfst/src/lib/
Dmapped-file.cc71 off_t upsize = size + offset; in Map() local
72 void *map = mmap(0, upsize, PROT_READ, MAP_SHARED, fd, pos - offset); in Map()
77 region.size = upsize; in Map()