Searched refs:nextra (Results 1 – 4 of 4) sorted by relevance
/freebsd/crypto/heimdal/lib/roken/ |
H A D | vis.c | 255 char *nextra = NULL; in rk_svis() local 259 MAKEEXTRALIST(flag, nextra, extra); in rk_svis() 260 if (!nextra) { in rk_svis() 265 dst = do_hvis(dst, c, flag, nextc, nextra); in rk_svis() 267 dst = do_svis(dst, c, flag, nextc, nextra); in rk_svis() 268 free(nextra); in rk_svis() 295 char *nextra = NULL; in rk_strsvis() local 301 MAKEEXTRALIST(flag, nextra, extra); in rk_strsvis() 302 if (!nextra) { in rk_strsvis() 308 dst = do_hvis(dst, c, flag, *src, nextra); in rk_strsvis() [all …]
|
/freebsd/contrib/lua/src/ |
H A D | ltm.c | 242 int nextra = actual - nfixparams; /* number of extra arguments */ in luaT_adjustvarargs() local 243 ci->u.l.nextraargs = nextra; in luaT_adjustvarargs() 260 int nextra = ci->u.l.nextraargs; in luaT_getvarargs() local 262 wanted = nextra; /* get all extra arguments available */ in luaT_getvarargs() 263 checkstackGCp(L, nextra, where); /* ensure stack space */ in luaT_getvarargs() 264 L->top.p = where + nextra; /* next instruction will need top */ in luaT_getvarargs() 266 for (i = 0; i < wanted && i < nextra; i++) in luaT_getvarargs() 267 setobjs2s(L, where + i, ci->func.p - nextra + i); in luaT_getvarargs()
|
H A D | ldebug.c | 186 int nextra = ci->u.l.nextraargs; in findvararg() local 187 if (n >= -nextra) { /* 'n' is negative */ in findvararg() 188 *pos = ci->func.p - nextra - (n + 1); in findvararg()
|
/freebsd/lib/libusb/ |
H A D | libusb10_desc.c | 106 uint16_t nextra; in libusb_get_config_descriptor() local 127 nextra = N_ALIGN(pconf->extra.len); in libusb_get_config_descriptor() 132 nextra += N_ALIGN(pinf->extra.len); in libusb_get_config_descriptor() 137 nextra += N_ALIGN(pend->extra.len); in libusb_get_config_descriptor() 145 nextra += N_ALIGN(pinf->extra.len); in libusb_get_config_descriptor() 150 nextra += N_ALIGN(pend->extra.len); in libusb_get_config_descriptor() 157 nextra = nextra + in libusb_get_config_descriptor() 163 nextra = N_ALIGN(nextra); in libusb_get_config_descriptor() 165 pconfd = malloc(nextra); in libusb_get_config_descriptor() 172 memset(pconfd, 0, nextra); in libusb_get_config_descriptor()
|