taglinefilesource code
source40arch/m68k/amiga/amiints.c#define IRQ_IDX(source) (source & ~IRQ_MACHSPEC)
source41arch/m68k/amiga/amiints.c#define CIA_IRQ_IDX(source) (IRQ_IDX(datap->baseirq) \
source42arch/m68k/amiga/amiints.c+(source-IRQ_AMIGA_CIAA_TA))
source327arch/m68k/amiga/amiints.cint amiga_add_isr (unsigned long source, isrfunc isr, int pri, void
source330arch/m68k/amiga/amiints.cunsigned long amiga_source = source & ~IRQ_MACHSPEC;
source334arch/m68k/amiga/amiints.cprintk ("amiga_add_isr: Unknown interrupt source %ld\n", source);
source350arch/m68k/amiga/amiints.cif (source >= IRQ_AMIGA_CIAA_TA && source <= IRQ_AMIGA_CIAA_FLG)
source351arch/m68k/amiga/amiints.cciaa.icr = 0x80 | (1 << (source - IRQ_AMIGA_CIAA_TA));
source354arch/m68k/amiga/amiints.cif (source >= IRQ_AMIGA_CIAB_TA && source <= IRQ_AMIGA_CIAB_FLG)
source355arch/m68k/amiga/amiints.cciab.icr = 0x80 | (1 << (source - IRQ_AMIGA_CIAB_TA));
source427arch/m68k/atari/ataints.cint atari_add_isr(unsigned long source, isrfunc isr, int type, void
source432arch/m68k/atari/ataints.csource &= ~IRQ_MACHSPEC;
source438arch/m68k/atari/ataints.cif (!IS_VALID_INTNO(source)) {
source440arch/m68k/atari/ataints.csource, name );
source443arch/m68k/atari/ataints.cvector = IRQ_SOURCE_TO_VECTOR(source);
source450arch/m68k/atari/ataints.c(source < STMFP_SOURCE_BASE || source >= SCC_SOURCE_BASE)) {
source452arch/m68k/atari/ataints.csource, name );
source458arch/m68k/atari/ataints.cirq_handler[source].isr = isr;
source459arch/m68k/atari/ataints.cirq_handler[source].data = data;
source460arch/m68k/atari/ataints.cirq_param[source].type = type;
source461arch/m68k/atari/ataints.cirq_param[source].name = name;
source463arch/m68k/atari/ataints.c(type == IRQ_TYPE_SLOW) ? slow_handlers[source-STMFP_SOURCE_BASE] :
source467arch/m68k/atari/ataints.catari_turnon_irq(source);
source468arch/m68k/atari/ataints.catari_enable_irq(source);
source472arch/m68k/atari/ataints.celse if (irq_param[source].type == type) {
source480arch/m68k/atari/ataints.cif (irq_handler[source].isr != atari_call_isr_list) {
source484arch/m68k/atari/ataints.cp->isr = irq_handler[source].isr;
source485arch/m68k/atari/ataints.cp->data = irq_handler[source].data;
source486arch/m68k/atari/ataints.cp->name = irq_param[source].name;
source489arch/m68k/atari/ataints.cirq_handler[source].isr = atari_call_isr_list;
source490arch/m68k/atari/ataints.cirq_handler[source].data = p;
source491arch/m68k/atari/ataints.cirq_param[source].name = "chained";
source500arch/m68k/atari/ataints.cp->next = irq_handler[source].data;
source501arch/m68k/atari/ataints.cirq_handler[source].data = p;
source508arch/m68k/atari/ataints.csource, name );
source514arch/m68k/atari/ataints.cint atari_remove_isr(unsigned long source, isrfunc isr)
source520arch/m68k/atari/ataints.csource &= ~IRQ_MACHSPEC;
source522arch/m68k/atari/ataints.cif (!IS_VALID_INTNO(source)) {
source523arch/m68k/atari/ataints.cprintk("atari_remove_isr: Unknown irq %ld\n", source);
source527arch/m68k/atari/ataints.cvector = IRQ_SOURCE_TO_VECTOR(source);
source534arch/m68k/atari/ataints.cif (irq_handler[source].isr != atari_call_isr_list) {
source536arch/m68k/atari/ataints.cif (irq_handler[source].isr != isr) {
source540arch/m68k/atari/ataints.cirq_handler[source].isr = NULL;
source541arch/m68k/atari/ataints.cirq_handler[source].data = NULL;
source542arch/m68k/atari/ataints.cirq_param[source].name = NULL;
source545arch/m68k/atari/ataints.catari_disable_irq(source);
source546arch/m68k/atari/ataints.catari_turnoff_irq(source);
source553arch/m68k/atari/ataints.cfor( p = (isr_node_t **)&irq_handler[source].data; *p; p = &(*p)->next ) {
source566arch/m68k/atari/ataints.cq = (isr_node_t *)irq_handler[source].data;
source568arch/m68k/atari/ataints.cirq_handler[source].isr = q->isr;
source569arch/m68k/atari/ataints.cirq_handler[source].data = q->data;
source570arch/m68k/atari/ataints.cirq_param[source].name = q->name;
source590arch/m68k/atari/ataints.cunsigned long source;
source595arch/m68k/atari/ataints.csource = next_free_vme_vec | IRQ_MACHSPEC;
source597arch/m68k/atari/ataints.creturn source;
source10arch/m68k/fpsp040/fpsp.h|  actual or intended publication of such source code.
source159arch/m68k/fpsp040/fpsp.h.set  STAG,LV-40    | source tag (1 byte)
source163arch/m68k/fpsp040/fpsp.h.set  stag_mask,0xE0    | upper 3 bits are source tag type
source114arch/m68k/kernel/ints.cint add_isr (unsigned long source, isrfunc isr, int pri, void *data,
source119arch/m68k/kernel/ints.cif (source & IRQ_MACHSPEC)
source121arch/m68k/kernel/ints.creturn mach_add_isr (source, isr, pri, data, name);
source124arch/m68k/kernel/ints.cif (source < IRQ1 || source > IRQ7)
source125arch/m68k/kernel/ints.cpanic ("add_isr: Incorrect IRQ source %ld from %s\n", source, name);
source136arch/m68k/kernel/ints.cinsert_isr (&isr_list[source-1], p);
source141arch/m68k/kernel/ints.cint remove_isr (unsigned long source, isrfunc isr)
source143arch/m68k/kernel/ints.cif (source & IRQ_MACHSPEC)
source144arch/m68k/kernel/ints.creturn mach_remove_isr (source, isr);
source146arch/m68k/kernel/ints.cif (source < IRQ1 || source > IRQ7) {
source147arch/m68k/kernel/ints.cprintk ("remove_isr: Incorrect IRQ source %ld\n", source);
source151arch/m68k/kernel/ints.cdelete_isr (&isr_list[source - 1], isr);
source638drivers/cdrom/cm206.cuch * source, * dest;
source656drivers/cdrom/cm206.csource = ((uch *) cd->sector) + 16 + 
source658drivers/cdrom/cm206.cmemcpy(dest, source, 512); 
source661drivers/cdrom/cm206.csource =  ((uch *) cd->sector)+16+quarter*512;
source662drivers/cdrom/cm206.cmemcpy(dest, source, 512); 
source72drivers/char/ftape/ftape-write.cint copy_and_gen_ecc(char *destination, byte * source,
source90drivers/char/ftape/ftape-write.cmemcpy(mseg.data, source, (mseg.blocks - 3) * SECTOR_SIZE);
source567drivers/isdn/isdn_net.cunsigned short source;
source627drivers/isdn/isdn_net.csprintf(addinfo, " TCP, port: %d -> %d", ntohs(ipp->source),
source638drivers/isdn/isdn_net.csprintf(addinfo, " UDP, port: %d -> %d", ntohs(ipp->source),
source475drivers/net/arcnet.cu_char  source,    /* source ARCnet - filled in automagically */
source2184drivers/net/arcnet.csaddr=arcpacket->hardheader.source;
source2195drivers/net/arcnet.carcpacket->hardheader.source=0;
source129drivers/net/ni52.hunsigned char  source[6];  /* ethernet-address, source */
source297drivers/net/slhc.c&& th->source == cs->cs_tcp.source
source11drivers/sound/hex2hex.hfprintf(stderr, "%s: " why "\n", source); \
source15drivers/sound/hex2hex.hint loadhex(FILE *inf, unsigned char *buf, char *source)
source68drivers/sound/hex2hex.hint hex2hex(char *source, char *target, char *varline)
source75drivers/sound/hex2hex.hif ((inf=fopen(source, "r"))==NULL)
source77drivers/sound/hex2hex.hperror(source);
source88drivers/sound/hex2hex.hl=loadhex(inf, buf, source);
source56fs/ncpfs/ncplib_kernel.cncp_add_mem(struct ncp_server *server, const void *source, int size)
source59fs/ncpfs/ncplib_kernel.cmemcpy(&(server->packet[server->current_size]), source, size);
source65fs/ncpfs/ncplib_kernel.cncp_add_mem_fromfs(struct ncp_server *server, const char *source, int size)
source68fs/ncpfs/ncplib_kernel.cmemcpy_fromfs(&(server->packet[server->current_size]), source, size);
source589fs/ncpfs/ncplib_kernel.cconst char *source, int *bytes_written)
source598fs/ncpfs/ncplib_kernel.cncp_add_mem_fromfs(server, source, to_write);
source121fs/ncpfs/ncplib_kernel.hconst char *source, int *bytes_written);
source699fs/smbfs/sock.cunsigned const char *source, int length)
source735fs/smbfs/sock.cresult = _send(sock, (void *)source, length, 0, 0);
source92include/asm-m68k/irq.hextern int add_isr (unsigned long source, isrfunc isr, int pri, void
source98include/asm-m68k/irq.hextern int remove_isr (unsigned long source, isrfunc isr);
source21include/asm-m68k/machdep.hextern int (*mach_add_isr) (unsigned long source, isrfunc handler,
source23include/asm-m68k/machdep.hextern int (*mach_remove_isr) (unsigned long source, isrfunc handler);
source100include/asm-mips/mipsregs.h#define read_32bit_cp0_register(source)                         \
source103include/asm-mips/mipsregs.h"mfc0\t%0,"STR(source)                                  \
source107include/asm-mips/mipsregs.h#define read_64bit_cp0_register(source)                         \
source111include/asm-mips/mipsregs.h"dmfc0\t%0,"STR(source)"\n\t"                           \
source169include/linux/smb_fs.hunsigned const char *source, int length);
source24include/linux/tcp.h__u16  source;
source22include/linux/udp.hunsigned short  source;
source507net/ipv4/af_inet.csk->dummy_th.source = ntohs(sk->num);
source717net/ipv4/af_inet.csk->dummy_th.source = ntohs(sk->num);
source915net/ipv4/af_inet.csk->dummy_th.source = ntohs(sk->num);
source1113net/ipv4/af_inet.csin->sin_port = sk->dummy_th.source;
source743net/ipv4/icmp.cstatic void icmp_redirect(struct icmphdr *icmph, struct sk_buff *skb, struct device *dev, __u32 source, __u32 daddr, int len)
source763net/ipv4/icmp.cin_ntoa(source), in_ntoa(icmph->un.gateway), dev->name);
source792net/ipv4/icmp.cprintk(KERN_INFO "ICMP redirect from %s\n", in_ntoa(source));
source793net/ipv4/icmp.cip_rt_redirect(source, ip, icmph->un.gateway, dev);
source284net/ipv4/ip_fw.csrc_port=ntohs(tcp->source);
source299net/ipv4/ip_fw.csrc_port=ntohs(udp->source);
source91net/ipv4/proc.csrcp  = sp->dummy_th.source;
source513net/ipv4/tcp.csk = get_sock(&tcp_prot, th->source, daddr, th->dest, saddr);
source448net/ipv4/tcp_input.cnewsk->dummy_th.source = skb->h.th->dest;
source449net/ipv4/tcp_input.cnewsk->dummy_th.dest = skb->h.th->source;
source1046net/ipv4/tcp_input.csk->dummy_th.dest=th->source;
source1631net/ipv4/tcp_input.csk = get_tcp_sock(saddr, th->source, daddr, th->dest);
source1793net/ipv4/tcp_input.csk->dummy_th.dest=th->source;
source1814net/ipv4/tcp_input.csk->dummy_th.source==th->source &&
source1862net/ipv4/tcp_input.csk=get_sock(&tcp_prot, th->dest, saddr, th->source, daddr);
source548net/ipv4/tcp_output.ct1->dest = th->source;
source549net/ipv4/tcp_output.ct1->source = th->dest;
source720net/ipv4/tcp_output.ct1->dest = skb->h.th->source;
source721net/ipv4/tcp_output.ct1->source = newsk->dummy_th.source;
source164net/ipv4/udp.csk = get_sock(&udp_prot, uh->source, daddr, uh->dest, saddr);
source309net/ipv4/udp.cufh.uh.source = sk->dummy_th.source;
source536net/ipv4/udp.csin->sin_port = skb->h.uh->source;
source691net/ipv4/udp.cntohl(saddr),ntohs(uh->source),
source719net/ipv4/udp.csaddr, uh->source, daddr);
source726net/ipv4/udp.csknext=get_sock_mcast(sk->next, uh->dest, saddr, uh->source, daddr);
source742net/ipv4/udp.cif(saddr==uh_cache_saddr && daddr==uh_cache_daddr && uh->dest==uh_cache_dport && uh->source==uh_cache_sport)
source746net/ipv4/udp.csk = get_sock(&udp_prot, uh->dest, saddr, uh->source, daddr);
source750net/ipv4/udp.cuh_cache_sport=uh->source;
source723net/netrom/af_netrom.cax25_address *user, *source;
source748net/netrom/af_netrom.csource = &addr->fsa_ax25.sax25_call;
source753net/netrom/af_netrom.cuser = source;
source757net/netrom/af_netrom.csk->nr->source_addr = *source;
source776net/netrom/af_netrom.cax25_address *user, *source = NULL;
source804net/netrom/af_netrom.csource = (ax25_address *)dev->dev_addr;
source809net/netrom/af_netrom.cuser = source;
source813net/netrom/af_netrom.csk->nr->source_addr = *source;