Searched refs:address (Results 1 - 25 of 1944) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/octeon/
H A Dcvmx-scratch.h47 * @address: byte address to read from
51 static inline uint8_t cvmx_scratch_read8(uint64_t address) argument
53 return *CASTPTR(volatile uint8_t, CVMX_SCRATCH_BASE + address);
59 * @address: byte address to read from
63 static inline uint16_t cvmx_scratch_read16(uint64_t address) argument
65 return *CASTPTR(volatile uint16_t, CVMX_SCRATCH_BASE + address);
71 * @address: byte address t
75 cvmx_scratch_read32(uint64_t address) argument
87 cvmx_scratch_read64(uint64_t address) argument
98 cvmx_scratch_write8(uint64_t address, uint64_t value) argument
110 cvmx_scratch_write16(uint64_t address, uint64_t value) argument
122 cvmx_scratch_write32(uint64_t address, uint64_t value) argument
134 cvmx_scratch_write64(uint64_t address, uint64_t value) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/arm-uclibc/target/opt/remote/bin/
H A Dcheckleafnets.sh6 address=0;
11 if [ $address -eq 0 ]
13 address=1;
17 if [ $address -eq 1 ]
19 address=0;
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/lzma_src/C/
H A DAlloc.h12 void MyFree(void *address);
19 void MidFree(void *address);
21 void BigFree(void *address);
26 #define MidFree(address) MyFree(address)
28 #define BigFree(address) MyFree(address)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/
H A Dbios_ebda.h12 unsigned int address = *(unsigned short *)phys_to_virt(0x40E); local
13 address <<= 4;
14 return address; /* 0 means none */
H A Dpgtable_32.h56 #define pte_offset_map(dir, address) \
58 pte_index((address)))
59 #define pte_offset_map_nested(dir, address) \
61 pte_index((address)))
65 #define pte_offset_map(dir, address) \
66 ((pte_t *)page_address(pmd_page(*(dir))) + pte_index((address)))
67 #define pte_offset_map_nested(dir, address) pte_offset_map((dir), (address))
83 #define update_mmu_cache(vma, address, ptep) do { } while (0)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/include/asm/
H A Dio.h24 static inline unsigned long virt_to_phys(volatile void * address) argument
32 : "=a" (real_address) : "a" (address) : "cc");
36 static inline void * phys_to_virt(unsigned long address) argument
38 return (void *) address;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/h8300/include/asm/
H A Dtraps.h20 #define VECTOR(address) ((JMP_OP)|((unsigned long)address))
21 #define REDIRECT(address) ((JSR_OP)|((unsigned long)address))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/projects/TP/
H A Dteam-address2 # Print the team's address (to stdout) and output additional instructions
14 address=`echo "$html" | tr '\012' '|' | sed -e "$sed_addnl" | sed -n -e "s,^.*<td>$catalog</td>[^<>]*<td>[^|]*</td>[^<>]*<td><a href=\"\\([^\"]*\\)\">[^<>]*</a></td>.*\$,\\1,p" | sed 1q`
15 if test -n "$address"; then
16 case "$address" in
17 mailto:*) address=`echo "$address" | sed -e 's,^mailto:,<,' -e 's,$,>,'` ;;
25 echo " $address"
27 echo "$address"
30 address=`echo "$html" | tr '\012' '|' | sed -e "$sed_addnl" | sed -n -e "s,^.*<td>$language</td>[^<>]*<td>[^|]*</td>[^<>]*<td><a href=\"\\([^\"]*\\)\">[^<>]*</a></td>.*\$,\\1,p" | sed 1q`
31 if test -n "$address"; the
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/mm/
H A Dgeneric_64.c25 unsigned long address,
34 address &= ~PMD_MASK;
35 end = address + size;
40 unsigned long curend = address + PAGE_SIZE;
43 if (!(address & 0xffff)) {
45 !(address & 0x3fffff) &&
47 end >= address + 0x400000) {
50 curend = address + 0x400000;
53 !(address & 0x7ffff) &&
55 end >= address
24 io_remap_pte_range(struct mm_struct *mm, pte_t * pte, unsigned long address, unsigned long size, unsigned long offset, pgprot_t prot, int space) argument
84 io_remap_pmd_range(struct mm_struct *mm, pmd_t * pmd, unsigned long address, unsigned long size, unsigned long offset, pgprot_t prot, int space) argument
106 io_remap_pud_range(struct mm_struct *mm, pud_t * pud, unsigned long address, unsigned long size, unsigned long offset, pgprot_t prot, int space) argument
[all...]
H A Dgeneric_32.c25 static inline void io_remap_pte_range(struct mm_struct *mm, pte_t * pte, unsigned long address, unsigned long size, argument
30 address &= ~PMD_MASK;
31 end = address + size;
35 set_pte_at(mm, address, pte, mk_pte_io(offset, prot, space));
36 address += PAGE_SIZE;
39 } while (address < end);
42 static inline int io_remap_pmd_range(struct mm_struct *mm, pmd_t * pmd, unsigned long address, unsigned long size, argument
47 address &= ~PGDIR_MASK;
48 end = address + size;
51 offset -= address;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/mm/
H A Dfault.c162 force_sig_info_fault(int si_signo, int si_code, unsigned long address, argument
170 info.si_addr = (void __user *)address;
180 static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address) argument
182 unsigned index = pgd_index(address);
198 pud = pud_offset(pgd, address);
199 pud_k = pud_offset(pgd_k, address);
203 pmd = pmd_offset(pud, address);
204 pmd_k = pmd_offset(pud_k, address);
218 unsigned long address; local
223 for (address
244 vmalloc_fault(unsigned long address) argument
277 check_v8086_mode(struct pt_regs *regs, unsigned long address, struct task_struct *tsk) argument
295 dump_pagetable(unsigned long address) argument
329 unsigned long address; local
361 vmalloc_fault(unsigned long address) argument
436 check_v8086_mode(struct pt_regs *regs, unsigned long address, struct task_struct *tsk) argument
448 dump_pagetable(unsigned long address) argument
494 is_errata93(struct pt_regs *regs, unsigned long address) argument
514 is_errata100(struct pt_regs *regs, unsigned long address) argument
523 is_f00f_bug(struct pt_regs *regs, unsigned long address) argument
544 show_fault_oops(struct pt_regs *regs, unsigned long error_code, unsigned long address) argument
573 pgtable_bad(struct pt_regs *regs, unsigned long error_code, unsigned long address) argument
599 no_context(struct pt_regs *regs, unsigned long error_code, unsigned long address) argument
659 show_signal_msg(struct pt_regs *regs, unsigned long error_code, unsigned long address, struct task_struct *tsk) argument
679 __bad_area_nosemaphore(struct pt_regs *regs, unsigned long error_code, unsigned long address, int si_code) argument
721 bad_area_nosemaphore(struct pt_regs *regs, unsigned long error_code, unsigned long address) argument
728 __bad_area(struct pt_regs *regs, unsigned long error_code, unsigned long address, int si_code) argument
743 bad_area(struct pt_regs *regs, unsigned long error_code, unsigned long address) argument
749 bad_area_access_error(struct pt_regs *regs, unsigned long error_code, unsigned long address) argument
757 out_of_memory(struct pt_regs *regs, unsigned long error_code, unsigned long address) argument
770 do_sigbus(struct pt_regs *regs, unsigned long error_code, unsigned long address, unsigned int fault) argument
805 mm_fault_error(struct pt_regs *regs, unsigned long error_code, unsigned long address, unsigned int fault) argument
842 spurious_fault(unsigned long error_code, unsigned long address) argument
913 fault_in_kernel_space(unsigned long address) argument
928 unsigned long address; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/mm/
H A Dioremap.c19 static inline void remap_area_pte(pte_t * pte, unsigned long address, argument
27 address &= ~PMD_MASK;
28 end = address + size;
31 BUG_ON(address >= end);
39 address += PAGE_SIZE;
42 } while (address && (address < end));
45 static inline int remap_area_pmd(pmd_t * pmd, unsigned long address, argument
50 address &= ~PGDIR_MASK;
51 end = address
67 remap_area_pages(unsigned long address, phys_t phys_addr, phys_t size, unsigned long flags) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/sys-i386/
H A Dfault.c18 int arch_fixup(unsigned long address, struct uml_pt_regs *regs) argument
22 fixup = search_exception_tables(address);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/sys-x86_64/
H A Dfault.c18 int arch_fixup(unsigned long address, struct uml_pt_regs *regs) argument
22 fixup = search_exception_tables(address);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/mm/kmemcheck/
H A Dpte.h8 pte_t *kmemcheck_pte_lookup(unsigned long address);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dtimeriomem-rng.h17 void __iomem *address; member in struct:timeriomem_rng_data
H A Dcrc32c.h6 extern u32 crc32c(u32 crc, const void *address, unsigned int length);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/enic/
H A Drq_enet_desc.h25 __le64 address; member in struct:rq_enet_desc
44 u64 address, u8 type, u16 length)
46 desc->address = cpu_to_le64(address);
52 u64 *address, u8 *type, u16 *length)
54 *address = le64_to_cpu(desc->address);
43 rq_enet_desc_enc(struct rq_enet_desc *desc, u64 address, u8 type, u16 length) argument
51 rq_enet_desc_dec(struct rq_enet_desc *desc, u64 *address, u8 *type, u16 *length) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/fnic/
H A Drq_enet_desc.h23 __le64 address; member in struct:rq_enet_desc
42 u64 address, u8 type, u16 length)
44 desc->address = cpu_to_le64(address);
50 u64 *address, u8 *type, u16 *length)
52 *address = le64_to_cpu(desc->address);
41 rq_enet_desc_enc(struct rq_enet_desc *desc, u64 address, u8 type, u16 length) argument
49 rq_enet_desc_dec(struct rq_enet_desc *desc, u64 *address, u8 *type, u16 *length) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/mm/
H A Dfault_32.c38 static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address) argument
40 unsigned index = pgd_index(address);
51 pud = pud_offset(pgd, address);
52 pud_k = pud_offset(pgd_k, address);
59 pmd = pmd_offset(pud, address);
60 pmd_k = pmd_offset(pud_k, address);
82 static noinline int vmalloc_fault(unsigned long address) argument
89 if (!(address >= VMALLOC_START && address < P3_ADDR_MAX))
100 pmd_k = vmalloc_sync_one(pgd_k, address);
111 fault_in_kernel_space(unsigned long address) argument
121 do_page_fault(struct pt_regs *regs, unsigned long writeaccess, unsigned long address) argument
319 handle_tlbmiss(struct pt_regs *regs, unsigned long writeaccess, unsigned long address) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/math-emu/
H A Dget_address.c4 | Get the effective address from an FPU instruction. |
122 static unsigned long vm86_segment(u_char segment, struct address *addr)
137 struct address *addr, long offset)
140 unsigned long base_address, limit, address, seg_top; local
163 address = base_address + offset;
178 (address <= limit) || (address >= seg_top) ? 0 :
179 ((seg_top - address) >= 255 ? 255 : seg_top - address);
182 (address > limi
214 int address = 0; /* Initialized just to stop compiler warnings. */ local
298 int address = 0; /* Default used for mod == 0 */ local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/
H A Drsaddr.c53 * acpi_rs_convert_address16 - All WORD (16-bit) address resources
90 * acpi_rs_convert_address32 - All DWORD (32-bit) address resources
128 * acpi_rs_convert_address64 - All QWORD (64-bit) address resources
166 * acpi_rs_convert_ext_address64 - All Extended (64-bit) address resources
204 * acpi_rs_convert_general_flags - Flags common to all address descriptors
209 {ACPI_RSC_FLAGINIT, 0, AML_OFFSET(address.flags),
214 {ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.address.resource_type),
215 AML_OFFSET(address.resource_type),
220 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.address.producer_consumer),
221 AML_OFFSET(address
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/isa/gus/
H A Dgus_dram.c29 unsigned int address, unsigned int size)
42 snd_gf1_dram_addr(gus, address);
45 address += size1;
50 snd_gf1_poke(gus, address++, *pbuffer++);
60 unsigned int address, unsigned int size)
62 return snd_gus_dram_poke(gus, buffer, address, size);
66 unsigned int address, unsigned int size,
78 snd_gf1_dram_addr(gus, address);
82 address += size1;
87 *pbuffer++ = snd_gf1_peek(gus, address
28 snd_gus_dram_poke(struct snd_gus_card *gus, char __user *_buffer, unsigned int address, unsigned int size) argument
59 snd_gus_dram_write(struct snd_gus_card *gus, char __user *buffer, unsigned int address, unsigned int size) argument
65 snd_gus_dram_peek(struct snd_gus_card *gus, char __user *_buffer, unsigned int address, unsigned int size, int rom) argument
97 snd_gus_dram_read(struct snd_gus_card *gus, char __user *buffer, unsigned int address, unsigned int size, int rom) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/include/shared/
H A Darch.h12 extern int arch_fixup(unsigned long address, struct uml_pt_regs *regs);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/include/asm/
H A Dvirtconvert.h18 static inline unsigned long virt_to_phys(void *address) argument
20 return __pa(address);
23 static inline void *phys_to_virt(unsigned long address) argument
25 return __va(address);
28 /* Permanent address of a page. */
41 * IO bus memory addresses are 1:1 with the physical address,

Completed in 204 milliseconds

1234567891011>>