Searched refs:addr (Results 651 - 675 of 5513) sorted by relevance

<<21222324252627282930>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/include/
H A Dcidr.h7 void ipv6_addr2addr_host(uint32_t *addr, uint32_t *res);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/common/tuners/
H A Dtda827x.h48 * @param addr i2c address of the tuner.
55 extern struct dvb_frontend* tda827x_attach(struct dvb_frontend *fe, int addr,
60 int addr,
59 tda827x_attach(struct dvb_frontend *fe, int addr, struct i2c_adapter *i2c, struct tda827x_config *cfg) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/wl12xx/
H A Dwl1271_io.c127 void wl1271_top_reg_write(struct wl1271 *wl, int addr, u16 val) argument
130 addr = (addr >> 1) + 0x30000;
131 wl1271_write32(wl, OCP_POR_CTR, addr);
140 u16 wl1271_top_reg_read(struct wl1271 *wl, int addr) argument
146 addr = (addr >> 1) + 0x30000;
147 wl1271_write32(wl, OCP_POR_CTR, addr);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/mm/
H A Dinit.c129 unsigned long addr; local
131 for (addr = begin; addr < end; addr += PAGE_SIZE) {
132 ClearPageReserved(virt_to_page(addr));
133 init_page_count(virt_to_page(addr));
134 memset((void *) addr, 0xcc, PAGE_SIZE);
135 free_page(addr);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/include/asm/
H A Dtlb.h24 #define __pmd_free_tlb(tlb, pmd, addr) pmd_free((tlb)->mm, pmd)
25 #define __pte_free_tlb(tlb, pte, addr) pte_free((tlb)->mm, pte)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/include/asm/
H A Dfs_pd.h26 #define cpm2_unmap(addr) do {} while(0)
37 #define immr_unmap(addr) do {} while (0)
H A Dtlbflush.h54 #define flush_tlb_page(vma,addr) local_flush_tlb_page(vma,addr)
55 #define __flush_tlb_page(mm,addr,p,i) __local_flush_tlb_page(mm,addr,p,i)
57 #define flush_tlb_page_nohash(vma,addr) flush_tlb_page(vma,addr)
66 extern void flush_tlb_page_nohash(struct vm_area_struct *vma, unsigned long addr);
104 extern void hpte_need_flush(struct mm_struct *mm, unsigned long addr,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dbitops.h24 #define for_each_set_bit(bit, addr, size) \
25 for ((bit) = find_first_bit((addr), (size)); \
27 (bit) = find_next_bit((addr), (size), (bit) + 1))
143 * @addr: The address to start the search at
148 extern unsigned long find_first_bit(const unsigned long *addr,
153 * @addr: The address to start the search at
158 extern unsigned long find_first_zero_bit(const unsigned long *addr,
165 * @addr: The address to start the search at
170 extern unsigned long find_last_bit(const unsigned long *addr,
178 * @addr
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/msm/
H A Dmemory.c32 int arch_io_remap_pfn_range(struct vm_area_struct *vma, unsigned long addr, argument
43 return remap_pfn_range(vma, addr, pfn, size, prot);
131 unsigned long addr, tmp_size, unused_size; local
142 addr = (unsigned long)alloc_bootmem(tmp_size);
143 free_bootmem(__pa(addr), tmp_size);
145 unused_size = alignment - (addr % alignment);
149 addr = (unsigned long)alloc_bootmem(size);
153 return (void *)addr;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/rand/
H A Drand_egd.c139 struct sockaddr_un addr; local
145 memset(&addr, 0, sizeof(addr));
146 addr.sun_family = AF_UNIX;
147 if (strlen(path) >= sizeof(addr.sun_path))
149 BUF_strlcpy(addr.sun_path,path,sizeof addr.sun_path);
156 if (connect(fd, (struct sockaddr *)&addr, len) == 0)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/ip2/
H A Di2hw.h646 #define I2_OUTSW(port, addr, count) outsw((port), (addr), (((count)+1)/2))
647 #define I2_OUTSB(port, addr, count) outsb((port), (addr), (((count)+1))&-2)
648 #define I2_INSW(port, addr, count) insw((port), (addr), (((count)+1)/2))
649 #define I2_INSB(port, addr, count) insb((port), (addr), (((count)+1))&-2)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/include/asm/
H A Dftrace.h29 static inline unsigned long ftrace_call_adjust(unsigned long addr) argument
31 /* 'addr' is the memory table address. */
32 return addr;
H A Dio.h93 static inline u8 __deprecated ctrl_inb(unsigned long addr) argument
95 return __raw_readb(addr);
98 static inline u16 __deprecated ctrl_inw(unsigned long addr) argument
100 return __raw_readw(addr);
103 static inline u32 __deprecated ctrl_inl(unsigned long addr) argument
105 return __raw_readl(addr);
108 static inline u64 __deprecated ctrl_inq(unsigned long addr) argument
110 return __raw_readq(addr);
113 static inline void __deprecated ctrl_outb(u8 v, unsigned long addr) argument
115 __raw_writeb(v, addr);
118 ctrl_outw(u16 v, unsigned long addr) argument
123 ctrl_outl(u32 v, unsigned long addr) argument
128 ctrl_outq(u64 v, unsigned long addr) argument
400 iounmap_fixed(void __iomem *addr) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/mm/
H A Dcache-sh2a.c32 unsigned long addr = CACHE_OC_ADDRESS_ARRAY | (v & 0x000007f0); local
35 unsigned long data = __raw_readl(addr | (way << 11));
38 __raw_writel(data, addr | (way << 11));
114 unsigned long addr = (v & 0x000007f0); local
118 unsigned long data = __raw_readl(CACHE_OC_ADDRESS_ARRAY | addr | (way << 11));
121 __raw_writel(data, CACHE_OC_ADDRESS_ARRAY | addr | (way << 11));
125 __raw_writel(addr,
126 CACHE_IC_ADDRESS_ARRAY | addr | 0x00000008);
H A Dioremap_fixed.c28 void __iomem *addr; member in struct:ioremap_map
65 if (!map->addr) {
95 map->addr = (void __iomem *)(offset + map->fixmap_addr);
96 return map->addr;
99 int iounmap_fixed(void __iomem *addr) argument
109 if (map->addr == addr) {
131 map->addr = NULL;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/include/asm/
H A Dcacheflush_32.h24 #define local_flush_cache_page(vma,addr) BTFIXUP_CALL(local_flush_cache_page)(vma,addr)
29 #define local_flush_page_to_ram(addr) BTFIXUP_CALL(local_flush_page_to_ram)(addr)
53 #define flush_cache_page(vma,addr,pfn) BTFIXUP_CALL(flush_cache_page)(vma,addr)
73 #define __flush_page_to_ram(addr) BTFIXUP_CALL(__flush_page_to_ram)(addr)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/lib/
H A DNGcopy_from_user.S19 #define LOAD(type,addr,dest) type##a [addr] ASI_AIUS, dest
H A DNGcopy_to_user.S19 #define STORE(type,src,addr) type##a src, [addr] ASI_AIUS
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/dma/
H A Dfsldma.h156 static u64 in_be64(const u64 __iomem *addr) argument
158 return ((u64)in_be32((u32 __iomem *)addr) << 32) |
159 (in_be32((u32 __iomem *)addr + 1));
162 static void out_be64(u64 __iomem *addr, u64 val) argument
164 out_be32((u32 __iomem *)addr, val >> 32);
165 out_be32((u32 __iomem *)addr + 1, (u32)val);
169 static u64 in_le64(const u64 __iomem *addr) argument
171 return ((u64)in_le32((u32 __iomem *)addr + 1) << 32) |
172 (in_le32((u32 __iomem *)addr));
175 static void out_le64(u64 __iomem *addr, u6 argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/mm/
H A Ddma-noncoherent.c97 unsigned long addr = head->vm_start, end = head->vm_end - size; local
108 if ((addr + size) < addr)
110 if ((addr + size) <= c->vm_start)
112 addr = c->vm_end;
113 if (addr > end)
122 new->vm_start = addr;
123 new->vm_end = addr + size;
135 static struct ppc_vm_region *ppc_vm_region_find(struct ppc_vm_region *head, unsigned long addr) argument
140 if (c->vm_start == addr)
258 unsigned long flags, addr; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/powermac/
H A Dpmac.h26 extern unsigned char pmac_nvram_read_byte(int addr);
27 extern void pmac_nvram_write_byte(int addr, unsigned char val);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/kernel/
H A Dkprobes.c42 if (is_prohibited_opcode((kprobe_opcode_t *) p->addr))
45 if ((unsigned long)p->addr & 0x01)
52 memcpy(p->ainsn.insn, p->addr, MAX_INSN_SIZE * sizeof(kprobe_opcode_t));
55 p->opcode = *p->addr;
176 args.ptr = p->addr;
186 args.ptr = p->addr;
205 regs->psw.addr = (unsigned long)p->ainsn.insn | PSW_ADDR_AMODE;
252 /* Replace the return addr with trampoline addr */
260 unsigned long *addr local
584 unsigned long addr; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/microblaze/include/asm/
H A Dexceptions.h67 int fsr, int addr);
70 void _exception(int signr, struct pt_regs *regs, int code, unsigned long addr);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/
H A Djazz.h276 static inline unsigned short r4030_read_reg16(unsigned long addr) argument
278 unsigned short ret = *((volatile unsigned short *)addr);
283 static inline unsigned int r4030_read_reg32(unsigned long addr) argument
285 unsigned int ret = *((volatile unsigned int *)addr);
290 static inline void r4030_write_reg16(unsigned long addr, unsigned val) argument
292 *((volatile unsigned short *)addr) = val;
296 static inline void r4030_write_reg32(unsigned long addr, unsigned val) argument
298 *((volatile unsigned int *)addr) = val;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/mach-ip27/
H A Dmmzone.h8 #define pa_to_nid(addr) NASID_TO_COMPACT_NODEID(NASID_GET(addr))

Completed in 316 milliseconds

<<21222324252627282930>>