next 58 include/assemble.h struct _LABELTAB *next; /**<リスト次項目へのポインタ */ next 28 include/cerr.h struct _CERRLIST *next; /**<リスト次項目へのポインタ */ next 38 include/monitor.h struct _BPSLIST *next; /**<リスト次項目へのポインタ */ next 126 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 33 src/monitor.c for(p = bps[adrhash(adr)]; p != NULL; p = p->next) { next 56 src/monitor.c p->next = bps[h = adrhash(adr)]; next 71 src/monitor.c if(p->next == NULL) { next 74 src/monitor.c bps[h] = p->next; next 79 src/monitor.c for(; p->next != NULL; p = p->next) { next 80 src/monitor.c q = p->next; next 82 src/monitor.c p->next = q->next; next 100 src/monitor.c for(p = bps[i]; p != NULL; p = p->next) { next 115 src/monitor.c q = p->next; next 137 src/struct.c p->next = cmdtab[hash][hashval]; next 153 src/struct.c q = p->next; next 170 src/struct.c for(p = cmdtab[HASH_CMDTYPE][hash_cmdtype(cmd, type)]; p != NULL; p = p->next) { next 204 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { next 221 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { next 238 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) {