next 58 include/assemble.h struct _LABELTAB *next; /**<リスト次項目へのポインタ */ next 29 include/cerr.h struct _CERRLIST *next; /**<リスト次項目へのポインタ */ next 38 include/monitor.h struct _BPSLIST *next; /**<リスト次項目へのポインタ */ next 123 include/struct.h struct _CMDTAB *next; /**<リスト次項目へのポインタ */ next 23 src/cerr.c p = p->next = malloc_chk(sizeof(CERRLIST), "cerrlist->next"); next 26 src/cerr.c p->next = NULL; next 28 src/cerr.c p->next = cerrlist; next 39 src/cerr.c for(p = cerrlist; p != NULL; p = p->next) { next 63 src/cerr.c for(p = cerrlist; p != NULL; p = p->next) { next 83 src/cerr.c q = p->next; next 95 src/label.c for(p = labels[labelhash(prog, label)]; p != NULL; p = p->next) { next 130 src/label.c p->next = labels[h = labelhash(prog, label)]; next 143 src/label.c for(p = labels[i]; p != NULL; p = p->next) { next 166 src/label.c q = p->next; next 29 src/monitor.c for(p = bps[adrhash(adr)]; p != NULL; p = p->next) { next 52 src/monitor.c p->next = bps[h = adrhash(adr)]; next 67 src/monitor.c if(p->next == NULL) { next 70 src/monitor.c bps[h] = p->next; next 75 src/monitor.c for(; p->next != NULL; p = p->next) { next 76 src/monitor.c q = p->next; next 78 src/monitor.c p->next = q->next; next 96 src/monitor.c for(p = bps[i]; p != NULL; p = p->next) { next 111 src/monitor.c q = p->next; next 126 src/struct.c p->next = cmdtab[hash][hashval]; next 142 src/struct.c q = p->next; next 159 src/struct.c for(p = cmdtab[HASH_CMDTYPE][hash_cmdtype(cmd, type)]; p != NULL; p = p->next) { next 193 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { next 210 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { next 227 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { next 67 test/unit/addcerrlist/cmd.c for(p = cerrlist; p != NULL; p = p->next) {