Searched refs:offset (Results 251 - 275 of 5133) sorted by relevance

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Dgmo.h113 nls_uint32 offset; member in struct:string_desc
124 nls_uint32 offset; member in struct:sysdep_segment
140 nls_uint32 offset; member in struct:sysdep_string
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DRecordInput.java37 int offset,
39 super(buffer, offset, length);
47 * Copy contructor where a new offset can be specified.
49 private RecordInput(RecordInput other, int offset) { argument
51 other.priKeyFormatId, other.buf, offset, other.len);
93 /* Save the current offset before reading the format ID. */
106 int offset = (-(formatId + 1));
108 o = visited.getObject(offset);
120 * When reading starts from a non-zero offset, we may have to
124 visitedOffset = offset;
32 RecordInput(Catalog catalog, boolean rawAccess, DatabaseEntry priKeyEntry, int priKeyFormatId, byte[] buffer, int offset, int length) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dcache.h43 uint32_t offset,
50 uint32_t offset,
57 uint32_t offset,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpio/
H A Dwm8350-gpiolib.c36 static int wm8350_gpio_direction_in(struct gpio_chip *chip, unsigned offset) argument
42 1 << offset);
45 static int wm8350_gpio_get(struct gpio_chip *chip, unsigned offset) argument
55 if (ret & (1 << offset))
61 static void wm8350_gpio_set(struct gpio_chip *chip, unsigned offset, int value) argument
67 wm8350_set_bits(wm8350, WM8350_GPIO_LEVEL, 1 << offset);
69 wm8350_clear_bits(wm8350, WM8350_GPIO_LEVEL, 1 << offset);
73 unsigned offset, int value)
80 1 << offset);
85 wm8350_gpio_set(chip, offset, valu
72 wm8350_gpio_direction_out(struct gpio_chip *chip, unsigned offset, int value) argument
90 wm8350_gpio_to_irq(struct gpio_chip *chip, unsigned offset) argument
[all...]
H A Dvr41xx_giu.c85 #define giu_read(offset) readw(giu_base + (offset))
86 #define giu_write(offset, value) writew((value), giu_base + (offset))
92 static inline u16 giu_set(u16 offset, u16 set) argument
96 data = giu_read(offset);
98 giu_write(offset, data);
103 static inline u16 giu_clear(u16 offset, u16 clear) argument
107 data = giu_read(offset);
109 giu_write(offset, dat
315 u16 offset, mask, reg; local
429 u16 offset, mask, reg; local
462 vr41xx_gpio_direction_input(struct gpio_chip *chip, unsigned offset) argument
467 vr41xx_gpio_direction_output(struct gpio_chip *chip, unsigned offset, int value) argument
475 vr41xx_gpio_to_irq(struct gpio_chip *chip, unsigned offset) argument
[all...]
H A Dtc35892-gpio.c45 static int tc35892_gpio_get(struct gpio_chip *chip, unsigned offset) argument
49 u8 reg = TC35892_GPIODATA0 + (offset / 8) * 2;
50 u8 mask = 1 << (offset % 8);
60 static void tc35892_gpio_set(struct gpio_chip *chip, unsigned offset, int val) argument
64 u8 reg = TC35892_GPIODATA0 + (offset / 8) * 2;
65 unsigned pos = offset % 8;
72 unsigned offset, int val)
76 u8 reg = TC35892_GPIODIR0 + offset / 8;
77 unsigned pos = offset % 8;
79 tc35892_gpio_set(chip, offset, va
71 tc35892_gpio_direction_output(struct gpio_chip *chip, unsigned offset, int val) argument
84 tc35892_gpio_direction_input(struct gpio_chip *chip, unsigned offset) argument
95 tc35892_gpio_to_irq(struct gpio_chip *chip, unsigned offset) argument
116 int offset = irq - tc35892_gpio->irq_base; local
178 int offset = irq - tc35892_gpio->irq_base; local
188 int offset = irq - tc35892_gpio->irq_base; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/nouveau/
H A Dnv50_grctx.c275 int offset, base; local
446 offset = 0x405400;
449 offset = 0x405400;
452 offset = 0x405400;
455 offset = 0x404800;
458 offset = 0x405400;
461 gr_def(ctx, offset + 0x0c, 0x00000002);
462 gr_def(ctx, offset + 0x10, 0x00000001);
464 offset += 4;
465 gr_def(ctx, offset
1023 int offset; local
2317 uint32_t offset; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/86xx/
H A Dgef_gpio.c41 static void _gef_gpio_set(void __iomem *reg, unsigned int offset, int value) argument
48 data = data | (0x1 << offset);
50 data = data & ~(0x1 << offset);
56 static int gef_gpio_dir_in(struct gpio_chip *chip, unsigned offset) argument
62 data = data | (0x1 << offset);
68 static int gef_gpio_dir_out(struct gpio_chip *chip, unsigned offset, int value) argument
74 _gef_gpio_set(mmchip->regs + GEF_GPIO_OUT, offset, value);
77 data = data & ~(0x1 << offset);
83 static int gef_gpio_get(struct gpio_chip *chip, unsigned offset) argument
90 state = (int)((data >> offset)
95 gef_gpio_set(struct gpio_chip *chip, unsigned offset, int value) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/sysdev/
H A Dindirect_pci.c24 indirect_read_config(struct pci_bus *bus, unsigned int devfn, int offset, argument
51 reg = ((offset & 0xf00) << 16) | (offset & 0xfc);
53 reg = offset & 0xfc;
63 * Note: the caller has already checked that offset is
66 cfg_data = hose->cfg_data + (offset & 3);
82 indirect_write_config(struct pci_bus *bus, unsigned int devfn, int offset, argument
109 reg = ((offset & 0xf00) << 16) | (offset & 0xfc);
111 reg = offset
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/microblaze/pci/
H A Dindirect_pci.c23 indirect_read_config(struct pci_bus *bus, unsigned int devfn, int offset, argument
46 reg = ((offset & 0xf00) << 16) | (offset & 0xfc);
48 reg = offset & 0xfc; /* Only 3 bits for function */
58 * Note: the caller has already checked that offset is
61 cfg_data = hose->cfg_data + (offset & 3); /* Only 3 bits for function */
77 indirect_write_config(struct pci_bus *bus, unsigned int devfn, int offset, argument
100 reg = ((offset & 0xf00) << 16) | (offset & 0xfc);
102 reg = offset
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/core/
H A Ddatagram.c297 * @offset: offset in the buffer to start copying from
303 int skb_copy_datagram_iovec(const struct sk_buff *skb, int offset, argument
307 int i, copy = start - offset;
316 if (memcpy_toiovec(to, skb->data + offset, copy))
320 offset += copy;
327 WARN_ON(start > offset + len);
330 if ((copy = end - offset) > 0) {
340 offset - start, copy);
346 offset
389 skb_copy_datagram_const_iovec(const struct sk_buff *skb, int offset, const struct iovec *to, int to_offset, int len) argument
478 skb_copy_datagram_from_iovec(struct sk_buff *skb, int offset, const struct iovec *from, int from_offset, int len) argument
560 skb_copy_and_csum_datagram(const struct sk_buff *skb, int offset, u8 __user *to, int len, __wsum *csump) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dselection.h33 extern u16 screen_glyph(struct vc_data *vc, int offset);
34 extern void complement_pos(struct vc_data *vc, int offset);
35 extern void invert_screen(struct vc_data *vc, int offset, int count, int shift);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-s3c24xx/
H A Dgpiolib.c32 static int s3c24xx_gpiolib_banka_input(struct gpio_chip *chip, unsigned offset) argument
38 unsigned offset, int value)
51 dat &= ~(1 << offset);
53 dat |= 1 << offset;
57 con &= ~(1 << offset);
66 static int s3c24xx_gpiolib_bankf_toirq(struct gpio_chip *chip, unsigned offset) argument
68 if (offset < 4)
69 return IRQ_EINT0 + offset;
71 if (offset < 8)
72 return IRQ_EINT4 + offset
37 s3c24xx_gpiolib_banka_output(struct gpio_chip *chip, unsigned offset, int value) argument
77 s3c24xx_gpiolib_bankg_toirq(struct gpio_chip *chip, unsigned offset) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-samsung/
H A Dgpio.c49 static int s3c_gpiolib_input(struct gpio_chip *chip, unsigned offset) argument
59 con &= ~(3 << (offset * 2));
68 unsigned offset, int value)
79 dat &= ~(1 << offset);
81 dat |= 1 << offset;
85 con &= ~(3 << (offset * 2));
86 con |= 1 << (offset * 2);
96 unsigned offset, int value)
106 dat &= ~(1 << offset);
108 dat |= 1 << offset;
67 s3c_gpiolib_output(struct gpio_chip *chip, unsigned offset, int value) argument
95 s3c_gpiolib_set(struct gpio_chip *chip, unsigned offset, int value) argument
114 s3c_gpiolib_get(struct gpio_chip *chip, unsigned offset) argument
120 val >>= offset; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-brcm/
H A Dgen_gpio.c168 gpiolib_request(struct gpio_chip *chip, unsigned int offset) argument
170 return BCM5301X_GPIO_FUNCNAME(gpio_request)(chip->base + offset, "gpiolib");
174 gpiolib_free(struct gpio_chip *chip, unsigned int offset) argument
176 BCM5301X_GPIO_FUNCNAME(gpio_free)(chip->base + offset);
180 gpiolib_direction_input(struct gpio_chip *chip, unsigned int offset) argument
182 return BCM5301X_GPIO_FUNCNAME(gpio_direction_input)(chip->base + offset);
186 gpiolib_get_value(struct gpio_chip *chip, unsigned int offset) argument
188 return gpio_get_value(chip->base + offset);
192 gpiolib_direction_output(struct gpio_chip *chip, unsigned int offset, int value) argument
194 return BCM5301X_GPIO_FUNCNAME(gpio_direction_output)(chip->base + offset, valu
198 gpiolib_set_value(struct gpio_chip *chip, unsigned int offset, int value) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/util-linux/
H A Dlosetup.c19 unsigned long long offset = 0; local
38 offset = xatoull(opt_o);
43 if (set_loop(&argv[0], argv[1], offset) < 0)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ntpclient/
H A Dphaselock.c52 double offset; member in struct:_seg
63 /* draw a line from a to c, what the offset is of that line
70 y = a->offset + x * (c->offset - a->offset);
96 answer->offset = d_ring[n].s.ss[s0] +
141 double find_shift(double slope, double offset) argument
143 double shift = slope - offset/600.0;
144 double shift2 = slope + 0.3 - offset/6000.0;
146 if (debug) printf("find_shift %f %f -> %f\n", slope, offset, shif
170 double offset = 0.5 * (max->offset + min->offset); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/maps/
H A Ddbox2-flash.c22 .offset = 0,
28 .offset = MTDPART_OFS_APPEND,
34 .offset = MTDPART_OFS_APPEND,
40 .offset = MTDPART_OFS_APPEND,
46 .offset = 128 * 1024,
52 .offset = 0,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/parisc/
H A Deisa_eeprom.c35 static loff_t eisa_eeprom_llseek(struct file *file, loff_t offset, int origin ) argument
42 offset += file->f_pos;
45 offset += HPEE_MAX_LENGTH;
48 return (offset >= 0 && offset < HPEE_MAX_LENGTH) ? (file->f_pos = offset) : -EINVAL;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/
H A Dsonic.h291 /* Register offset within the longword (independent of endianness,
345 int offset, __u16 val)
349 ((__u16 *) base + (offset*2))[1] = val;
351 ((__u16 *) base + (offset*2))[0] = val;
354 ((__u16 *) base)[offset] = val;
358 int offset)
362 return ((volatile __u16 *) base + (offset*2))[1];
364 return ((volatile __u16 *) base + (offset*2))[0];
367 return ((volatile __u16 *) base)[offset];
372 int offset, __u1
344 sonic_buf_put(void* base, int bitmode, int offset, __u16 val) argument
357 sonic_buf_get(void* base, int bitmode, int offset) argument
371 sonic_cda_put(struct net_device* dev, int entry, int offset, __u16 val) argument
379 sonic_cda_get(struct net_device* dev, int entry, int offset) argument
399 sonic_tda_put(struct net_device* dev, int entry, int offset, __u16 val) argument
407 sonic_tda_get(struct net_device* dev, int entry, int offset) argument
415 sonic_rda_put(struct net_device* dev, int entry, int offset, __u16 val) argument
423 sonic_rda_get(struct net_device* dev, int entry, int offset) argument
431 sonic_rra_put(struct net_device* dev, int entry, int offset, __u16 val) argument
439 sonic_rra_get(struct net_device* dev, int entry, int offset) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/udf/
H A Dmisc.c52 int offset; local
64 offset = inode->i_sb->s_blocksize - udf_file_entry_alloc_offset(inode) -
69 if (loc & 0x01 && offset >= size) {
102 offset = iinfo->i_lenEAttr;
108 memmove(&ea[offset - aal + size],
109 &ea[aal], offset - aal);
110 offset -= aal;
118 memmove(&ea[offset - ial + size],
119 &ea[ial], offset - ial);
120 offset
156 uint32_t offset; local
258 udf_read_ptagged(struct super_block *sb, struct kernel_lb_addr *loc, uint32_t offset, uint16_t *ident) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/asm-generic/bitops/
H A Dle.h22 #define generic_find_next_zero_le_bit(addr, size, offset) find_next_zero_bit(addr, size, offset)
23 #define generic_find_next_le_bit(addr, size, offset) \
24 find_next_bit(addr, size, offset)
46 unsigned long size, unsigned long offset);
48 unsigned long size, unsigned long offset);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/otus/
H A Dwrap_sec.c99 u16_t offset, u16_t length)
104 /* zmw_tx_buf_writeb(dev, buf, offset+i, src[i]); */
105 *(u8_t *)((u8_t *)buf->data+offset+i) = src[i];
109 u16_t zfwStaAddIeWpaRsn(zdev_t *dev, zbuf_t *buf, u16_t offset, u8_t frameType) argument
116 copyToIntTxBuffer(dev, buf, macp->supIe, offset,
118 /* memcpy(buf->data[offset], macp->supIe, macp->supIe[1]+2);*/
119 offset += (macp->supIe[1]+2);
122 return offset;
98 copyToIntTxBuffer(zdev_t *dev, zbuf_t *buf, u8_t *src, u16_t offset, u16_t length) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/mm/
H A Dioremap.c34 * have to convert them into an offset in a page-aligned mapping, but the
42 unsigned long offset, last_addr, addr, orig_addr; local
67 offset = phys_addr & ~PAGE_MASK;
85 return (void __iomem *)(offset + (char *)orig_addr);
92 static inline int iomapping_nontranslatable(unsigned long offset) argument
99 if (PXSEG(offset) < P3SEG || offset >= P3_ADDR_MAX)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kernel/
H A Dcrash_dump.c99 unsigned long offset, int userbuf)
102 if (copy_to_user((char __user *)buf, (vaddr + offset), csize))
105 memcpy(buf, (vaddr + offset), csize);
116 * @offset: offset in bytes into the page (based on pfn) to begin the copy
124 size_t csize, unsigned long offset, int userbuf)
135 csize = copy_oldmem_vaddr(vaddr, buf, csize, offset, userbuf);
138 csize = copy_oldmem_vaddr(vaddr, buf, csize, offset, userbuf);
98 copy_oldmem_vaddr(void *vaddr, char *buf, size_t csize, unsigned long offset, int userbuf) argument
123 copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf) argument

Completed in 132 milliseconds

<<11121314151617181920>>