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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/
H A Dxfs_bit.c48 * start_bit. Size is the size of the bitmap in words.
51 xfs_contig_bits(uint *map, uint size, uint start_bit) argument
53 uint * p = ((unsigned int *) map) + (start_bit >> BIT_TO_WORD_SHIFT);
59 ASSERT(start_bit < size);
60 size -= start_bit & ~(NBWORD - 1);
61 start_bit &= (NBWORD - 1);
62 if (start_bit) {
65 tmp |= (~0U >> (NBWORD-start_bit));
77 return result - start_bit;
79 return result + ffz(tmp) - start_bit;
90 xfs_next_bit(uint *map, uint size, uint start_bit) argument
[all...]
H A Dxfs_bit.h78 /* Count continuous one bits in map starting with start_bit */
79 extern int xfs_contig_bits(uint *map, uint size, uint start_bit);
82 extern int xfs_next_bit(uint *map, uint size, uint start_bit);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/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-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/include/arch-v10/arch/
H A Dio_interface_mux.h56 const unsigned start_bit,
62 const unsigned start_bit,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Dgenalloc.c119 int nbits, start_bit, end_bit; local
133 start_bit = bitmap_find_next_zero_area(chunk->bits, end_bit, 0,
135 if (start_bit >= end_bit) {
140 addr = chunk->start_addr + ((unsigned long)start_bit << order);
142 bitmap_set(chunk->bits, start_bit, nbits);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/
H A Dtcm825x.c101 u16 start_bit; member in struct:vcontrol
113 .start_bit = 0,
125 .start_bit = 0,
137 .start_bit = 0,
149 .start_bit = 7,
161 .start_bit = 0,
173 .start_bit = 6,
185 .start_bit = 7,
198 .start_bit = 7,
210 .start_bit
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-lpc32xx/include/mach/
H A Di2c.h43 start_bit = 1 << 8, enumerator in enum:__anon7987
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-pnx4008/include/mach/
H A Di2c.h43 start_bit = 1 << 8, enumerator in enum:__anon8023
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/arch-v10/kernel/
H A Dio_interface_mux.c940 const unsigned start_bit,
952 ioif, port, start_bit, stop_bit));
954 if (!((start_bit <= stop_bit) &&
961 tmp_mask = create_mask(start_bit);
965 port, start_bit, stop_bit, mask));
1001 for (i = start_bit; i <= stop_bit; i++) {
1014 const unsigned start_bit,
1025 if (!((start_bit <= stop_bit) &&
1032 tmp_mask = create_mask(start_bit);
1036 port, start_bit, stop_bi
938 cris_io_interface_allocate_pins(const enum cris_io_interface ioif, const char port, const unsigned start_bit, const unsigned stop_bit) argument
1012 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-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Drtpdec_h264.c279 uint8_t start_bit = fu_header >> 7; local
294 if (start_bit)
296 if (start_bit) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Drtpdec_h264.c278 uint8_t start_bit = fu_header >> 7; local
292 if (start_bit)
295 if(start_bit) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ocfs2/
H A Dsuballoc.h122 unsigned int start_bit,
H A Dsuballoc.c2437 unsigned int start_bit,
2458 BUG_ON((count + start_bit) > ocfs2_bits_per_group(cl));
2462 (unsigned long long)bg_blkno, start_bit);
2472 BUG_ON((count + start_bit) > le16_to_cpu(group->bg_bits));
2476 start_bit, count, undo_fn);
2505 unsigned int start_bit,
2510 start_bit, bg_blkno, count, NULL);
2434 _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, void (*undo_fn)(unsigned int bit, unsigned long *bitmap)) argument
2502 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
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/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-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ext4/
H A Dialloc.c53 void mark_bitmap_end(int start_bit, int end_bit, char *bitmap) argument
57 if (start_bit >= end_bit)
60 ext4_debug("mark end bits +%d through +%d used\n", start_bit, end_bit);
61 for (i = start_bit; i < ((start_bit + 7) & ~7UL); i++)
H A Dext4.h1612 extern void mark_bitmap_end(int start_bit, int end_bit, char *bitmap);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/i2c/busses/
H A Di2c-pnx.c119 (slave_addr << 1) | start_bit | alg_data->mif.mode);
122 iowrite32((slave_addr << 1) | start_bit | alg_data->mif.mode,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/include/arch-v32/mach-a3/mach/hwregs/
H A Dgio_defs.h443 unsigned int start_bit : 1; member in struct:__anon8741
516 unsigned int start_bit : 1; member in struct:__anon8746
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/via/
H A Dhw.h422 u8 start_bit; member in struct:io_register
H A Dhw.c1185 start_index = reg[i].start_bit;

Completed in 244 milliseconds