Home
last modified time | relevance | path

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

/titanic_41/usr/src/tools/cscope-fast/
H A Dinvlib.c108 unsigned postsize = POSTINC * sizeof (POSTING); in invmake() local
134 if ((POST = (POSTING *)malloc(postsize)) == NULL) { in invmake()
135 invcannotalloc(postsize); in invmake()
193 if (postptr + 10 > POST + postsize / sizeof (POSTING)) { in invmake()
195 postsize += POSTINC * sizeof (POSTING); in invmake()
196 if ((POST = realloc(POST, postsize)) == NULL) { in invmake()
197 invcannotalloc(postsize); in invmake()
203 "totpost=%ld\n", postsize, totpost); in invmake()