Home
last modified time | relevance | path

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

/illumos-gate/usr/src/tools/cscope-fast/
H A Dinvlib.c106 unsigned postsize = POSTINC * sizeof (POSTING); in invmake() local
132 if ((POST = (POSTING *)malloc(postsize)) == NULL) { in invmake()
133 invcannotalloc(postsize); in invmake()
191 if (postptr + 10 > POST + postsize / sizeof (POSTING)) { in invmake()
193 postsize += POSTINC * sizeof (POSTING); in invmake()
194 if ((POST = realloc(POST, postsize)) == NULL) { in invmake()
195 invcannotalloc(postsize); in invmake()
201 "totpost=%ld\n", postsize, totpost); in invmake()