Searched refs:inuse (Results 1 - 25 of 40) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/common/
H A Ddb_idspace.c38 * available (by finding the biggest gap). The minimum can be an inuse
44 __db_idspace(inuse, n, minp, maxp)
45 u_int32_t *inuse;
60 if (inuse[0] != *maxp)
61 *minp = inuse[0];
62 *maxp = inuse[0] - 1;
68 qsort(inuse, (size_t)n, sizeof(u_int32_t), __db_idcmp);
70 if ((t = (inuse[i + 1] - inuse[i])) > gap) {
76 if ((*maxp - inuse[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dalloc_stats.c20 int inuse, int isdir)
24 if (inuse > 0)
28 fs->group_desc[group].bg_free_inodes_count -= inuse;
30 fs->group_desc[group].bg_used_dirs_count += inuse;
31 fs->super->s_free_inodes_count -= inuse;
36 void ext2fs_inode_alloc_stats(ext2_filsys fs, ext2_ino_t ino, int inuse) argument
38 ext2fs_inode_alloc_stats2(fs, ino, inuse, 0);
41 void ext2fs_block_alloc_stats(ext2_filsys fs, blk_t blk, int inuse) argument
45 if (inuse > 0)
49 fs->group_desc[group].bg_free_blocks_count -= inuse;
19 ext2fs_inode_alloc_stats2(ext2_filsys fs, ext2_ino_t ino, int inuse, int isdir) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/rc/
H A Dqos.c70 int inuse; local
93 qosox_enable = bcount_enable = inuse = sticky_enable = 0;
146 if ((inuse & i) == 0) {
147 inuse |= i;
148 printf("inuse=%d\n", inuse);
288 inuse |= (1 << i) | 1; // default and highest are always built
289 sprintf(s, "%d", inuse);
290 nvram_set("qos_inuse", s); // create the inuse NVRAM here
295 if ((inuse
319 int inuse; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dmm_types.h28 short unsigned int inuse; member in struct:page::__anon10039::__anon10040
H A Dslub_def.h43 int inuse; /* Offset to metadata */ member in struct:kmem_cache
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/include/linux/
H A Dif_pppvar.h107 unsigned long inuse; /* are we allocated? */ member in struct:ppp
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/watchdog/
H A Dmtx-1_wdt.c63 unsigned long inuse; member in struct:__anon4365
118 if (test_and_set_bit(0, &mtx1_wdt_device.inuse))
127 clear_bit(0, &mtx1_wdt_device.inuse);
211 clear_bit(0, &mtx1_wdt_device.inuse);
H A Dcpu5wdt.c66 unsigned long inuse; member in struct:__anon4360
133 if ( test_and_set_bit(0, &cpu5wdt_device.inuse) )
141 clear_bit(0, &cpu5wdt_device.inuse);
243 clear_bit(0, &cpu5wdt_device.inuse);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dhash.c29 int inuse; /* number of slots in use */ member in struct:hashtable
64 H->inuse = 0;
122 H->inuse++;
137 if(alloc_ht(H,((H->inuse+1)*4+H->fill)/5))
207 H->inuse--;
217 H->inuse--;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dhostip.c348 dns->inuse = 0; /* init to not used */
364 dns->inuse++; /* mark entry as in-use */
378 * The cache entry we return will get its 'inuse' counter increased when this
429 dns->inuse++; /* we use it! */
516 * The cache entry we return will get its 'inuse' counter increased when this
684 DEBUGASSERT(dns && (dns->inuse>0));
689 dns->inuse--;
692 if(dns->inuse == 0 && dns->timestamp == 0) {
710 if(p->inuse == 0) {
H A Dhostip.h71 long inuse; /* use-counter, make very sure you decrease this member in struct:Curl_dns_entry
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Draw.c27 int inuse; member in struct:raw_device_data
77 if (++raw_devices[minor].inuse == 1)
104 if (--raw_devices[minor].inuse == 0) {
191 if (rawdev->inuse) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sparc/
H A Dsvr4.h64 u_char inuse; /* if fpu is in use */ member in struct:__anon9475
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sparc64/
H A Dsvr4.h65 u_char inuse; /* if fpu is in use */ member in struct:__anon9509
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/bridge/
H A Dbr_if.c241 unsigned long *inuse; local
243 inuse = kcalloc(BITS_TO_LONGS(BR_MAX_PORTS), sizeof(unsigned long),
245 if (!inuse)
248 set_bit(0, inuse); /* zero is reserved */
250 set_bit(p->port_no, inuse);
252 index = find_first_zero_bit(inuse, BR_MAX_PORTS);
253 kfree(inuse);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/
H A Dslub.c373 p = object + s->inuse;
386 p = object + s->inuse;
422 s->inuse - s->objsize);
431 off = s->inuse;
451 printk(KERN_ERR " offset=%tu flags=0x%04lx inuse=%u freelist=0x%p\n",
452 object - addr, page->flags, page->inuse, page->freelist);
485 s->inuse - s->objsize);
513 * objsize == inuse.
518 * object + s->inuse
532 * If slabcaches are merged then the objsize and inuse boundarie
[all...]
H A Dslab.c225 unsigned int inuse; /* num of objs active in slab */ member in struct:slab
2466 BUG_ON(slabp->inuse);
2591 slabp->inuse = 0;
2668 slabp->inuse++;
2696 slabp->inuse--;
2900 if (entries != cachep->num - slabp->inuse) {
2904 cachep->name, cachep->num, slabp, slabp->inuse);
2973 BUG_ON(slabp->inuse < 0 || slabp->inuse >= cachep->num);
2975 while (slabp->inuse < cache
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/core/
H A Ddevice.c123 long *inuse; local
128 inuse = (long *) get_zeroed_page(GFP_KERNEL);
129 if (!inuse)
139 set_bit(i, inuse);
142 i = find_first_zero_bit(inuse, PAGE_SIZE * 8);
143 free_page((unsigned long) inuse);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/atm/
H A Dresources.c78 struct atm_dev *dev, *inuse; local
88 if ((inuse = __atm_dev_lookup(number))) {
89 atm_dev_put(inuse);
97 while ((inuse = __atm_dev_lookup(dev->number))) {
98 atm_dev_put(inuse);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/macintosh/
H A Dadb.c625 int inuse; member in struct:adbdev_state
639 if (!state->inuse) {
694 state->inuse = 1;
713 state->inuse = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/sunrpc/
H A Dcache.h68 atomic_t inuse; /* active user-space update or lookup */ member in struct:cache_detail
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/cinergyT2/
H A DcinergyT2.c137 atomic_t inuse; member in struct:cinergyt2
500 atomic_inc(&cinergyt2->inuse);
539 if (atomic_dec_and_test(&cinergyt2->inuse) && cinergyt2->disconnect_pending) {
992 if (!atomic_read(&cinergyt2->inuse))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/ipmi/
H A Dipmi_msghandler.c115 unsigned int inuse : 1; member in struct:seq_table
421 if ((intf->seq_table[i].inuse)
669 if (!intf->seq_table[i].inuse)
673 if (!intf->seq_table[i].inuse) {
682 intf->seq_table[i].inuse = 1;
714 if (intf->seq_table[seq].inuse) {
723 intf->seq_table[seq].inuse = 0;
748 if ((intf->seq_table[seq].inuse)
777 if ((intf->seq_table[seq].inuse)
782 ent->inuse
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/atm/
H A Dhe.c1501 he_dev->tpd_base[i].inuse = 0;
1576 he_dev->cs_stper[i].inuse = 0;
1747 if (!he_dev->tpd_head->inuse) {
1748 he_dev->tpd_head->inuse = 1;
2045 tpd->inuse = 0;
2305 tpd->inuse = 0;
2421 if (he_dev->cs_stper[reg].inuse == 0 ||
2434 ++he_dev->cs_stper[reg].inuse;
2687 if (he_dev->cs_stper[reg].inuse == 0)
2688 hprintk("cs_stper[%d].inuse
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/
H A Dibmlana.h258 u32 inuse; /* !=0 --> free for SONIC to write */ member in struct:__anon5515

Completed in 297 milliseconds

12