Searched refs:offset (Results 1 - 25 of 5133) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/infiniband/hw/ehca/
H A Dhipz_fns.h50 #define hipz_galpa_store_eq(gal, offset, value) \
51 hipz_galpa_store(gal, EQTEMM_OFFSET(offset), value)
53 #define hipz_galpa_load_eq(gal, offset) \
54 hipz_galpa_load(gal, EQTEMM_OFFSET(offset))
56 #define hipz_galpa_store_qped(gal, offset, value) \
57 hipz_galpa_store(gal, QPEDMM_OFFSET(offset), value)
59 #define hipz_galpa_load_qped(gal, offset) \
60 hipz_galpa_load(gal, QPEDMM_OFFSET(offset))
62 #define hipz_galpa_store_mrmw(gal, offset, value) \
63 hipz_galpa_store(gal, MRMWMM_OFFSET(offset), valu
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/mach-pb1x00/
H A Dmc146818rtc.h20 static inline unsigned char CMOS_READ(unsigned long offset) argument
22 offset <<= 2;
23 return (u8)(au_readl(offset + PB1500_RTC_ADDR) & 0xff);
26 static inline void CMOS_WRITE(unsigned char data, unsigned long offset) argument
28 offset <<= 2;
29 au_writel(data, offset + PB1500_RTC_ADDR);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DLogSequenceNumber.java17 and the other specifies the offset in the log file.
21 private int offset; field in class:LogSequenceNumber
24 Construct a LogSequenceNumber with the specified file and offset.
29 @param offset
30 The log file offset.
32 public LogSequenceNumber(final int file, final int offset) { argument
34 this.offset = offset;
55 Return the file offset component of the LogSequenceNumber.
58 The file offset componen
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/mti-malta/
H A Dmalta-console.c26 #define PORT(offset) (0x3f8 + (offset))
29 static inline unsigned int serial_in(int offset) argument
31 return inb(PORT(offset));
34 static inline void serial_out(int offset, int value) argument
36 outb(value, PORT(offset));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/jz4740/
H A Dserial.h18 void jz4740_serial_out(struct uart_port *p, int offset, int value);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/musb/
H A Dmusb_io.h62 static inline u16 musb_readw(const void __iomem *addr, unsigned offset) argument
63 { return __raw_readw(addr + offset); }
65 static inline u32 musb_readl(const void __iomem *addr, unsigned offset) argument
66 { return __raw_readl(addr + offset); }
69 static inline void musb_writew(void __iomem *addr, unsigned offset, u16 data) argument
70 { __raw_writew(data, addr + offset); }
72 static inline void musb_writel(void __iomem *addr, unsigned offset, u32 data) argument
73 { __raw_writel(data, addr + offset); }
81 static inline u8 musb_readb(const void __iomem *addr, unsigned offset) argument
86 tmp = __raw_readw(addr + (offset
95 musb_writeb(void __iomem *addr, unsigned offset, u8 data) argument
110 musb_readb(const void __iomem *addr, unsigned offset) argument
113 musb_writeb(void __iomem *addr, unsigned offset, u8 data) argument
120 musb_readb(const void __iomem *addr, unsigned offset) argument
123 musb_readw(const void __iomem *addr, unsigned offset) argument
126 musb_readl(const void __iomem *addr, unsigned offset) argument
129 musb_writeb(void __iomem *addr, unsigned offset, u8 data) argument
132 musb_writew(void __iomem *addr, unsigned offset, u16 data) argument
135 musb_writel(void __iomem *addr, unsigned offset, u32 data) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/mipssim/
H A Dsim_console.c24 static inline unsigned int serial_in(int offset) argument
26 return inb(0x3f8 + offset);
29 static inline void serial_out(int offset, int value) argument
31 outb(value, 0x3f8 + offset);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/dlm/
H A Dmidcomms.h17 int dlm_process_incoming_buffer(int nodeid, const void *base, unsigned offset,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dcelp_math.h54 * Shift value left or right depending on sign of offset parameter.
56 * @param offset shift offset
58 * @return value << offset, if offset>=0; value >> -offset - otherwise
60 static inline int bidir_sal(int value, int offset) argument
62 if(offset < 0) return value >> -offset;
63 else return value << offset;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-sa1100/
H A Dgpio.c18 static int sa1100_gpio_get(struct gpio_chip *chip, unsigned offset) argument
20 return GPLR & GPIO_GPIO(offset);
23 static void sa1100_gpio_set(struct gpio_chip *chip, unsigned offset, int value) argument
26 GPSR = GPIO_GPIO(offset);
28 GPCR = GPIO_GPIO(offset);
31 static int sa1100_direction_input(struct gpio_chip *chip, unsigned offset) argument
36 GPDR &= ~GPIO_GPIO(offset);
41 static int sa1100_direction_output(struct gpio_chip *chip, unsigned offset, int value) argument
46 sa1100_gpio_set(chip, offset, value);
47 GPDR |= GPIO_GPIO(offset);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/alchemy/common/
H A Dgpiolib-au1000.c39 static int gpio2_get(struct gpio_chip *chip, unsigned offset) argument
41 return alchemy_gpio2_get_value(offset + ALCHEMY_GPIO2_BASE);
44 static void gpio2_set(struct gpio_chip *chip, unsigned offset, int value) argument
46 alchemy_gpio2_set_value(offset + ALCHEMY_GPIO2_BASE, value);
49 static int gpio2_direction_input(struct gpio_chip *chip, unsigned offset) argument
51 return alchemy_gpio2_direction_input(offset + ALCHEMY_GPIO2_BASE);
54 static int gpio2_direction_output(struct gpio_chip *chip, unsigned offset, argument
57 return alchemy_gpio2_direction_output(offset + ALCHEMY_GPIO2_BASE,
61 static int gpio2_to_irq(struct gpio_chip *chip, unsigned offset) argument
63 return alchemy_gpio2_to_irq(offset
67 gpio1_get(struct gpio_chip *chip, unsigned offset) argument
72 gpio1_set(struct gpio_chip *chip, unsigned offset, int value) argument
78 gpio1_direction_input(struct gpio_chip *chip, unsigned offset) argument
83 gpio1_direction_output(struct gpio_chip *chip, unsigned offset, int value) argument
90 gpio1_to_irq(struct gpio_chip *chip, unsigned offset) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/ripd/
H A Drip_offset.c1 /* RIP offset-list
74 rip_offset_list_free (struct rip_offset_list *offset) argument
76 XFREE (MTYPE_RIP_OFFSET_LIST, offset);
82 struct rip_offset_list *offset; local
85 LIST_LOOP (rip_offset_list_master, offset, nn)
87 if (strcmp_safe (offset->ifname, ifname) == 0)
88 return offset;
96 struct rip_offset_list *offset; local
98 offset = rip_offset_list_lookup (ifname);
99 if (offset)
116 struct rip_offset_list *offset; local
154 struct rip_offset_list *offset; local
212 struct rip_offset_list *offset; local
251 struct rip_offset_list *offset; local
345 offset_list_del(struct rip_offset_list *offset) argument
385 struct rip_offset_list *offset; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/png/
H A Dpngerror.c40 int offset; local
41 for (offset=1; offset<15; offset++)
42 if (*(error_message+offset) == ' ')
47 for (i=0; i<offset-1; i++)
53 error_message+=offset;
82 int offset = 0; local
89 for (offset=1; offset<1
95 (*(png_ptr->warning_fn))(png_ptr, warning_message+offset); local
173 int offset; local
229 int offset; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/include/asm/
H A Dio_trapped.h24 unsigned long offset,
31 __ioremap_trapped(unsigned long offset, unsigned long size) argument
33 return match_trapped_io_handler(&trapped_mem, offset, size);
36 #define __ioremap_trapped(offset, size) NULL
43 __ioport_map_trapped(unsigned long offset, unsigned long size) argument
45 return match_trapped_io_handler(&trapped_io, offset, size);
48 #define __ioport_map_trapped(offset, size) NULL
54 #define __ioremap_trapped(offset, size) NULL
55 #define __ioport_map_trapped(offset, size) NULL
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/dtc/libfdt/
H A Dfdt.c77 const void *fdt_offset_ptr(const void *fdt, int offset, int len) argument
82 if (((offset + len) < offset)
83 || ((offset + len) > fdt_size_dt_struct(fdt)))
86 p = _fdt_offset_ptr(fdt, offset);
93 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset) argument
99 if (offset % FDT_TAGSIZE)
102 tagp = fdt_offset_ptr(fdt, offset, FDT_TAGSIZE);
106 offset += FDT_TAGSIZE;
112 p = fdt_offset_ptr(fdt, offset
132 _fdt_check_node_offset(const void *fdt, int offset) argument
141 fdt_next_node(const void *fdt, int offset, int *depth) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/db_printlog/
H A Drange.awk11 offset = substr($1, start, l - start + 1);
12 i = index(offset, "]");
13 offset = substr($1, start, i - 1);
14 offset += 0;
16 if ((file == START_FILE && offset >= START_OFFSET || file > START_FILE)\
17 && (file < END_FILE || (file == END_FILE && offset < END_OFFSET)))
19 else if (file == END_FILE && offset > END_OFFSET || file > END_FILE)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/loongson/common/
H A Dearly_printk.c16 #define PORT(base, offset) (u8 *)(base + offset)
18 static inline unsigned int serial_in(unsigned char *base, int offset) argument
20 return readb(PORT(base, offset));
23 static inline void serial_out(unsigned char *base, int offset, int value) argument
25 writeb(value, PORT(base, offset));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/mti-sead3/
H A Dsead3-console.c28 #define PORT(base_addr, offset) ((unsigned int __iomem *)(base_addr+(offset)*4))
30 static inline unsigned int serial_in(int offset, unsigned int base_addr) argument
32 return __raw_readl(PORT(base_addr, offset)) & 0xff;
35 static inline void serial_out(int offset, int value, unsigned int base_addr) argument
37 __raw_writel(value, PORT(base_addr, offset));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/lib/
H A Dbitext.c23 * Returns offset in the map or -1 if out of space.
29 int offset, count; /* siamese twins */ local
54 offset = t->first_free;
56 offset = t->last_off & ~align1;
59 off_new = find_next_zero_bit(t->map, t->size, offset);
61 count += off_new - offset;
62 offset = off_new;
63 if (offset >= t->size)
64 offset = 0;
69 t->size, t->used, offset, le
103 bit_map_clear(struct bit_map *t, int offset, int len) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/util/
H A DPackedInteger.java50 * Reads a packed integer at the given buffer offset and returns it.
54 * @param off the offset in the buffer at which to start reading.
89 * Reads a packed long integer at the given buffer offset and returns it.
93 * @param off the offset in the buffer at which to start reading.
144 * buffer. This method only accesses one byte at the given offset.</p>
148 * @param off the offset in the buffer at which to start reading.
169 * buffer. This method only accesses one byte at the given offset.</p>
173 * @param off the offset in the buffer at which to start reading.
184 * Writes a packed integer starting at the given buffer offset and returns
185 * the next offset t
195 writeInt(byte[] buf, int offset, int value) argument
247 writeLong(byte[] buf, int offset, long value) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/otus/80211core/
H A Dcmm.c66 /* byte offset of target element */
76 u16_t offset; local
84 /* Get offset of first element */
86 offset = zgElementOffsetTable[subType];
87 if (offset == 0xff)
93 offset += 24;
108 while ((offset+2)<bufLen) // including element ID and length (2bytes)
111 id = zmw_rx_buf_readb(dev, buf, offset);
115 elen = zmw_rx_buf_readb(dev, buf, offset+1);
116 if (elen > bufLen - offset)
184 u16_t offset; local
256 u16_t offset = 0; local
314 u16_t offset = 0; local
343 u16_t offset; local
403 u16_t offset; local
473 zfMmAddIeSupportRate(zdev_t* dev, zbuf_t* buf, u16_t offset, u8_t eid, u8_t rateSet) argument
545 zfMmAddIeDs(zdev_t* dev, zbuf_t* buf, u16_t offset) argument
580 zfMmAddIeErp(zdev_t* dev, zbuf_t* buf, u16_t offset) argument
614 zfMmAddIeWpa(zdev_t* dev, zbuf_t* buf, u16_t offset, u16_t apId) argument
652 zfMmAddHTCapability(zdev_t* dev, zbuf_t* buf, u16_t offset) argument
707 zfMmAddPreNHTCapability(zdev_t* dev, zbuf_t* buf, u16_t offset) argument
760 zfMmAddExtendedHTCapability(zdev_t* dev, zbuf_t* buf, u16_t offset) argument
851 u16_t offset = 0; local
1488 u16_t offset; local
1663 zfSendProbeReq(zdev_t* dev, zbuf_t* buf, u16_t offset, u8_t bWithSSID) argument
1789 u16_t offset; local
1864 u16_t offset; local
1956 u16_t offset; local
2019 u16_t offset; local
2083 u16_t offset; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/pm8001/
H A Dpm8001_chips.h49 static inline void pm8001_write_32(void *addr, u32 offset, u32 val) argument
51 *((u32 *)(addr + offset)) = val;
55 u32 offset)
57 return readl(pm8001_ha->io_mem[bar].memvirtaddr + offset);
65 static inline u32 pm8001_mr32(void __iomem *addr, u32 offset) argument
67 return readl(addr + offset);
69 static inline void pm8001_mw32(void __iomem *addr, u32 offset, u32 val) argument
71 writel(val, addr + offset);
54 pm8001_cr32(struct pm8001_hba_info *pm8001_ha, u32 bar, u32 offset) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/boot/compressed/
H A Duart-16550.c13 #define PORT(offset) (CKSEG1ADDR(UART_BASE) + (offset))
18 #define PORT(offset) (CKSEG1ADDR(AR7_REGS_UART0) + (4 * offset))
25 static inline unsigned int serial_in(int offset) argument
27 return *((char *)PORT(offset));
30 static inline void serial_out(int offset, int value) argument
32 *((char *)PORT(offset)) = value;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/octeon/
H A Dcvmx-pexp-defs.h38 #define CVMX_PEXP_NPEI_BAR1_INDEXX(offset) \
39 CVMX_ADD_IO_SEG(0x00011F0000008000ull + (((offset) & 31) * 16))
62 #define CVMX_PEXP_NPEI_DMAX_COUNTS(offset) \
63 CVMX_ADD_IO_SEG(0x00011F0000008450ull + (((offset) & 7) * 16))
64 #define CVMX_PEXP_NPEI_DMAX_DBELL(offset) \
65 CVMX_ADD_IO_SEG(0x00011F00000083B0ull + (((offset) & 7) * 16))
66 #define CVMX_PEXP_NPEI_DMAX_IBUFF_SADDR(offset) \
67 CVMX_ADD_IO_SEG(0x00011F0000008400ull + (((offset) & 7) * 16))
68 #define CVMX_PEXP_NPEI_DMAX_NADDR(offset) \
69 CVMX_ADD_IO_SEG(0x00011F00000084A0ull + (((offset)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/archival/libunarchive/
H A Ddata_align.c13 const unsigned short skip_amount = (boundary - (archive_handle->offset % boundary)) % boundary;
16 archive_handle->offset += skip_amount;

Completed in 420 milliseconds

1234567891011>>