Home
last modified time | relevance | path

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

/freebsd/sys/arm/broadcom/bcm2835/
H A Dbcm2835_gpio.c210 bcm_gpio_func_str(uint32_t nfunc, char *buf, int bufsize) in bcm_gpio_func_str() argument
213 switch (nfunc) { in bcm_gpio_func_str()
244 bcm_gpio_str_func(char *func, uint32_t *nfunc) in bcm_gpio_str_func() argument
248 *nfunc = BCM2835_FSEL_GPIO_IN; in bcm_gpio_str_func()
250 *nfunc = BCM2835_FSEL_GPIO_OUT; in bcm_gpio_str_func()
252 *nfunc = BCM2835_FSEL_ALT0; in bcm_gpio_str_func()
254 *nfunc = BCM2835_FSEL_ALT1; in bcm_gpio_str_func()
256 *nfunc = BCM2835_FSEL_ALT2; in bcm_gpio_str_func()
258 *nfunc = BCM2835_FSEL_ALT3; in bcm_gpio_str_func()
260 *nfunc = BCM2835_FSEL_ALT4; in bcm_gpio_str_func()
[all …]
/freebsd/contrib/libedit/
H A Dmap.c935 el->el_map.nfunc = EL_NUM_FCNS; in map_init()
1142 ep = &el->el_map.help[el->el_map.nfunc]; in map_print_key()
1177 ep = &el->el_map.help[el->el_map.nfunc]; in map_print_some_keys()
1303 ep = &el->el_map.help[el->el_map.nfunc]; in map_bind()
1407 size_t nf = el->el_map.nfunc + 1; in map_addfunc()
1421 nf = (size_t)el->el_map.nfunc; in map_addfunc()
1427 el->el_map.nfunc++; in map_addfunc()
H A Dmap.h61 size_t nfunc; /* The number of functions/help items */ member
H A Dparse.c285 for (i = 0; i < el->el_map.nfunc; i++) in parse_cmd()
H A Dread.c524 if ((size_t)cmdnum >= el->el_map.nfunc) /* BUG CHECK command */ in el_wgets()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlvm.c796 StkId nfunc = nci->func; /* called function */ in luaV_execute()
799 StkId lim = nci->u.l.base + getproto(nfunc)->numparams; in luaV_execute()
804 for (aux = 0; nfunc + aux < lim; aux++) in luaV_execute()
805 setobjs2s(L, ofunc + aux, nfunc + aux); in luaV_execute()
806 oci->u.l.base = ofunc + (nci->u.l.base - nfunc); /* correct base */ in luaV_execute()
807 oci->top = L->top = ofunc + (L->top - nfunc); /* correct top */ in luaV_execute()
/freebsd/contrib/ntp/libntp/
H A Dntp_calendar.c103 systime_func_ptr nfunc in ntpcal_set_timefunc()
109 if (NULL == nfunc) in ntpcal_set_timefunc()
110 nfunc = &time; in ntpcal_set_timefunc()
111 systime_func = nfunc; in ntpcal_set_timefunc()
104 ntpcal_set_timefunc(systime_func_ptr nfunc) ntpcal_set_timefunc() argument