Searched refs:start_bit (Results 1 - 17 of 17) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ntfs/
H A Dbitmap.h32 extern int __ntfs_bitmap_set_bits_in_run(struct inode *vi, const s64 start_bit,
38 * @start_bit: first bit to set
42 * Set @count bits starting at bit @start_bit in the bitmap described by the
48 const s64 start_bit, const s64 count, const u8 value)
50 return __ntfs_bitmap_set_bits_in_run(vi, start_bit, count, value,
57 * @start_bit: first bit to set
60 * Set @count bits starting at bit @start_bit in the bitmap described by the
65 static inline int ntfs_bitmap_set_run(struct inode *vi, const s64 start_bit, argument
68 return ntfs_bitmap_set_bits_in_run(vi, start_bit, count, 1);
74 * @start_bit
47 ntfs_bitmap_set_bits_in_run(struct inode *vi, const s64 start_bit, const s64 count, const u8 value) argument
82 ntfs_bitmap_clear_run(struct inode *vi, const s64 start_bit, const s64 count) argument
[all...]
H A Dbitmap.c34 * @start_bit: first bit to set
39 * Set @count bits starting at bit @start_bit in the bitmap described by the
47 int __ntfs_bitmap_set_bits_in_run(struct inode *vi, const s64 start_bit, argument
59 ntfs_debug("Entering for i_ino 0x%lx, start_bit 0x%llx, count 0x%llx, "
60 "value %u.%s", vi->i_ino, (unsigned long long)start_bit,
63 BUG_ON(start_bit < 0);
68 * bits, i.e. @start_bit and @start_bit + @cnt - 1, respectively.
70 index = start_bit >> (3 + PAGE_CACHE_SHIFT);
71 end_index = (start_bit
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/
H A Dxfs_bit.c171 * start_bit. Size is the size of the bitmap in words.
179 xfs_count_bits(uint *map, uint size, uint start_bit) argument
188 bytep = (char*)(map + (start_bit & ~0x7));
189 byte_bit = start_bit & 0x7;
199 * If start_bit is not byte aligned, then process the
224 * start_bit. Size is the size of the bitmap in words.
227 xfs_contig_bits(uint *map, uint size, uint start_bit) argument
229 uint * p = ((unsigned int *) map) + (start_bit >> BIT_TO_WORD_SHIFT);
235 ASSERT(start_bit < size);
236 size -= start_bit
266 xfs_next_bit(uint *map, uint size, uint start_bit) argument
[all...]
H A Dxfs_bit.h58 /* Count set bits in map starting with start_bit */
59 extern int xfs_count_bits(uint *map, uint size, uint start_bit);
61 /* Count continuous one bits in map starting with start_bit */
62 extern int xfs_contig_bits(uint *map, uint size, uint start_bit);
65 extern int xfs_next_bit(uint *map, uint size, uint start_bit);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Dbitmap.c106 * @start_bit: first bit to set
110 * Set @count bits starting at bit @start_bit in the bitmap described by the
115 static int ntfs_bitmap_set_bits_in_run(ntfs_attr *na, s64 start_bit, argument
122 if (!na || start_bit < 0 || count < 0) {
125 __FUNCTION__, na, (long long)start_bit, (long long)count);
129 bit = start_bit & 7;
150 br = ntfs_attr_pread(na, start_bit >> 3, 1, buf);
163 /* Update @start_bit to the new position. */
164 start_bit = (start_bit
268 ntfs_bitmap_set_run(ntfs_attr *na, s64 start_bit, s64 count) argument
290 ntfs_bitmap_clear_run(ntfs_attr *na, s64 start_bit, s64 count) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/include/ntfs-3g/
H A Dbitmap.h42 extern int ntfs_bitmap_set_run(ntfs_attr *na, s64 start_bit, s64 count);
43 extern int ntfs_bitmap_clear_run(ntfs_attr *na, s64 start_bit, s64 count);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-cris/arch-v10/
H A Dio_interface_mux.h56 const unsigned start_bit,
62 const unsigned start_bit,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dgenalloc.c119 int nbits, bit, start_bit, end_bit; local
140 start_bit = bit;
144 if (bit - start_bit < nbits)
149 ((unsigned long)start_bit << order);
151 __set_bit(start_bit++, chunk->bits);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v10/kernel/
H A Dio_interface_mux.c638 const unsigned start_bit,
650 ioif, port, start_bit, stop_bit));
652 if (!((start_bit <= stop_bit) &&
659 tmp_mask = create_mask(start_bit);
663 port, start_bit, stop_bit, mask));
699 for (i = start_bit; i <= stop_bit; i++) {
712 const unsigned start_bit,
723 if (!((start_bit <= stop_bit) &&
730 tmp_mask = create_mask(start_bit);
734 port, start_bit, stop_bi
636 cris_io_interface_allocate_pins(const enum cris_io_interface ioif, const char port, const unsigned start_bit, const unsigned stop_bit) argument
710 cris_io_interface_free_pins(const enum cris_io_interface ioif, const char port, const unsigned start_bit, const unsigned stop_bit) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/arch-pnx4008/
H A Di2c.h46 start_bit = 1 << 8, enumerator in enum:__anon7994
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/mach-voyager/
H A Dvoyager_cat.c42 static void cat_pack(__u8 *msg, __u16 start_bit, __u8 *data,
44 static void cat_unpack(__u8 *msg, __u16 start_bit, __u8 *data,
119 * It writes num_bits of the data buffer in msg starting at start_bit.
123 cat_pack(__u8 *msg, const __u16 start_bit, __u8 *data, const __u16 num_bits) argument
126 const __u16 offset = start_bit % BITS_PER_BYTE;
128 __u16 byte = start_bit / BITS_PER_BYTE;
162 * Function: given a message string move to start_bit and copy num_bits into
166 cat_unpack(__u8 *msg, const __u16 start_bit, __u8 *data, const __u16 num_bits) argument
169 const __u16 offset = start_bit % BITS_PER_BYTE;
172 __u16 byte = start_bit / BITS_PER_BYT
208 __u16 start_bit = (smallest_reg_bits - 1) % BITS_PER_BYTE; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Drtp_h264.c275 uint8_t start_bit = fu_header >> 7; local
289 if (start_bit)
292 if(start_bit) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/i2c/busses/
H A Di2c-pnx.c114 (slave_addr << 1) | start_bit | alg_data->mif.mode);
117 iowrite32((slave_addr << 1) | start_bit | alg_data->mif.mode,
176 val |= start_bit;
253 val |= start_bit;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext3/
H A Dresize.c142 static void mark_bitmap_end(int start_bit, int end_bit, char *bitmap) argument
146 if (start_bit >= end_bit)
149 ext3_debug("mark end bits +%d through +%d used\n", start_bit, end_bit);
150 for (i = start_bit; i < ((start_bit + 7) & ~7UL); i++)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext4/
H A Dresize.c147 static void mark_bitmap_end(int start_bit, int end_bit, char *bitmap) argument
151 if (start_bit >= end_bit)
154 ext4_debug("mark end bits +%d through +%d used\n", start_bit, end_bit);
155 for (i = start_bit; i < ((start_bit + 7) & ~7UL); i++)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/ia32/
H A Dsys_ia32.c418 unsigned int pstart, start_bit, end_bit, i; local
421 start_bit = (start % PAGE_SIZE) / IA32_PAGE_SIZE;
428 for (i = start_bit; i < end_bit; i++)
458 for (i=start_bit; i<end_bit; i++)
508 unsigned int pstart, start_bit, end_bit, i; local
512 start_bit = (start % PAGE_SIZE) / IA32_PAGE_SIZE;
520 for (i = start_bit; i < end_bit; i++)
540 for (i = 0; i < start_bit; i++)
609 unsigned int pstart, start_bit, end_bit, size; local
619 start_bit
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ocfs2/
H A Dsuballoc.c104 unsigned int start_bit,
1630 unsigned int start_bit,
1649 BUG_ON((count + start_bit) > ocfs2_bits_per_group(cl));
1653 (unsigned long long)bg_blkno, start_bit);
1668 BUG_ON((count + start_bit) > le16_to_cpu(group->bg_bits));
1672 start_bit, count);
1627 ocfs2_free_suballoc_bits(handle_t *handle, struct inode *alloc_inode, struct buffer_head *alloc_bh, unsigned int start_bit, u64 bg_blkno, unsigned int count) argument

Completed in 161 milliseconds