Searched refs:offset (Results 276 - 300 of 3127) sorted by relevance

<<11121314151617181920>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/tc/
H A Dtc.c43 long offset; local
51 offset = TC_OLDCARD;
54 err |= tc_preadb(pattern + 0, module + offset + TC_PATTERN0);
55 err |= tc_preadb(pattern + 1, module + offset + TC_PATTERN1);
56 err |= tc_preadb(pattern + 2, module + offset + TC_PATTERN2);
57 err |= tc_preadb(pattern + 3, module + offset + TC_PATTERN3);
63 offset = TC_NEWCARD;
67 module + offset + TC_PATTERN0);
69 module + offset + TC_PATTERN1);
71 module + offset
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/net/netfilter/
H A Dnf_conntrack.h300 unsigned int offset = sizeof(struct nf_conn); local
305 offset = ALIGN(offset, __alignof__(struct nf_conn_nat));
306 return (struct nf_conn_nat *) ((void *)ct + offset);
311 unsigned int offset = sizeof(struct nf_conn); local
316 offset = ALIGN(offset, __alignof__(struct nf_conn_nat));
317 offset += sizeof(struct nf_conn_nat);
320 offset = ALIGN(offset, __alignof_
326 unsigned int offset = sizeof(struct nf_conn); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/cxgb3/
H A Dxgmac.c43 return mac->offset / (XGMAC0_1_BASE_ADDR - XGMAC0_0_BASE_ADDR);
55 u32 ctrl = A_XGM_SERDES_CTRL0 + mac->offset;
72 t3_set_reg_field(mac->adapter, A_XGM_RESET_CTRL + mac->offset,
75 t3_set_reg_field(mac->adapter, A_XGM_RESET_CTRL + mac->offset, 0,
100 unsigned int oft = mac->offset;
148 unsigned int oft = mac->offset;
203 unsigned int oft = mac->offset + idx * 8;
236 unsigned int i, reg = mac->offset + A_XGM_RX_EXACT_MATCH_LOW_1;
247 unsigned int i, reg = mac->offset + A_XGM_RX_EXACT_MATCH_HIGH_1;
274 unsigned int oft = mac->offset;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dnwflash.c78 * on 4 Meg flash the second byte is actually at offset 2...
130 printk(KERN_DEBUG "flash_read: flash_read: offset=0x%lX, "
167 printk("flash_write: offset=0x%lX, buffer=0x%p, count=0x%X.\n",
236 printk(KERN_DEBUG "flash_write: writing offset %lX, "
287 * The memory devices use the full 32/64 bits of the offset, and so we cannot
294 static loff_t flash_llseek(struct file *file, loff_t offset, int orig) argument
300 printk(KERN_DEBUG "flash_llseek: offset=0x%X, orig=0x%X.\n",
301 (unsigned int) offset, orig);
305 if (offset < 0) {
310 if ((unsigned int) offset > gbFlashSiz
459 unsigned int offset; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/mm/
H A Ddma-default.c171 unsigned int offset; local
175 nr_pages = (sg->length + sg->offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
178 for (i = 0, offset = sg->offset; i < nr_pages; i++, offset = 0) {
181 length = (length_remain > (PAGE_SIZE - offset))?
182 (PAGE_SIZE - offset): length_remain;
185 __dma_sync(addr + offset, length, direction);
205 sg->dma_address = (page_to_pfn(sg->page) << PAGE_SHIFT) + sg->offset;
212 __dma_sync(addr + sg->offset, s
224 dma_map_page(struct device *dev, struct page *page, unsigned long offset, size_t size, enum dma_data_direction direction) argument
319 dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t dma_handle, unsigned long offset, size_t size, enum dma_data_direction direction) argument
334 dma_sync_single_range_for_device(struct device *dev, dma_addr_t dma_handle, unsigned long offset, size_t size, enum dma_data_direction direction) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/udf/
H A Dtruncate.c108 epos.offset -= adsize;
110 epos.offset += adsize;
152 epos.offset -= adsize;
156 UDF_I_LENALLOC(inode) = epos.offset - udf_file_entry_alloc_offset(inode);
160 aed->lengthAllocDescs = cpu_to_le32(epos.offset - sizeof(struct allocExtDesc));
162 udf_update_tag(epos.bh->b_data, epos.offset);
181 sector_t first_block = inode->i_size >> sb->s_blocksize_bits, offset; local
192 etype = inode_bmap(inode, first_block, &epos, &eloc, &elen, &offset);
193 byte_offset = (offset << sb->s_blocksize_bits) + (inode->i_size & (sb->s_blocksize-1));
196 epos.offset
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/hwmon/
H A Dvia686a.c379 #define show_in_offset(offset) \
381 show_in##offset (struct device *dev, struct device_attribute *attr, char *buf) \
383 return show_in(dev, buf, offset); \
386 show_in##offset##_min (struct device *dev, struct device_attribute *attr, char *buf) \
388 return show_in_min(dev, buf, offset); \
391 show_in##offset##_max (struct device *dev, struct device_attribute *attr, char *buf) \
393 return show_in_max(dev, buf, offset); \
395 static ssize_t set_in##offset##_min (struct device *dev, struct device_attribute *attr, \
398 return set_in_min(dev, buf, count, offset); \
400 static ssize_t set_in##offset##_ma
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/brcm-boards/bcm947xx/
H A Dsetup.c231 .offset = 0,
237 .offset = 0
242 .offset = 0,
249 .offset = 0,
254 .offset = 0,
259 .offset = 0,
264 .offset = 0,
269 .offset = 0,
274 .offset = 0,
279 .offset
774 lookup_nflash_rootfs_offset(hndnand_t *nfl, struct mtd_info *mtd, int offset, size_t size, uint32 *trx_size) argument
860 uint32 offset = 0; local
986 check_ramdisk_trx(unsigned long offset, unsigned long ram_size) argument
1035 unsigned long offset; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jffs2/
H A Derase.c44 bad_offset = jeb->offset;
49 jeb->offset, jeb->offset, jeb->offset + c->sector_size));
65 instr->addr = jeb->offset;
84 D1(printk(KERN_DEBUG "Erase at 0x%08x failed: %d. Refiling on erase_pending_list\n", jeb->offset, ret));
95 printk(KERN_WARNING "Erase at 0x%08x failed immediately: -EROFS. Is the sector locked?\n", jeb->offset);
97 printk(KERN_WARNING "Erase at 0x%08x failed immediately: errno %d\n", jeb->offset, ret);
126 D1(printk(KERN_DEBUG "Starting erase of pending block 0x%08x\n", jeb->offset));
158 D1(printk(KERN_DEBUG "Erase completed successfully at 0x%08x\n", jeb->offset));
[all...]
H A Dsummary.h44 jint32_t offset; /* offset on jeb */ member in struct:jffs2_sum_inode_flash
52 jint32_t offset; /* offset on jeb */ member in struct:jffs2_sum_dirent_flash
66 jint32_t offset; /* offset on jeb */ member in struct:jffs2_sum_xattr_flash
73 jint32_t offset; /* offset on jeb */ member in struct:jffs2_sum_xref_flash
99 jint32_t offset; /* offset o member in struct:jffs2_sum_inode_mem
108 jint32_t offset; /* ofset on jeb */ member in struct:jffs2_sum_dirent_mem
123 jint32_t offset; member in struct:jffs2_sum_xattr_mem
131 jint32_t offset; member in struct:jffs2_sum_xref_mem
160 jint32_t offset; /* offset of the summary node in the jeb */ member in struct:jffs2_sum_marker
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv6/
H A Dmip6.c210 int offset; local
219 offset = ipv6_find_tlv(skb, opt->dsthao, IPV6_TLV_HAO);
220 if (likely(offset >= 0))
222 (skb_network_header(skb) + offset);
259 u16 offset = sizeof(struct ipv6hdr); local
268 while (offset + 1 <= packet_len) {
277 if (ipv6_find_tlv(skb, offset, IPV6_TLV_HAO) >= 0) {
279 return offset;
283 return offset;
287 return offset;
386 u16 offset = sizeof(struct ipv6hdr); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/shared/
H A Dsflash.c239 /* Read len bytes starting at offset into buf. Returns number of bytes read. */
241 sflash_read(si_t *sih, chipcregs_t *cc, uint offset, uint len, uchar *buf) argument
251 if ((offset + len) > sflash.size)
254 if ((len >= 4) && (offset & 3))
255 cnt = 4 - (offset & 3);
262 from = (uint8 *)OSL_UNCACHED((void *)SI_FLASH2 + offset);
264 from = (uint8 *)OSL_CACHED((void *)SI_FLASH2 + offset);
291 sflash_poll(si_t *sih, chipcregs_t *cc, uint offset) argument
299 if (offset >= sflash.size)
316 /* Write len bytes starting at offset int
332 sflash_write(si_t *sih, chipcregs_t *cc, uint offset, uint length, const uchar *buffer) argument
500 sflash_erase(si_t *sih, chipcregs_t *cc, uint offset) argument
537 sflash_commit(si_t *sih, chipcregs_t *cc, uint offset, uint len, const uchar *buf) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/dotzlib/DotZLib/
H A DGZipStream.cs146 /// <param name="offset">The index of the first destination byte in <c>buffer</c></param>
150 /// <exception cref="ArgumentOutOfRangeException">If <c>count</c> or <c>offset</c> are negative</exception>
151 /// <exception cref="ArgumentException">If <c>offset</c> + <c>count</c> is &gt; buffer.Length</exception>
154 public override int Read(byte[] buffer, int offset, int count) argument
158 if (offset < 0 || count < 0) throw new ArgumentOutOfRangeException();
159 if ((offset+count) > buffer.Length) throw new ArgumentException();
166 result = gzread(_gzFile, h.AddrOfPinnedObject().ToInt32() + offset, count);
192 /// <param name="offset"></param>
195 /// <exception cref="ArgumentOutOfRangeException">If <c>count</c> or <c>offset</c> are negative</exception>
196 /// <exception cref="ArgumentException">If <c>offset</
199 Write(byte[] buffer, int offset, int count) argument
255 Seek(long offset, SeekOrigin origin) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/ide/mips/
H A Dswarm.c72 phys_t offset, size; local
90 offset = __raw_readq(base + R_IO_EXT_REG(R_IO_EXT_START_ADDR, IDE_CS));
94 offset = G_IO_START_ADDR(offset) << S_IO_ADDRBASE;
96 if (offset < A_PHYS_GENBUS || offset >= A_PHYS_GENBUS_END) {
105 swarm_ide_resource.start = offset;
106 swarm_ide_resource.end = offset + size - 1;
113 base = ioremap(offset, size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/mm/
H A Dioremap.c34 * have to convert them into an offset in a page-aligned mapping, but the
41 unsigned long offset, last_addr; local
76 offset = phys_addr & ~PAGE_MASK;
93 return (void __iomem *) (offset + (char __iomem *)addr);
99 * @offset: bus address of the memory
213 unsigned long offset, last_addr; local
231 offset = phys_addr & ~PAGE_MASK;
252 return (void*) (offset + fix_to_virt(FIX_BTMAP_BEGIN));
258 unsigned long offset; local
265 offset
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/dotzlib/DotZLib/
H A DGZipStream.cs146 /// <param name="offset">The index of the first destination byte in <c>buffer</c></param>
150 /// <exception cref="ArgumentOutOfRangeException">If <c>count</c> or <c>offset</c> are negative</exception>
151 /// <exception cref="ArgumentException">If <c>offset</c> + <c>count</c> is &gt; buffer.Length</exception>
154 public override int Read(byte[] buffer, int offset, int count) argument
158 if (offset < 0 || count < 0) throw new ArgumentOutOfRangeException();
159 if ((offset+count) > buffer.Length) throw new ArgumentException();
166 result = gzread(_gzFile, h.AddrOfPinnedObject().ToInt32() + offset, count);
192 /// <param name="offset"></param>
195 /// <exception cref="ArgumentOutOfRangeException">If <c>count</c> or <c>offset</c> are negative</exception>
196 /// <exception cref="ArgumentException">If <c>offset</
199 Write(byte[] buffer, int offset, int count) argument
255 Seek(long offset, SeekOrigin origin) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgrep/
H A Dm-fgrep.c86 size_t offset = local
88 if (offset == (size_t) -1)
94 return offset;
97 if (MB_CUR_MAX > 1 && mb_properties[offset+beg-buf] == 0)
100 beg += offset;
127 offset = kwsexec (ckwset->kwset, beg, --len, &kwsmatch);
128 if (offset == (size_t) -1)
134 return offset;
136 curr = beg + offset;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/
H A Daio.c21 unsigned long long offset; member in struct:aio_thread_req
59 * mapped. The caller is required to pass an offset which is
66 int len, unsigned long long offset, struct aio_context *aio)
77 .aio_offset = offset,
152 actual = lseek64(req->io_fd, req->offset, SEEK_SET);
153 if(actual != req->offset)
277 unsigned long long offset, struct aio_context *aio)
282 err = do_aio(ctx, type, io_fd, buf, len, offset, aio);
306 unsigned long long offset, struct aio_context *aio)
375 unsigned long long offset, struc
65 do_aio(aio_context_t ctx, enum aio_type type, int fd, char *buf, int len, unsigned long long offset, struct aio_context *aio) argument
276 submit_aio_26(enum aio_type type, int io_fd, char *buf, int len, unsigned long long offset, struct aio_context *aio) argument
305 submit_aio_26(enum aio_type type, int io_fd, char *buf, int len, unsigned long long offset, struct aio_context *aio) argument
374 submit_aio_24(enum aio_type type, int io_fd, char *buf, int len, unsigned long long offset, struct aio_context *aio) argument
394 submit_aio(enum aio_type type, int io_fd, char *buf, int len, unsigned long long offset, int reply_fd, struct aio_context *aio) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/coda/
H A Dupcall.c146 int offset; local
148 offset = INSIZE(lookup);
149 insize = max_t(unsigned int, offset + length +1, OUTSIZE(lookup));
153 inp->coda_lookup.name = offset;
156 memcpy((char *)(inp) + offset, name, length);
157 *((char *)inp + offset + length) = '\0';
272 int offset; local
274 offset = INSIZE(mkdir);
275 insize = max_t(unsigned int, offset + length + 1, OUTSIZE(mkdir));
280 inp->coda_mkdir.name = offset;
303 int offset, s; local
339 int offset; local
370 int offset; local
392 int error=0, insize, outsize, offset; local
448 int offset; local
475 int offset, s; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libexif-0.6.19/libexif/
H A Dexif-data.c166 unsigned int size, unsigned int offset)
170 entry->tag = exif_get_short (d + offset + 0, data->priv->order);
171 entry->format = exif_get_short (d + offset + 2, data->priv->order);
172 entry->components = exif_get_long (d + offset + 4, data->priv->order);
190 * in the entry but somewhere else (offset).
193 doff = exif_get_long (d + offset + 8, data->priv->order);
195 doff = offset + 8;
213 /* If this is the MakerNote, remember the offset */
235 unsigned int offset)
248 exif_set_short (*d + 6 + offset
164 exif_data_load_data_entry(ExifData *data, ExifEntry *entry, const unsigned char *d, unsigned int size, unsigned int offset) argument
233 exif_data_save_data_entry(ExifData *data, ExifEntry *e, unsigned char **d, unsigned int *ds, unsigned int offset) argument
361 exif_data_load_data_content(ExifData *data, ExifIfd ifd, const unsigned char *d, unsigned int ds, unsigned int offset, unsigned int recursion_depth) argument
510 exif_data_save_data_content(ExifData *data, ExifContent *ifd, unsigned char **d, unsigned int *ds, unsigned int offset) argument
791 ExifLong offset; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/
H A Dreadahead.c210 * offset: Offset in the prev_index where the last read ended - used for
268 pgoff_t offset, unsigned long nr_to_read)
288 pgoff_t page_offset = offset + page_idx;
325 pgoff_t offset, unsigned long nr_to_read)
340 offset, this_chunk);
346 offset += this_chunk;
382 pgoff_t offset, unsigned long nr_to_read)
387 return __do_page_cache_readahead(mapping, filp, offset, nr_to_read);
391 * Read 'nr_to_read' pages starting at page 'offset'. If the flag 'block'
399 pgoff_t offset, unsigne
267 __do_page_cache_readahead(struct address_space *mapping, struct file *filp, pgoff_t offset, unsigned long nr_to_read) argument
324 force_page_cache_readahead(struct address_space *mapping, struct file *filp, pgoff_t offset, unsigned long nr_to_read) argument
381 do_page_cache_readahead(struct address_space *mapping, struct file *filp, pgoff_t offset, unsigned long nr_to_read) argument
398 blockable_page_cache_readahead(struct address_space *mapping, struct file *filp, pgoff_t offset, unsigned long nr_to_read, struct file_ra_state *ra, int block) argument
462 page_cache_readahead(struct address_space *mapping, struct file_ra_state *ra, struct file *filp, pgoff_t offset, unsigned long req_size) argument
567 handle_ra_miss(struct address_space *mapping, struct file_ra_state *ra, pgoff_t offset) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sunrpc/auth_gss/
H A Dgss_krb5_wrap.c24 gss_krb5_add_padding(struct xdr_buf *buf, int offset, int blocksize) argument
26 int padding = gss_krb5_padding(blocksize, buf->len - offset);
58 int offset = (buf->page_base + len - 1) local
61 pad = *(ptr + offset);
103 gss_wrap_kerberos(struct gss_ctx *ctx, int offset, argument
121 gss_krb5_add_padding(buf, offset, blocksize);
122 BUG_ON((buf->len - offset) % blocksize);
123 plainlen = blocksize + buf->len - offset;
126 (buf->len - offset);
128 ptr = buf->head[0].iov_base + offset;
182 gss_unwrap_kerberos(struct gss_ctx *ctx, int offset, struct xdr_buf *buf) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/squashfs/
H A Dinode.c118 int *cur_index, int *offset, int *c_byte)
127 if (msblk->devblksize - *offset == 1) {
130 (bh->b_data + *offset));
133 (bh->b_data + *offset));
144 *offset = 1;
148 (bh->b_data + *offset));
150 (bh->b_data + *offset + 1));
153 (bh->b_data + *offset));
155 (bh->b_data + *offset + 1));
158 *offset
117 get_block_length(struct super_block *s, int *cur_index, int *offset, int *c_byte) argument
192 unsigned int offset = index & ((1 << msblk->devblksize_log2) - 1); local
328 squashfs_get_cached_block(struct super_block *s, char *buffer, long long block, unsigned int offset, int length, long long *next_block, unsigned int *next_offset) argument
454 int offset = SQUASHFS_FRAGMENT_INDEX_OFFSET(fragment); local
598 int offset = SQUASHFS_LOOKUP_BLOCK_OFFSET(ino - 1); local
680 unsigned int offset = SQUASHFS_INODE_OFFSET(inode); local
1346 int offset = SQUASHFS_I(inode)->offset; local
1388 locate_meta_index(struct inode *inode, int index, int offset) argument
1422 empty_meta_index(struct inode *inode, int offset, int skip) argument
1482 read_block_index(struct super_block *s, int blocks, char *block_list, long long *start_block, int *offset) argument
1534 int offset = 0; local
1618 int offset; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/nsswitch/
H A Dwinbindd_dual.c48 int offset; member in struct:dual_list
87 &dual_list->data[dual_list->offset],
88 dual_list->length - dual_list->offset);
96 dual_list->offset += n;
98 if (dual_list->offset == dual_list->length) {
126 list->offset = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/embedded6xx/
H A Dlinkstation.c27 .offset = 0x000000,
32 .offset = 0x300000,
37 .offset = 0x370000,
42 .offset = 0x380000,
47 .offset = 0x000000,
52 .offset = 0x310000,

Completed in 238 milliseconds

<<11121314151617181920>>