Searched refs:base (Results 76 - 100 of 6786) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/arm/mach-nuc93x/include/mach/
H A Dentry-macro.S13 .macro get_irqnr_preamble, base, tmp
19 .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
21 mov \base, #AIC_BA
23 ldr \irqnr, [ \base, #AIC_IPER]
24 ldr \irqnr, [ \base, #AIC_ISNR]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/arm/mach-ebsa110/include/mach/
H A Duncompress.h20 unsigned char v, *base = SERIAL_BASE; local
23 v = base[UART_LSR << 2];
27 base[UART_TX << 2] = c;
32 unsigned char v, *base = SERIAL_BASE; local
35 v = base[UART_LSR << 2];
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/arm/mach-ebsa110/include/mach/
H A Duncompress.h20 unsigned char v, *base = SERIAL_BASE; local
23 v = base[UART_LSR << 2];
27 base[UART_TX << 2] = c;
32 unsigned char v, *base = SERIAL_BASE; local
35 v = base[UART_LSR << 2];
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/curl-7.21.7/lib/
H A Dstrtoofft.c51 static int get_char(char c, int base);
58 curlx_strtoll(const char *nptr, char **endptr, int base) argument
91 if(base == 16 || base == 0) {
93 base = 16;
97 if(base == 8 || base == 0) {
99 base = 8;
103 /* Matching strtol, if the base is 0 and it doesn't look like
104 * the number is octal or hex, we assume it's base 1
157 get_char(char c, int base) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/s390/lib/
H A Ddiv64.c19 static uint32_t __div64_31(uint64_t *n, uint32_t base) argument
26 /* Special case base==1, remainder = 0, quotient = n */
27 if (base == 1)
30 * Special case base==0 will cause a fixed point divide exception
32 * following calculation we can assume base > 1. The first
40 : "+d" (reg2), "+d" (reg3) : "d" (base) : "cc" );
50 * is increased by one then checked against the base. If the
51 * remainder has overflown subtract base and increase the
67 : "d" (base), "2" (1UL) : "cc" );
76 uint32_t __div64_32(uint64_t *n, uint32_t base) argument
129 __div64_32(uint64_t *n, uint32_t base) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/s390/lib/
H A Ddiv64.c19 static uint32_t __div64_31(uint64_t *n, uint32_t base) argument
26 /* Special case base==1, remainder = 0, quotient = n */
27 if (base == 1)
30 * Special case base==0 will cause a fixed point divide exception
32 * following calculation we can assume base > 1. The first
40 : "+d" (reg2), "+d" (reg3) : "d" (base) : "cc" );
50 * is increased by one then checked against the base. If the
51 * remainder has overflown subtract base and increase the
67 : "d" (base), "2" (1UL) : "cc" );
76 uint32_t __div64_32(uint64_t *n, uint32_t base) argument
129 __div64_32(uint64_t *n, uint32_t base) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/arm/mach-mx5/
H A Dcpu.c76 void __iomem *base; local
81 base = MX51_IO_ADDRESS(MX51_AIPS1_BASE_ADDR);
82 __raw_writel(0x0, base + 0x40);
83 __raw_writel(0x0, base + 0x44);
84 __raw_writel(0x0, base + 0x48);
85 __raw_writel(0x0, base + 0x4C);
86 reg = __raw_readl(base + 0x50) & 0x00FFFFFF;
87 __raw_writel(reg, base + 0x50);
89 base = MX51_IO_ADDRESS(MX51_AIPS2_BASE_ADDR);
90 __raw_writel(0x0, base
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/arm/mach-mx5/
H A Dcpu.c76 void __iomem *base; local
81 base = MX51_IO_ADDRESS(MX51_AIPS1_BASE_ADDR);
82 __raw_writel(0x0, base + 0x40);
83 __raw_writel(0x0, base + 0x44);
84 __raw_writel(0x0, base + 0x48);
85 __raw_writel(0x0, base + 0x4C);
86 reg = __raw_readl(base + 0x50) & 0x00FFFFFF;
87 __raw_writel(reg, base + 0x50);
89 base = MX51_IO_ADDRESS(MX51_AIPS2_BASE_ADDR);
90 __raw_writel(0x0, base
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/curl-7.21.7/lib/
H A Dstrtoofft.c51 static int get_char(char c, int base);
58 curlx_strtoll(const char *nptr, char **endptr, int base) argument
91 if(base == 16 || base == 0) {
93 base = 16;
97 if(base == 8 || base == 0) {
99 base = 8;
103 /* Matching strtol, if the base is 0 and it doesn't look like
104 * the number is octal or hex, we assume it's base 1
157 get_char(char c, int base) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/curl-7.21.7/lib/
H A Dstrtoofft.c51 static int get_char(char c, int base);
58 curlx_strtoll(const char *nptr, char **endptr, int base) argument
91 if(base == 16 || base == 0) {
93 base = 16;
97 if(base == 8 || base == 0) {
99 base = 8;
103 /* Matching strtol, if the base is 0 and it doesn't look like
104 * the number is octal or hex, we assume it's base 1
157 get_char(char c, int base) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/arm/mach-s5pv210/
H A Dgpiolib.c34 /* GPIO bank's base address given the index of the bank in the
45 * The 'base' member is also initialized in the init function below.
46 * Note: The initialization of 'base' member of s3c_gpio_chip structure
52 .base = S5PV210_GPA0(0),
58 .base = S5PV210_GPA1(0),
64 .base = S5PV210_GPB(0),
70 .base = S5PV210_GPC0(0),
76 .base = S5PV210_GPC1(0),
82 .base = S5PV210_GPD0(0),
88 .base
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/arm/mach-s5pv210/
H A Dgpiolib.c34 /* GPIO bank's base address given the index of the bank in the
45 * The 'base' member is also initialized in the init function below.
46 * Note: The initialization of 'base' member of s3c_gpio_chip structure
52 .base = S5PV210_GPA0(0),
58 .base = S5PV210_GPA1(0),
64 .base = S5PV210_GPB(0),
70 .base = S5PV210_GPC0(0),
76 .base = S5PV210_GPC1(0),
82 .base = S5PV210_GPD0(0),
88 .base
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/arm/mach-ns9xxx/include/mach/
H A Duncompress.h18 static void putc_dummy(char c, void __iomem *base) argument
25 static void putc_ns9360(char c, void __iomem *base) argument
31 if (__raw_readl(base + 8) & (1 << 3)) {
32 __raw_writeb(c, base + 16);
39 static void putc_a9m9750dev(char c, void __iomem *base) argument
45 if (__raw_readb(base + 5) & (1 << 5)) {
46 __raw_writeb(c, base);
54 static void putc_ns921x(char c, void __iomem *base) argument
60 if (!(__raw_readl(base) & (1 << 11))) {
61 __raw_writeb(c, base
89 autodetect(void (**putc)(char, void __iomem *), void __iomem **base) argument
146 void __iomem *base; variable
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/arm/mach-ns9xxx/include/mach/
H A Duncompress.h18 static void putc_dummy(char c, void __iomem *base) argument
25 static void putc_ns9360(char c, void __iomem *base) argument
31 if (__raw_readl(base + 8) & (1 << 3)) {
32 __raw_writeb(c, base + 16);
39 static void putc_a9m9750dev(char c, void __iomem *base) argument
45 if (__raw_readb(base + 5) & (1 << 5)) {
46 __raw_writeb(c, base);
54 static void putc_ns921x(char c, void __iomem *base) argument
60 if (!(__raw_readl(base) & (1 << 11))) {
61 __raw_writeb(c, base
89 autodetect(void (**putc)(char, void __iomem *), void __iomem **base) argument
146 void __iomem *base; variable
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/linux/mmc/
H A Dsh_mmcif.h73 extern inline void sh_mmcif_boot_cmd_send(void __iomem *base, argument
76 sh_mmcif_writel(base, MMCIF_CE_INT, 0);
77 sh_mmcif_writel(base, MMCIF_CE_ARG, arg);
78 sh_mmcif_writel(base, MMCIF_CE_CMD_SET, cmd);
81 extern inline int sh_mmcif_boot_cmd_poll(void __iomem *base, unsigned long mask) argument
87 tmp = sh_mmcif_readl(base, MMCIF_CE_INT);
89 sh_mmcif_writel(base, MMCIF_CE_INT, tmp & ~mask);
97 extern inline int sh_mmcif_boot_cmd(void __iomem *base, argument
100 sh_mmcif_boot_cmd_send(base, cmd, arg);
101 return sh_mmcif_boot_cmd_poll(base,
104 sh_mmcif_boot_do_read_single(void __iomem *base, unsigned int block_nr, unsigned long *buf) argument
127 sh_mmcif_boot_do_read(void __iomem *base, unsigned long first_block, unsigned long nr_blocks, void *buf) argument
145 sh_mmcif_boot_init(void __iomem *base) argument
179 sh_mmcif_boot_slurp(void __iomem *base, unsigned char *buf, unsigned long no_bytes) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/scsi/pcmcia/
H A Dnsp_io.h15 static inline void nsp_write(unsigned int base,
18 static inline unsigned char nsp_read(unsigned int base,
30 static inline void nsp_write(unsigned int base, argument
34 outb(val, (base + index));
37 static inline unsigned char nsp_read(unsigned int base, argument
40 return inb(base + index);
75 static inline void nsp_fifo8_read(unsigned int base, argument
80 nsp_multi_read_1(base, FIFODATA, buf, count);
94 static inline void nsp_fifo16_read(unsigned int base, argument
99 nsp_multi_read_2(base, FIFODAT
113 nsp_fifo32_read(unsigned int base, void *buf, unsigned long count) argument
132 nsp_fifo8_write(unsigned int base, void *buf, unsigned long count) argument
150 nsp_fifo16_write(unsigned int base, void *buf, unsigned long count) argument
168 nsp_fifo32_write(unsigned int base, void *buf, unsigned long count) argument
178 nsp_mmio_write(unsigned long base, unsigned int index, unsigned char val) argument
187 nsp_mmio_read(unsigned long base, unsigned int index) argument
197 nsp_mmio_index_read(unsigned long base, unsigned int reg) argument
207 nsp_mmio_index_write(unsigned long base, unsigned int reg, unsigned char val) argument
219 nsp_mmio_multi_read_4(unsigned long base, unsigned int Register, void *buf, unsigned long count) argument
237 nsp_mmio_fifo32_read(unsigned int base, void *buf, unsigned long count) argument
245 nsp_mmio_multi_write_4(unsigned long base, unsigned int Register, void *buf, unsigned long count) argument
263 nsp_mmio_fifo32_write(unsigned int base, void *buf, unsigned long count) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/scsi/pcmcia/
H A Dnsp_io.h15 static inline void nsp_write(unsigned int base,
18 static inline unsigned char nsp_read(unsigned int base,
30 static inline void nsp_write(unsigned int base, argument
34 outb(val, (base + index));
37 static inline unsigned char nsp_read(unsigned int base, argument
40 return inb(base + index);
75 static inline void nsp_fifo8_read(unsigned int base, argument
80 nsp_multi_read_1(base, FIFODATA, buf, count);
94 static inline void nsp_fifo16_read(unsigned int base, argument
99 nsp_multi_read_2(base, FIFODAT
113 nsp_fifo32_read(unsigned int base, void *buf, unsigned long count) argument
132 nsp_fifo8_write(unsigned int base, void *buf, unsigned long count) argument
150 nsp_fifo16_write(unsigned int base, void *buf, unsigned long count) argument
168 nsp_fifo32_write(unsigned int base, void *buf, unsigned long count) argument
178 nsp_mmio_write(unsigned long base, unsigned int index, unsigned char val) argument
187 nsp_mmio_read(unsigned long base, unsigned int index) argument
197 nsp_mmio_index_read(unsigned long base, unsigned int reg) argument
207 nsp_mmio_index_write(unsigned long base, unsigned int reg, unsigned char val) argument
219 nsp_mmio_multi_read_4(unsigned long base, unsigned int Register, void *buf, unsigned long count) argument
237 nsp_mmio_fifo32_read(unsigned int base, void *buf, unsigned long count) argument
245 nsp_mmio_multi_write_4(unsigned long base, unsigned int Register, void *buf, unsigned long count) argument
263 nsp_mmio_fifo32_write(unsigned int base, void *buf, unsigned long count) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/arm/mach-netx/include/mach/
H A Duncompress.h45 unsigned long base; local
48 base = UART1_BASE;
50 base = UART2_BASE;
54 while (REG(base + UART_FR) & FR_TXFF);
55 REG(base + UART_DR) = c;
60 unsigned long base; local
63 base = UART1_BASE;
65 base = UART2_BASE;
69 while (REG(base + UART_FR) & FR_BUSY);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/linux/mmc/
H A Dsh_mmcif.h73 extern inline void sh_mmcif_boot_cmd_send(void __iomem *base, argument
76 sh_mmcif_writel(base, MMCIF_CE_INT, 0);
77 sh_mmcif_writel(base, MMCIF_CE_ARG, arg);
78 sh_mmcif_writel(base, MMCIF_CE_CMD_SET, cmd);
81 extern inline int sh_mmcif_boot_cmd_poll(void __iomem *base, unsigned long mask) argument
87 tmp = sh_mmcif_readl(base, MMCIF_CE_INT);
89 sh_mmcif_writel(base, MMCIF_CE_INT, tmp & ~mask);
97 extern inline int sh_mmcif_boot_cmd(void __iomem *base, argument
100 sh_mmcif_boot_cmd_send(base, cmd, arg);
101 return sh_mmcif_boot_cmd_poll(base,
104 sh_mmcif_boot_do_read_single(void __iomem *base, unsigned int block_nr, unsigned long *buf) argument
127 sh_mmcif_boot_do_read(void __iomem *base, unsigned long first_block, unsigned long nr_blocks, void *buf) argument
145 sh_mmcif_boot_init(void __iomem *base) argument
179 sh_mmcif_boot_slurp(void __iomem *base, unsigned char *buf, unsigned long no_bytes) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/arm/mach-netx/include/mach/
H A Duncompress.h45 unsigned long base; local
48 base = UART1_BASE;
50 base = UART2_BASE;
54 while (REG(base + UART_FR) & FR_TXFF);
55 REG(base + UART_DR) = c;
60 unsigned long base; local
63 base = UART1_BASE;
65 base = UART2_BASE;
69 while (REG(base + UART_FR) & FR_BUSY);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/arm/plat-orion/
H A Dpcie.c54 u32 __init orion_pcie_dev_id(void __iomem *base) argument
56 return readl(base + PCIE_DEV_ID_OFF) >> 16;
59 u32 __init orion_pcie_rev(void __iomem *base) argument
61 return readl(base + PCIE_DEV_REV_OFF) & 0xff;
64 int orion_pcie_link_up(void __iomem *base) argument
66 return !(readl(base + PCIE_STAT_OFF) & PCIE_STAT_LINK_DOWN);
69 int __init orion_pcie_x4_mode(void __iomem *base) argument
71 return !(readl(base + PCIE_CTRL_OFF) & PCIE_CTRL_X1_MODE);
74 int orion_pcie_get_local_bus_nr(void __iomem *base) argument
76 u32 stat = readl(base
81 orion_pcie_set_local_bus_nr(void __iomem *base, int nr) argument
91 orion_pcie_reset(void __iomem *base) argument
122 orion_pcie_setup_wins(void __iomem *base, struct mbus_dram_target_info *dram) argument
178 orion_pcie_setup(void __iomem *base, struct mbus_dram_target_info *dram) argument
211 orion_pcie_rd_conf(void __iomem *base, struct pci_bus *bus, u32 devfn, int where, int size, u32 *val) argument
230 orion_pcie_rd_conf_tlp(void __iomem *base, struct pci_bus *bus, u32 devfn, int where, int size, u32 *val) argument
269 orion_pcie_wr_conf(void __iomem *base, struct pci_bus *bus, u32 devfn, int where, int size, u32 val) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/arm/plat-orion/
H A Dpcie.c54 u32 __init orion_pcie_dev_id(void __iomem *base) argument
56 return readl(base + PCIE_DEV_ID_OFF) >> 16;
59 u32 __init orion_pcie_rev(void __iomem *base) argument
61 return readl(base + PCIE_DEV_REV_OFF) & 0xff;
64 int orion_pcie_link_up(void __iomem *base) argument
66 return !(readl(base + PCIE_STAT_OFF) & PCIE_STAT_LINK_DOWN);
69 int __init orion_pcie_x4_mode(void __iomem *base) argument
71 return !(readl(base + PCIE_CTRL_OFF) & PCIE_CTRL_X1_MODE);
74 int orion_pcie_get_local_bus_nr(void __iomem *base) argument
76 u32 stat = readl(base
81 orion_pcie_set_local_bus_nr(void __iomem *base, int nr) argument
91 orion_pcie_reset(void __iomem *base) argument
122 orion_pcie_setup_wins(void __iomem *base, struct mbus_dram_target_info *dram) argument
178 orion_pcie_setup(void __iomem *base, struct mbus_dram_target_info *dram) argument
211 orion_pcie_rd_conf(void __iomem *base, struct pci_bus *bus, u32 devfn, int where, int size, u32 *val) argument
230 orion_pcie_rd_conf_tlp(void __iomem *base, struct pci_bus *bus, u32 devfn, int where, int size, u32 *val) argument
269 orion_pcie_wr_conf(void __iomem *base, struct pci_bus *bus, u32 devfn, int where, int size, u32 val) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/gdb/config/djgpp/
H A Ddjcheck.sh16 base=`basename $f .out`
17 if test "${base}" = "dbx" ; then
22 $GDB ${options} < ${base}.in 2>&1 \
27 > ${base}.tst
28 if diff --binary -u ${base}.out ${base}.tst ; then
29 rm -f ${base}.tst
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/gdb/config/djgpp/
H A Ddjcheck.sh16 base=`basename $f .out`
17 if test "${base}" = "dbx" ; then
22 $GDB ${options} < ${base}.in 2>&1 \
27 > ${base}.tst
28 if diff --binary -u ${base}.out ${base}.tst ; then
29 rm -f ${base}.tst
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/gdb/config/djgpp/
H A Ddjcheck.sh16 base=`basename $f .out`
17 if test "${base}" = "dbx" ; then
22 $GDB ${options} < ${base}.in 2>&1 \
27 > ${base}.tst
28 if diff --binary -u ${base}.out ${base}.tst ; then
29 rm -f ${base}.tst

Completed in 130 milliseconds

1234567891011>>