Home
last modified time | relevance | path

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

/freebsd-12.1/stand/efi/libefi/
H A Denv.c179 UINTN varalloc; in command_efi_show() local
274 varalloc = 1024; in command_efi_show()
275 varname = malloc(varalloc); in command_efi_show()
283 varsz = varalloc; in command_efi_show()
286 varalloc = varsz; in command_efi_show()
287 newnm = realloc(varname, varalloc); in command_efi_show()
/freebsd-12.1/contrib/gcclibs/libdecnumber/
H A DdecNumber.c2723 Unit *varalloc = NULL; /* -> allocated buffer, iff used */ in decDivideOp() local
2962 varalloc = (Unit *) malloc ((var1units + 1) * sizeof (Unit)); in decDivideOp()
2963 if (varalloc == NULL) in decDivideOp()
2968 var1 = varalloc; /* use the allocated space */ in decDivideOp()
3398 if (varalloc != NULL) in decDivideOp()
3399 free (varalloc); /* drop any storage we used */ in decDivideOp()