tag | line | file | source code |
new | 387 | arch/i386/kernel/irq.c | int setup_x86_irq(int irq, struct irqaction * new) |
new | 396 | arch/i386/kernel/irq.c | if (!(old->flags & new->flags & SA_SHIRQ)) |
new | 400 | arch/i386/kernel/irq.c | if ((old->flags ^ new->flags) & SA_INTERRUPT) |
new | 411 | arch/i386/kernel/irq.c | if (new->flags & SA_SAMPLE_RANDOM) |
new | 416 | arch/i386/kernel/irq.c | *p = new; |
new | 419 | arch/i386/kernel/irq.c | if (new->flags & SA_INTERRUPT) |
new | 47 | arch/i386/kernel/vm86.c | #define set_flags(X,new,mask) \ |
new | 48 | arch/i386/kernel/vm86.c | ((X) = ((X) & ~(mask)) | ((new) & (mask))) |
new | 39 | arch/ppc/kernel/process.c | switch_to(struct task_struct *new) |
new | 44 | arch/ppc/kernel/process.c | regs = (struct pt_regs *)new->tss.ksp; |
new | 50 | arch/ppc/kernel/process.c | new_tss = &new->tss; |
new | 52 | arch/ppc/kernel/process.c | current = new; |
new | 503 | drivers/char/apm_bios.c | callback_list_t * new; |
new | 505 | drivers/char/apm_bios.c | new = kmalloc(sizeof(callback_list_t), GFP_KERNEL); |
new | 506 | drivers/char/apm_bios.c | if (new == NULL) |
new | 508 | drivers/char/apm_bios.c | new->callback = callback; |
new | 509 | drivers/char/apm_bios.c | new->next = callback_list; |
new | 510 | drivers/char/apm_bios.c | callback_list = new; |
new | 212 | drivers/char/ftape/ftape-eof.c | eof_mark_union new; |
new | 217 | drivers/char/ftape/ftape-eof.c | new.mark.segment = segment; |
new | 218 | drivers/char/ftape/ftape-eof.c | new.mark.sector = sector; |
new | 228 | drivers/char/ftape/ftape-eof.c | new.mark.segment, new.mark.sector); |
new | 232 | drivers/char/ftape/ftape-eof.c | new.mark.segment, new.mark.sector); |
new | 233 | drivers/char/ftape/ftape-eof.c | ptr->entry = new.entry; |
new | 239 | drivers/char/ftape/ftape-eof.c | new.mark.segment, new.mark.sector, index, |
new | 242 | drivers/char/ftape/ftape-eof.c | ptr->entry = new.entry; |
new | 249 | drivers/char/ftape/ftape-eof.c | new.mark.segment, new.mark.sector, index); |
new | 250 | drivers/char/ftape/ftape-eof.c | ptr->entry = new.entry; |
new | 247 | drivers/net/dlci.c | int dlci_add(struct dlci_add *new) |
new | 256 | drivers/net/dlci.c | err = verify_area(VERIFY_READ, new, sizeof(*new)); |
new | 260 | drivers/net/dlci.c | memcpy_fromfs(&dlci, new, sizeof(dlci)); |
new | 332 | drivers/net/dlci.c | memcpy_tofs(new->devname, buf, strlen(buf) + 1); |
new | 3353 | drivers/net/ppp.c | struct compressor_link *new; |
new | 3356 | drivers/net/ppp.c | new = (struct compressor_link *) kmalloc (sizeof (struct compressor_link), GFP_KERNEL); |
new | 3358 | drivers/net/ppp.c | if (new == (struct compressor_link *) 0) |
new | 3366 | drivers/net/ppp.c | kfree (new); |
new | 3370 | drivers/net/ppp.c | new->next = ppp_compressors; |
new | 3371 | drivers/net/ppp.c | new->comp = cp; |
new | 3372 | drivers/net/ppp.c | ppp_compressors = new; |
new | 77 | fs/isofs/dir.c | static int isofs_name_translate(char * old, int len, char * new) |
new | 100 | fs/isofs/dir.c | new[i] = c; |
new | 158 | include/asm-mips/mipsregs.h | set_cp0_##name(unsigned int change, unsigned int new) \ |
new | 164 | include/asm-mips/mipsregs.h | res |= (new & change); \ |
new | 21 | include/linux/lists.h | #define DLIST_INSERT_AFTER(node, new, listnam) do { \ |
new | 22 | include/linux/lists.h | (new)->listnam.dl_prev = (node); \ |
new | 23 | include/linux/lists.h | (new)->listnam.dl_next = (node)->listnam.dl_next; \ |
new | 24 | include/linux/lists.h | (node)->listnam.dl_next->listnam.dl_prev = (new); \ |
new | 25 | include/linux/lists.h | (node)->listnam.dl_next = (new); \ |
new | 28 | include/linux/lists.h | #define DLIST_INSERT_BEFORE(node, new, listnam) do { \ |
new | 29 | include/linux/lists.h | (new)->listnam.dl_next = (node); \ |
new | 30 | include/linux/lists.h | (new)->listnam.dl_prev = (node)->listnam.dl_prev; \ |
new | 31 | include/linux/lists.h | (node)->listnam.dl_prev->listnam.dl_next = (new); \ |
new | 32 | include/linux/lists.h | (node)->listnam.dl_prev = (new); \ |
new | 39 | include/linux/smb.h | #define BSET(p,off,new) (*((byte *)(((void *)p)+off))=(new)) |
new | 40 | include/linux/smb.h | #define WSET(p,off,new) (*((word *)(((void *)p)+off))=(new)) |
new | 41 | include/linux/smb.h | #define DSET(p,off,new) (*((dword *)(((void *)p)+off))=(new)) |
new | 154 | scripts/tkcond.c | struct condition * new; |
new | 164 | scripts/tkcond.c | new = (struct condition *) malloc(sizeof(struct condition)); |
new | 165 | scripts/tkcond.c | memset(new, 0, sizeof(*new)); |
new | 166 | scripts/tkcond.c | new->op = op_lparen; |
new | 169 | scripts/tkcond.c | newcond = tail = new; |
new | 173 | scripts/tkcond.c | tail->next = new; |
new | 174 | scripts/tkcond.c | tail = new; |
new | 183 | scripts/tkcond.c | new = (struct condition *) malloc(sizeof(struct condition)); |
new | 184 | scripts/tkcond.c | memset(new, 0, sizeof(*new)); |
new | 185 | scripts/tkcond.c | new->op = ocond->op; |
new | 206 | scripts/tkcond.c | new->variable.cfg = cfg; |
new | 207 | scripts/tkcond.c | new->op = op_kvariable; |
new | 213 | scripts/tkcond.c | new->variable.str = strdup(ocond->variable.str); |
new | 218 | scripts/tkcond.c | new->variable.str = strdup(ocond->variable.str); |
new | 221 | scripts/tkcond.c | tail->next = new; |
new | 222 | scripts/tkcond.c | tail = new; |
new | 228 | scripts/tkcond.c | new = (struct condition *) malloc(sizeof(struct condition)); |
new | 229 | scripts/tkcond.c | memset(new, 0, sizeof(*new)); |
new | 230 | scripts/tkcond.c | new->op = op_rparen; |
new | 231 | scripts/tkcond.c | tail->next = new; |
new | 232 | scripts/tkcond.c | tail = new; |
new | 239 | scripts/tkcond.c | new = (struct condition *) malloc(sizeof(struct condition)); |
new | 240 | scripts/tkcond.c | memset(new, 0, sizeof(*new)); |
new | 241 | scripts/tkcond.c | new->op = op_and; |
new | 242 | scripts/tkcond.c | tail->next = new; |
new | 243 | scripts/tkcond.c | tail = new; |
new | 260 | scripts/tkcond.c | struct condition * new; |
new | 270 | scripts/tkcond.c | new = (struct condition *) malloc(sizeof(struct condition)); |
new | 271 | scripts/tkcond.c | memset(new, 0, sizeof(*new)); |
new | 272 | scripts/tkcond.c | new->op = ocond->op; |
new | 273 | scripts/tkcond.c | new->variable.cfg = ocond->variable.cfg; |
new | 276 | scripts/tkcond.c | newcond = tail = new; |
new | 280 | scripts/tkcond.c | tail->next = new; |
new | 281 | scripts/tkcond.c | tail = new; |
new | 285 | scripts/tkcond.c | new = (struct condition *) malloc(sizeof(struct condition)); |
new | 286 | scripts/tkcond.c | memset(new, 0, sizeof(*new)); |
new | 287 | scripts/tkcond.c | new->op = op_and; |
new | 288 | scripts/tkcond.c | tail->next = new; |
new | 289 | scripts/tkcond.c | tail = new; |