Searched refs:bitmap (Results 101 - 125 of 222) sorted by relevance

123456789

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dimager.c283 ptr = fs->inode_map->bitmap;
291 ptr = fs->block_map->bitmap;
347 ptr = fs->inode_map->bitmap;
355 ptr = fs->block_map->bitmap;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/mach-bigsmp/
H A Dmach_apic.h38 static inline unsigned long check_apicid_used(physid_mask_t bitmap, int apicid) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr015/
H A DTestConstruct01.cpp111 long bitmap = 0; local
147 else if ((bitmap & bit) != 0) {
154 bitmap |= bit;
169 cout << " expected more keys, bitmap is: " << expected << "\n";
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/reiserfs/
H A Dbitmap.c4 /* Reiserfs block (de)allocator, bitmap-based. */
52 /* It is in the bitmap block number equal to the block
55 /* Within that bitmap block it is located at bit offset *offset. */
80 "bitmap block %lu(%u) can't be freed or reused",
87 "bitmap block %lu(%u) can't be freed or reused",
95 "vs-4030: is_reusable: there is no so many bitmap blocks: "
132 /* it searches for a window of zero bits with given minimum and maximum lengths in one bitmap
155 reiserfs_warning(s, "NULL bitmap info pointer for bitmap %d",
168 return 0; // No free blocks in this bitmap
1287 reiserfs_read_bitmap_block(struct super_block *sb, unsigned int bitmap) argument
1323 struct reiserfs_bitmap_info *bitmap; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/hotplug2/
H A Dhotplug2-dnode.c123 void string_to_bitmap(char *input, unsigned long *bitmap, int bm_len) { argument
130 bitmap[i] = strtoul(token, NULL, 16);
136 bitmap[i++] = 0;
139 #define GET_BITMAP(mapkey, bitmap, name, min) \
145 string_to_bitmap(token, bitmap ## _bits, NBITS(mapkey ## _MAX)); \
147 bitmap = bitmap_to_bitstring(name, bitmap ## _bits, min, mapkey ## _MAX);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/host/
H A Dohci-hub.c499 memset(desc->bitmap, 0xff, sizeof(desc->bitmap));
500 desc->bitmap [0] = rh & RH_B_DR;
502 desc->bitmap [1] = (rh & RH_B_DR) >> 8;
503 desc->bitmap [2] = 0xff;
505 desc->bitmap [1] = 0xff;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr016/src/com/sleepycat/db/test/
H A DDatabaseTest.java264 long bitmap = 0;
315 else if ((bitmap & bit) != 0) {
322 bitmap |= bit;
337 System.out.print(" expected more keys, bitmap is: " + expected + "\n");
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A DdirCache.c62 static int addBit(unsigned int *bitmap, int hash, int checkOnly) argument
70 return bitmap[entry] & bit;
72 bitmap[entry] |= bit;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/selinux/ss/
H A Debitmap.c2 * Implementation of the extensible bitmap type.
9 * Added support to import/export the NetLabel category bitmap
73 * ebitmap_netlbl_export - Export an ebitmap into a NetLabel category bitmap
75 * @catmap: the NetLabel category bitmap
78 * Export a SELinux extensibile bitmap into a NetLabel category bitmap.
118 c_iter->bitmap[cmap_idx] = e_iter->map;
130 * ebitmap_netlbl_import - Import a NetLabel category bitmap into an ebitmap
132 * @catmap: the NetLabel category bitmap
135 * Import a NetLabel category bitmap int
[all...]
H A Dmls.c472 struct ebitmap bitmap; local
487 ebitmap_init(&bitmap);
496 rc = ebitmap_set_bit(&bitmap, catdatum->value - 1, 1);
502 c->range.level[l].cat = bitmap;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/include/
H A Dpassdb.h149 struct bitmap *change_flags;
150 struct bitmap *set_flags;
214 struct bitmap *change_flags;
215 struct bitmap *set_flags;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/amso1100/
H A Dc2_alloc.c36 #include <linux/bitmap.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/afpd/
H A Dfile.h122 extern int getmetadata (struct vol *vol, u_int16_t bitmap, struct path *path,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc/mm/
H A Diommu.c66 unsigned long *bitmap; local
116 bitmap = kmalloc(IOMMU_NPTES>>3, GFP_KERNEL);
117 if (!bitmap) {
118 prom_printf("Unable to allocate iommu bitmap [%d]\n",
122 bit_map_init(&iommu->usemap, bitmap, IOMMU_NPTES);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ocfs2/
H A Dlocalalloc.c94 * file. Otherwise, it has to go to the main bitmap.
106 * allocation to take up to half the bitmap. */
189 * return any unused bits to the bitmap and write out a clean
306 * We want to free the bitmap bits outside of any recovery context as
379 * main bitmap.
416 /* we want the bitmap change to be recorded on disk asap */
534 void *bitmap; local
554 bitmap = la->la_bitmap;
569 ocfs2_set_bit(start++, bitmap);
608 void *bitmap local
694 void *bitmap; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/dec/
H A Dprom.h65 #define REX_PROM_GETBITMAP 0x84/4 /* get mem bitmap */
82 unsigned char bitmap[0]; member in struct:__anon7785
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hfs/
H A Dmdb.c64 * the B-trees and the volume bitmap.
168 HFS_SB(sb)->bitmap = (__be32 *)__get_free_pages(GFP_KERNEL, PAGE_SIZE < 8192 ? 1 : 0);
169 if (!HFS_SB(sb)->bitmap)
172 /* read in the bitmap */
176 ptr = (u8 *)HFS_SB(sb)->bitmap;
180 printk(KERN_ERR "hfs: unable to read volume bitmap\n");
302 ptr = (u8 *)HFS_SB(sb)->bitmap;
306 printk(KERN_ERR "hfs: unable to read volume bitmap\n");
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Dgenapic.h32 unsigned long (*check_apicid_used)(physid_mask_t bitmap, int apicid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/mach-es7000/
H A Dmach_apic.h41 static inline unsigned long check_apicid_used(physid_mask_t bitmap, int apicid) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/mach-summit/
H A Dmach_apic.h10 * The low nibble is a 4-bit bitmap. */
30 static inline unsigned long check_apicid_used(physid_mask_t bitmap, int apicid) argument
63 /* We only have a 4 wide bitmap in cluster mode. If a deranged
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/dec/
H A Dprom.h65 #define REX_PROM_GETBITMAP 0x84/4 /* get mem bitmap */
82 unsigned char bitmap[0]; member in struct:__anon9156
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Dfile.h122 extern int getmetadata (struct vol *vol, u_int16_t bitmap, struct path *path,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Dmd.c22 - persistent bitmap code
40 #include <linux/raid/bitmap.h>
842 } else if (mddev->bitmap) {
843 /* if adding to array with a bitmap, then we can accept an
846 if (ev1 < mddev->bitmap->events_cleared)
945 if (mddev->bitmap && mddev->bitmap_file == NULL)
1209 } else if (mddev->bitmap) {
1210 /* If adding to array with a bitmap, then we can accept an
1213 if (ev1 < mddev->bitmap->events_cleared)
1275 if (mddev->bitmap
4908 struct bitmap *bitmap; local
[all...]
H A Draid1.c18 * - bitmap marked during normal i/o
19 * - bitmap used to skip nondirty blocks during sync
21 * Additions to bitmap code, (C) 2003-2004 Paul Clements, SteelEye Technology:
22 * - persistent bitmap code
36 #include <linux/raid/bitmap.h>
335 /* an I/O failed, we can't clear the bitmap */
391 /* clear the bitmap if all writes complete successfully */
392 bitmap_endwrite(r1_bio->mddev->bitmap, r1_bio->sector,
777 struct bitmap *bitmap local
2032 struct bitmap *bitmap = mddev->bitmap; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dconn.c79 /* The connections bitmap is expanded in increments of BITMAP_BLOCK_SZ. The
80 * maximum size of the bitmap is the largest positive integer, but you will hit
88 static struct bitmap *bmap;
175 /* Expand the connections bitmap. */
178 struct bitmap * nbmap;
186 DEBUG(4,("resizing connections bitmap from %d to %d\n",

Completed in 229 milliseconds

123456789