Home | History | Annotate | Download | only in tests

Lines Matching refs:nl

33   struct nlist nl[6] =
45 if (nlist (".libs/test-nlist", nl) != 0
46 && nlist ("./test-nlist", nl) != 0)
52 for (cnt = 0; nl[cnt].n_name != NULL; ++cnt)
56 printf ("nl[%d].n_name = \"%s\"\n"
57 "nl[%d].n_value = %ld\n"
58 "nl[%d].n_scnum = %d\n"
59 "nl[%d].n_type = %u\n"
60 "nl[%d].n_sclass = %d\n"
61 "nl[%d].n_numaux = %d\n\n",
62 cnt, nl[cnt].n_name,
63 cnt, nl[cnt].n_value,
64 cnt, nl[cnt].n_scnum,
65 cnt, nl[cnt].n_type,
66 cnt, nl[cnt].n_sclass,
67 cnt, nl[cnt].n_numaux);
69 if ((cnt != 4 && nl[cnt].n_value == 0 && nl[cnt].n_scnum == 0
70 && nl[cnt].n_type == 0 && nl[cnt].n_sclass == 0
71 && nl[cnt].n_numaux == 0)
72 || (cnt == 4 && (nl[cnt].n_value != 0 || nl[cnt].n_scnum != 0
73 || nl[cnt].n_type != 0 || nl[cnt].n_sclass != 0
74 || nl[cnt].n_numaux != 0)))