Searched refs:BFRAG (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.1-release/contrib/ncurses/ncurses/tinfo/
H A Dread_termcap.c133 #define BFRAG 1024 macro
253 * + Allocate memory incrementally as needed in chunks of size BFRAG
290 if ((record = DOALLOC(topreclen + BFRAG)) == 0) {
296 r_end = rp + BFRAG;
304 if ((record = DOALLOC(BFRAG)) == 0) {
308 rp = r_end = record + BFRAG;
398 newsize = r_end - record + BFRAG;
531 newsize = r_end - record + diff + BFRAG;
/freebsd-10.1-release/crypto/heimdal/lib/roken/
H A Dgetcap.c54 #define BFRAG 1024 macro
227 * + Allocate memory incrementally as needed in chunks of size BFRAG
253 size_t len = topreclen + BFRAG;
261 r_end = rp + BFRAG;
267 if ((record = malloc(BFRAG)) == NULL) {
271 r_end = record + BFRAG;
422 newsize = r_end - record + BFRAG;
562 newsize = r_end - record + diff + BFRAG;
/freebsd-10.1-release/lib/libc/gen/
H A Dgetcap.c54 #define BFRAG 1024 macro
180 * + Allocate memory incrementally as needed in chunks of size BFRAG
208 if ((record = malloc (topreclen + BFRAG)) == NULL) {
216 r_end = rp + BFRAG;
222 if ((record = malloc(BFRAG)) == NULL) {
226 r_end = record + BFRAG;
339 newsize = r_end - record + BFRAG;
479 newsize = r_end - record + diff + BFRAG;

Completed in 54 milliseconds