Searched refs:offset (Results 201 - 225 of 3127) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-s390/
H A Dbitops.h674 unsigned long offset)
679 if (offset >= size)
681 bit = offset & (__BITOPS_WORDSIZE - 1);
682 offset -= bit;
683 size -= offset;
684 p = addr + offset / __BITOPS_WORDSIZE;
692 return size + offset;
694 return set + offset;
695 offset += __BITOPS_WORDSIZE;
699 return offset
673 find_next_zero_bit(const unsigned long * addr, unsigned long size, unsigned long offset) argument
703 find_next_bit(const unsigned long * addr, unsigned long size, unsigned long offset) argument
866 ext2_find_next_zero_bit(void *vaddr, unsigned long size, unsigned long offset) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/smbfs/
H A Dfile.c58 loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT; local
65 DENTRY_PATH(dentry), count, offset, rsize);
75 result = server->ops->read(dentry->d_inode,offset,rsize,buffer);
80 offset += result;
116 * Offset is the data offset within the page.
122 loff_t offset; local
128 offset = ((loff_t)page->index << PAGE_CACHE_SHIFT) + pageoffset;
130 inode->i_ino, SMB_I(inode)->fileid, count, offset, wsize);
138 write_ret = server->ops->write(inode, offset, wsize, buffer);
152 offset
179 unsigned offset = PAGE_CACHE_SIZE; local
206 smb_updatepage(struct file *file, struct page *page, unsigned long offset, unsigned int count) argument
294 smb_prepare_write(struct file *file, struct page *page, unsigned offset, unsigned to) argument
300 smb_commit_write(struct file *file, struct page *page, unsigned offset, unsigned to) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/hwmon/
H A Dlm87.c221 #define show_in(offset) \
222 static ssize_t show_in##offset##_input(struct device *dev, struct device_attribute *attr, char *buf) \
225 return sprintf(buf, "%u\n", IN_FROM_REG(data->in[offset], \
226 data->in_scale[offset])); \
228 static ssize_t show_in##offset##_min(struct device *dev, struct device_attribute *attr, char *buf) \
231 return sprintf(buf, "%u\n", IN_FROM_REG(data->in_min[offset], \
232 data->in_scale[offset])); \
234 static ssize_t show_in##offset##_max(struct device *dev, struct device_attribute *attr, char *buf) \
237 return sprintf(buf, "%u\n", IN_FROM_REG(data->in_max[offset], \
238 data->in_scale[offset])); \
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dbuffer.c145 int offset; local
182 offset = OFFSET;
183 disk_ptr = This->buf + offset;
184 maximize(len, This->cur_size - offset);
193 size_t offset; local
240 offset = OFFSET;
249 offset = OFFSET;
250 maximize(len, This->size - offset);
261 offset = OFFSET;
262 maximize(len, This->cur_size - offset);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/drivers/
H A Daxisflashmap.c128 .offset = 0
133 .offset = CONFIG_ETRAX_PTABLE_SECTOR
138 .offset = 0x200000 - (5 * CONFIG_ETRAX_PTABLE_SECTOR)
147 .offset = 0
152 .offset = 0
157 .offset = 0
162 .offset = 0
167 .offset = 0
172 .offset = 0
177 .offset
331 unsigned long offset = CONFIG_ETRAX_PTABLE_SECTOR; local
381 int offset = crisv32_nand_cramfs_offset & ~(1024-1); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/mtd/
H A Dssfdc.c110 loff_t offset; local
124 for (k = 0, offset = 0; k < 4; k++, offset += mtd->erasesize) {
125 if (!mtd->block_isbad(mtd, offset)) {
126 ret = mtd->read(mtd, offset, SECTOR_SIZE, &retlen,
136 cis_sector = (int)(offset >> SECTOR_SHIFT);
158 loff_t offset = (loff_t)sect_no << SECTOR_SHIFT; local
160 ret = mtd->read(mtd, offset, SECTOR_SIZE, &retlen, sect_buf);
204 int offset[2] = {6, 11}; /* offset o local
247 unsigned long offset; local
385 int sectors_per_block, offset, block_address; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Dpid.c93 int offset = pid & BITS_PER_PAGE_MASK; local
95 clear_bit(offset, map->page);
101 int i, offset, max_scan, pid, last = pid_ns->last_pid; local
107 offset = pid & BITS_PER_PAGE_MASK;
109 max_scan = (pid_max + BITS_PER_PAGE - 1)/BITS_PER_PAGE - !offset;
128 if (!test_and_set_bit(offset, map->page)) {
133 offset = find_next_offset(map, offset);
134 pid = mk_pid(pid_ns, map, offset);
141 } while (offset < BITS_PER_PAG
161 int offset; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/afpd/
H A Dstatus.c104 /* make room for signature and net address offset. save location of
105 * signature offset. we're also making room for directory names offset
106 * and the utf-8 server name offset.
114 * NOTE2: AFP3.1 Documentation states that the directory names offset
120 return len; /* return the offset to beginning of signature offset */
153 u_int16_t offset, sigoff; local
157 /* get server signature offset */
158 memcpy(&offset, dat
180 u_int16_t offset; local
305 u_int16_t offset; local
361 u_int16_t offset, status; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Dstatus.c106 /* make room for signature and net address offset. save location of
107 * signature offset. we're also making room for directory names offset
108 * and the utf-8 server name offset.
116 * NOTE2: AFP3.1 Documentation states that the directory names offset
122 return len; /* return the offset to beginning of signature offset */
167 u_int16_t offset, sigoff; local
171 /* get server signature offset */
172 memcpy(&offset, dat
197 u_int16_t offset; local
325 u_int16_t offset; local
381 u_int16_t offset, status; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_c/csv/
H A Dcsv.h53 * The length of any item can be calculated from the two offset fields.
55 * An offset that's illegal, used to detect unavailable fields.
57 #define OFFSET_LEN(offset, indx) \
58 (((offset)[(indx) + 1] - (offset)[(indx)]) - 1)
84 size_t offset; /* DbRecord field offset */ member in struct:__anon2064
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os_windows/
H A Dos_truncate.c33 off_t offset; local
37 offset = (off_t)pgsize * pgno;
43 "fileops: truncate %s to %lu", fhp->name, (u_long)offset);
60 if (offset > stat_offset)
81 * offset, so if we need to retry, we have to reset the offset each
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A Dtool_cb_see.c40 both represent the same value. Maximum offset used here when we lseek
41 using a 'long' data type offset */
49 ** Notice that this is not supposed to return the resulting offset. This
53 int tool_seek_cb(void *userdata, curl_off_t offset, int whence) argument
59 /* The offset check following here is only interesting if curl_off_t is
63 if(offset > OUR_MAX_SEEK_O) {
67 curl_off_t left = offset;
88 if(LSEEK_ERROR == lseek(in->fd, offset, whence))
H A Dtool_cb_see.h43 int tool_seek_cb(void *userdata, curl_off_t offset, int whence);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs39 public int Put(byte[] source, int offset, int count) argument
44 _buffer[(_tail+i) % _capacity] = source[offset+i];
61 public int Get(byte[] destination, int offset, int count) argument
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
H A DInflater.cs51 /// <param name="offset">The index of the first byte to add from <c>data</c></param>
54 public override void Add(byte[] data, int offset, int count) argument
57 if (offset < 0 || count < 0) throw new ArgumentOutOfRangeException();
58 if ((offset+count) > data.Length) throw new ArgumentException();
61 int inputIndex = offset;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/hardware/eicon/
H A Dhelpers.h29 int offset,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/boot/simple/
H A Dmisc-spruce.c32 unsigned char offset, unsigned char *val)
35 (((bus & 0xff)<<16) | (dev_fn<<8) | (offset&0xfc) | 0x80000000));
37 *val= (in_le32((unsigned *)pci_config_data) >> (8 * (offset & 3))) & 0xff;
41 unsigned char offset, unsigned char val)
44 (((bus & 0xff)<<16) | (dev_fn<<8) | (offset&0xfc) | 0x80000000));
46 out_8(pci_config_data + (offset&3), val);
50 unsigned char offset, unsigned short *val)
53 (((bus & 0xff)<<16) | (dev_fn<<8) | (offset&0xfc) | 0x80000000));
55 *val= in_le16((unsigned short *)(pci_config_data + (offset&3)));
59 unsigned char offset, unsigne
31 cpc700_pcibios_read_config_byte(unsigned char bus, unsigned char dev_fn, unsigned char offset, unsigned char *val) argument
40 cpc700_pcibios_write_config_byte(unsigned char bus, unsigned char dev_fn, unsigned char offset, unsigned char val) argument
49 cpc700_pcibios_read_config_word(unsigned char bus, unsigned char dev_fn, unsigned char offset, unsigned short *val) argument
58 cpc700_pcibios_write_config_word(unsigned char bus, unsigned char dev_fn, unsigned char offset, unsigned short val) argument
67 cpc700_pcibios_read_config_dword(unsigned char bus, unsigned char dev_fn, unsigned char offset, unsigned int *val) argument
76 cpc700_pcibios_write_config_dword(unsigned char bus, unsigned char dev_fn, unsigned char offset, unsigned int val) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/
H A Daio.h25 unsigned long long offset, int reply_fd,
H A Dmem.h12 extern int physmem_subst_mapping(void *virt, int fd, __u64 offset, int w);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/skas/
H A Dproc_mm.h20 unsigned long offset; member in struct:mm_mmap
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mach-ebsa110/
H A Dio.c197 unsigned int offset; local
203 offset = port << 2;
205 offset = (port & ~1) << 1 | (port & 1);
207 return __raw_readb((void __iomem *)ISAIO_BASE + offset);
212 unsigned int offset; local
218 offset = port << 2;
220 offset = port << 1;
223 return __raw_readw((void __iomem *)ISAIO_BASE + offset);
268 unsigned int offset; local
274 offset
278 __raw_writeb(val, (void __iomem *)ISAIO_BASE + offset); local
283 unsigned int offset; local
294 __raw_writew(val, (void __iomem *)ISAIO_BASE + offset); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/lib/
H A Dtestclearbit.S17 add r1, r1, r0, lsr #3 @ Get byte offset
18 and r3, r0, #7 @ Get bit offset
H A Dtestsetbit.S17 add r1, r1, r0, lsr #3 @ Get byte offset
18 and r3, r0, #7 @ Get bit offset
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs39 public int Put(byte[] source, int offset, int count) argument
44 _buffer[(_tail+i) % _capacity] = source[offset+i];
61 public int Get(byte[] destination, int offset, int count) argument
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
H A DInflater.cs51 /// <param name="offset">The index of the first byte to add from <c>data</c></param>
54 public override void Add(byte[] data, int offset, int count) argument
57 if (offset < 0 || count < 0) throw new ArgumentOutOfRangeException();
58 if ((offset+count) > data.Length) throw new ArgumentException();
61 int inputIndex = offset;

Completed in 325 milliseconds

1234567891011>>