HomeSort by: relevance | last modified time | path
    Searched defs:lst (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/arch/luna68k/dev/xplx/
Makefile 12 xplx.rom xplx.lst: xplx.asm
13 ${ZASM} -uwy xplx.asm || (rm -f xplx.rom xplx.lst ; exit 1)
22 xplxdefs.h: mkdefs.awk xplx.lst
23 ${TOOL_AWK} -f mkdefs.awk < xplx.lst > ${.TARGET}.tmp
28 rm -f xplxfirm.o xplx.rom xplx.lst xplx.inc
  /src/sys/dev/sysmon/
sysmon_taskq.c 208 struct sysmon_task *lst; local in function:sysmon_task_queue_sched_task
211 TAILQ_FOREACH(lst, &sysmon_task_queue, st_list) {
212 if (st->st_pri > lst->st_pri) {
213 TAILQ_INSERT_BEFORE(lst, st, st_list);
218 if (lst == NULL)
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/acr/
nouveau_nvkm_subdev_acr_base.c 331 struct nvkm_acr_lsf *lsf, *lst; local in function:nvkm_acr_dtor
347 list_for_each_entry_safe(lsf, lst, &acr->lsf, head) {
  /src/usr.bin/rpcgen/
rpc_util.c 107 findval(list *lst, const char *val, int (*cmp)(definition *, const char *))
110 for (; lst != NULL; lst = lst->next) {
111 if ((*cmp) (lst->val, val)) {
112 return (lst->val);
124 list *lst; local in function:storeval
128 lst = ALLOC(list);
129 lst->val = val;
130 lst->next = NULL
    [all...]
  /src/tests/lib/libc/gen/
t_fpsetmask.c 345 fp_except_t msk, lst[] = { FP_X_INV, FP_X_DZ, FP_X_OFL, FP_X_UFL }; local in function:ATF_TC_BODY
350 for (i = 0; i < __arraycount(lst); i++) {
351 fpsetmask(msk | lst[i]);
352 ATF_CHECK((fpgetmask() & lst[i]) != 0);
353 fpsetmask(msk & ~lst[i]);
354 ATF_CHECK((fpgetmask() & lst[i]) == 0);
  /src/sbin/iscsictl/
iscsic_daemonif.c 417 iscsid_get_list_req_t lst; local in function:do_list_targets
425 lst.list_kind = kind;
426 send_request(ISCSID_GET_LIST, sizeof(lst), &lst);
619 iscsid_get_list_req_t lst; local in function:list_isns_servers
630 lst.list_kind = ISNS_LIST;
631 send_request(ISCSID_GET_LIST, sizeof(lst), &lst);
751 iscsid_get_list_req_t lst; local in function:list_initiators
762 lst.list_kind = INITIATOR_LIST
    [all...]
  /src/usr.bin/xlint/lint1/
init.c 163 tspec_t lst = ltp->t_subt->t_tspec; local in function:can_init_character_array
167 ? lst == CHAR || lst == UCHAR || lst == SCHAR
168 : lst == WCHAR_TSPEC;
tree.c 2726 tspec_t lst = ltp->t_subt->t_tspec, rst = rtp->t_subt->t_tspec; local in function:check_pointer_comparison
2728 if (lst == VOID || rst == VOID) {
2731 (lst == FUNC || rst == FUNC)) {
2734 *(lst == FUNC ? &lsts : &rsts) = "function pointer";
2735 *(lst == VOID ? &lsts : &rsts) = "'void *'";
2747 if (lst == FUNC && rst == FUNC) {
2797 tspec_t lst = lstp->t_tspec; local in function:typeok_colon_pointer
2800 if ((lst == VOID && rst == FUNC) || (lst == FUNC && rst == VOID)) {
2937 tspec_t lt, tspec_t lst,
3178 tspec_t lt, rt, lst = NO_TSPEC, rst = NO_TSPEC; local in function:check_assign_types_compatible
    [all...]
  /src/usr.sbin/edquota/
edquota.c 724 int lst; local in function:editit
762 if (waitpid(pid, &lst, 0) == -1)
766 if (!WIFEXITED(lst) || WEXITSTATUS(lst) != 0)
  /src/usr.bin/crunch/crunchgen/
crunchgen.c 557 static void output_strlst(FILE *outf, strlst_t *lst);
1028 strlst_t *lst; local in function:prog_makefile_rules
1052 for (lst = vars; lst != NULL; lst = lst->next)
1053 fprintf(outmk, "%s\\n", lst->str);
1063 for (lst = vars; lst != NULL; lst = lst->next
    [all...]

Completed in 17 milliseconds