Searched refs:le16_to_cpu (Results 1 - 25 of 481) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/usb/
H A Dinput.h20 id->vendor = le16_to_cpu(dev->descriptor.idVendor);
21 id->product = le16_to_cpu(dev->descriptor.idProduct);
22 id->version = le16_to_cpu(dev->descriptor.bcdDevice);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/core/
H A Dotg_whitelist.h55 if ((le16_to_cpu(dev->descriptor.idVendor) == 0x1a0a &&
56 le16_to_cpu(dev->descriptor.idProduct) == 0xbadd))
64 id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
68 id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
74 (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
78 (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
101 le16_to_cpu(dev->descriptor.idVendor),
102 le16_to_cpu(dev->descriptor.idProduct));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ntfs/
H A Dindex.c174 le16_to_cpu(actx->attr->data.resident.value_offset));
183 for (;; ie = (INDEX_ENTRY*)((u8*)ie + le16_to_cpu(ie->length))) {
187 (u8*)ie + le16_to_cpu(ie->length) > index_end)
197 le16_to_cpu(ie->key_length) >
198 le16_to_cpu(ie->data.vi.data_offset) ||
199 (u32)le16_to_cpu(ie->data.vi.data_offset) +
200 le16_to_cpu(ie->data.vi.data_length) >
201 le16_to_cpu(ie->length))
204 if ((key_len == le16_to_cpu(ie->key_length)) && !memcmp(key,
216 le16_to_cpu(i
[all...]
H A Dlogfile.c94 if (ntfs_is_chkd_record(rp->magic) && !le16_to_cpu(rp->usa_count)) {
100 if (usa_count != le16_to_cpu(rp->usa_count)) {
106 usa_ofs = le16_to_cpu(rp->usa_ofs);
121 ra_ofs = le16_to_cpu(rp->restart_area_offset);
164 ra_ofs = le16_to_cpu(rp->restart_area_offset);
184 ca_ofs = le16_to_cpu(ra->client_array_offset);
196 ra_len = ca_ofs + le16_to_cpu(ra->log_clients) *
199 ra_ofs + le16_to_cpu(ra->restart_area_length) >
201 ra_len > le16_to_cpu(ra->restart_area_length)) {
214 le16_to_cpu(r
[all...]
H A Dmst.c48 usa_ofs = le16_to_cpu(b->usa_ofs);
50 usa_count = le16_to_cpu(b->usa_count) - 1;
87 usa_count = le16_to_cpu(b->usa_count) - 1;
134 usa_ofs = le16_to_cpu(b->usa_ofs);
136 usa_count = le16_to_cpu(b->usa_count) - 1;
183 u16 usa_ofs = le16_to_cpu(b->usa_ofs);
184 u16 usa_count = le16_to_cpu(b->usa_count) - 1;
H A Dunistr.c109 c1 = le16_to_cpu(*name1++);
110 c2 = le16_to_cpu(*name2++);
113 c1 = le16_to_cpu(upcase[c1]);
115 c2 = le16_to_cpu(upcase[c2]);
129 c1 = le16_to_cpu(*name1);
142 * The strings in little endian format and appropriate le16_to_cpu()
155 c1 = le16_to_cpu(s1[i]);
156 c2 = le16_to_cpu(s2[i]);
177 * le16_to_cpu() conversion is performed on non-little endian machines.
192 if ((c1 = le16_to_cpu(s
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Dlogfile.c100 if (ntfs_is_chkd_record(rp->magic) && !le16_to_cpu(rp->usa_count)) {
106 if (usa_count != le16_to_cpu(rp->usa_count)) {
112 usa_ofs = le16_to_cpu(rp->usa_ofs);
127 ra_ofs = le16_to_cpu(rp->restart_area_offset);
169 ra_ofs = le16_to_cpu(rp->restart_area_offset);
189 ca_ofs = le16_to_cpu(ra->client_array_offset);
202 ra_len = ca_ofs + le16_to_cpu(ra->log_clients) *
205 (u32)(ra_ofs + le16_to_cpu(ra->restart_area_length)) >
207 ra_len > le16_to_cpu(ra->restart_area_length)) {
220 le16_to_cpu(r
[all...]
H A Dmst.c58 usa_ofs = le16_to_cpu(b->usa_ofs);
60 usa_count = le16_to_cpu(b->usa_count) - 1;
106 usa_count = le16_to_cpu(b->usa_count) - 1;
156 usa_ofs = le16_to_cpu(b->usa_ofs);
158 usa_count = le16_to_cpu(b->usa_count) - 1;
208 u16 usa_ofs = le16_to_cpu(b->usa_ofs);
209 u16 usa_count = le16_to_cpu(b->usa_count) - 1;
H A Dbootsect.c74 if (le16_to_cpu(b->bpb.bytes_per_sector) < 256 ||
75 le16_to_cpu(b->bpb.bytes_per_sector) > 4096) {
77 le16_to_cpu(b->bpb.bytes_per_sector));
92 i = (u32)le16_to_cpu(b->bpb.bytes_per_sector) *
100 if (le16_to_cpu(b->bpb.reserved_sectors) ||
101 le16_to_cpu(b->bpb.root_entries) ||
102 le16_to_cpu(b->bpb.sectors) ||
103 le16_to_cpu(b->bpb.sectors_per_fat) ||
108 le16_to_cpu(b->bpb.reserved_sectors),
109 le16_to_cpu(
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dext4_fs_extents.h154 (le16_to_cpu((__path__)->p_hdr->eh_entries) \
155 < le16_to_cpu((__path__)->p_hdr->eh_max))
157 (EXT_FIRST_EXTENT((__hdr__)) + le16_to_cpu((__hdr__)->eh_entries) - 1)
159 (EXT_FIRST_INDEX((__hdr__)) + le16_to_cpu((__hdr__)->eh_entries) - 1)
161 (EXT_FIRST_EXTENT((__hdr__)) + le16_to_cpu((__hdr__)->eh_max) - 1)
163 (EXT_FIRST_INDEX((__hdr__)) + le16_to_cpu((__hdr__)->eh_max) - 1)
177 return le16_to_cpu(ext_inode_hdr(inode)->eh_depth);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jfs/
H A Djfs_unicode.c44 codepage->uni2char(le16_to_cpu(from[i]),
54 if (unlikely(le16_to_cpu(from[i]) & 0xff00)) {
61 le16_to_cpu(from[i]));
68 to[i] = (char) (le16_to_cpu(from[i]));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wireless/libertas/
H A Dcmdresp.c131 adapter->offsetvalue.offset = (u32)le16_to_cpu(reg->offset);
140 adapter->offsetvalue.offset = (u32)le16_to_cpu(reg->offset);
149 adapter->offsetvalue.offset = (u32)le16_to_cpu(reg->offset);
186 adapter->regioncode = le16_to_cpu(hwspec->regioncode);
234 " extsleepclk=%x\n", le16_to_cpu(sp->error),
235 le16_to_cpu(sp->offset), le16_to_cpu(sp->stabletime),
238 adapter->sp.sp_error = le16_to_cpu(sp->error);
239 adapter->sp.sp_offset = le16_to_cpu(sp->offset);
240 adapter->sp.sp_stabletime = le16_to_cpu(s
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/ixgb/
H A Dixgb_ee.c414 ee_map->init_ctrl_reg_1 = le16_to_cpu(EEPROM_ICW1_SIGNATURE_CLEAR);
479 hw->eeprom[i] = le16_to_cpu(ee_data);
486 ee_map->init_ctrl_reg_1 = le16_to_cpu(EEPROM_ICW1_SIGNATURE_CLEAR);
490 if ((ee_map->init_ctrl_reg_1 & le16_to_cpu(EEPROM_ICW1_SIGNATURE_MASK))
491 != le16_to_cpu(EEPROM_ICW1_SIGNATURE_VALID)) {
514 if ((ee_map->init_ctrl_reg_1 & le16_to_cpu(EEPROM_ICW1_SIGNATURE_MASK))
515 == le16_to_cpu(EEPROM_ICW1_SIGNATURE_VALID)) {
581 return (le16_to_cpu(hw->eeprom[EEPROM_PBA_1_2_REG])
582 | (le16_to_cpu(hw->eeprom[EEPROM_PBA_3_4_REG])<<16));
602 return (le16_to_cpu(ee_ma
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext2/
H A Dialloc.c79 cpu_to_le16(le16_to_cpu(desc->bg_free_inodes_count) + 1);
82 cpu_to_le16(le16_to_cpu(desc->bg_used_dirs_count) - 1);
215 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
218 (le16_to_cpu(desc->bg_free_blocks_count) >
219 le16_to_cpu(best_desc->bg_free_blocks_count))) {
297 if (le16_to_cpu(desc->bg_used_dirs_count) >= best_ndir)
299 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
301 if (le16_to_cpu(desc->bg_free_blocks_count) < avefreeb)
304 best_ndir = le16_to_cpu(desc->bg_used_dirs_count);
341 if (le16_to_cpu(des
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext3/
H A Dialloc.c168 le16_to_cpu(gdp->bg_free_inodes_count) + 1);
171 le16_to_cpu(gdp->bg_used_dirs_count) - 1);
217 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
220 (le16_to_cpu(desc->bg_free_blocks_count) >
221 le16_to_cpu(best_desc->bg_free_blocks_count))) {
292 if (le16_to_cpu(desc->bg_used_dirs_count) >= best_ndir)
294 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
296 if (le16_to_cpu(desc->bg_free_blocks_count) < avefreeb)
299 best_ndir = le16_to_cpu(desc->bg_used_dirs_count);
325 if (le16_to_cpu(des
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext4/
H A Dialloc.c168 le16_to_cpu(gdp->bg_free_inodes_count) + 1);
171 le16_to_cpu(gdp->bg_used_dirs_count) - 1);
217 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
220 (le16_to_cpu(desc->bg_free_blocks_count) >
221 le16_to_cpu(best_desc->bg_free_blocks_count))) {
293 if (le16_to_cpu(desc->bg_used_dirs_count) >= best_ndir)
295 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
297 if (le16_to_cpu(desc->bg_free_blocks_count) < avefreeb)
300 best_ndir = le16_to_cpu(desc->bg_used_dirs_count);
328 if (le16_to_cpu(des
[all...]
H A Dextents.c55 block |= ((ext4_fsblk_t) le16_to_cpu(ex->ee_start_hi) << 31) << 1;
68 block |= ((ext4_fsblk_t) le16_to_cpu(ix->ei_leaf_hi) << 31) << 1;
107 if (unlikely(le16_to_cpu(eh->eh_entries) > le16_to_cpu(eh->eh_max))) {
117 inode->i_ino, error_msg, le16_to_cpu(eh->eh_magic),
118 le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max),
119 le16_to_cpu(eh->eh_depth));
285 le16_to_cpu(path->p_ext->ee_len),
306 for (i = 0; i < le16_to_cpu(e
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ocfs2/
H A Dendian.h27 *var = cpu_to_le16(le16_to_cpu(*var) + val);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/mach-jmr3927/
H A Dmangle-port.h11 #define ioswabw(a,x) le16_to_cpu(x)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/mach-jmr3927/
H A Dmangle-port.h11 #define ioswabw(a,x) le16_to_cpu(x)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/
H A Dvga.h39 return le16_to_cpu(*addr);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/
H A Dvga.h39 return le16_to_cpu(*addr);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/tagutils/
H A Dmisc.h41 inline __u16 le16_to_cpu(__u16 le16);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/tagutils/
H A Dmisc.h40 inline __u16 le16_to_cpu(__u16 le16);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/tagutils/
H A Dmisc.h41 inline __u16 le16_to_cpu(__u16 le16);

Completed in 129 milliseconds

1234567891011>>