Home
last modified time | relevance | path

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

/dports/devel/newt/newt-0.52.21/
H A Dentry.c20 int bufAlloced; member
52 en->bufAlloced = strlen(value) + 1; in newtEntrySet()
53 en->buf = malloc(en->bufAlloced); in newtEntrySet()
91 en->bufAlloced = width + 1; in newtEntry()
100 en->bufAlloced = strlen(initialValue) + 1; in newtEntry()
102 en->buf = malloc(en->bufAlloced); in newtEntry()
106 memset(en->buf, 0, en->bufAlloced); in newtEntry()
468 if ((en->bufUsed + i) >= en->bufAlloced) { in entryHandleKey()
469 en->bufAlloced += 20; in entryHandleKey()
470 en->buf = realloc(en->buf, en->bufAlloced); in entryHandleKey()
[all …]
H A Dtextbox.c142 int bufAlloced = strlen(text) + 40; in expandTabs() local
149 buf = malloc(bufAlloced + 1); in expandTabs()
151 if ((bufUsed + 10) > bufAlloced) { in expandTabs()
152 bufAlloced += strlen(text) / 2; in expandTabs()
153 buf = realloc(buf, bufAlloced + 1); in expandTabs()
/dports/archivers/rpm4/rpm-4.16.1.3/
H A DChangeLog106119 rpmurl.h: Add ctrl, data, buf, and bufAlloced to urlinfo. UFDSANE assertion.