| /src/sbin/swapctl/ |
| swaplist.c | 95 int hlen, size, inuse, npgbad, ncounted, pathmax, cw; local 210 inuse = sep->se_inuse; 213 totalinuse += inuse; 223 cw, (long)(dbtoqb(inuse) / blocksize), cw, 225 (long)(dbtoqb(size - inuse) / blocksize), 226 (double)inuse / (double)size * 100.0, 234 (dbtoqb(inuse)), "", HN_AUTOSCALE, 242 (dbtoqb(size-inuse)), "", HN_AUTOSCALE, 250 (double)inuse / (double)size * 100.0,
|
| /src/sys/arch/arm/broadcom/ |
| bcm2835_pwm.c | 62 bool inuse; member in struct:bcm_pwm_channel 168 sc->sc_channels[0].inuse = false; 169 sc->sc_channels[1].inuse = false; 196 if (pwm->inuse) 199 pwm->inuse = true; 216 KASSERT(pwm->inuse); 223 pwm->inuse = false; 233 KASSERT(pwm->inuse); 300 KASSERT(pwm->inuse);
|
| /src/lib/libc/citrus/modules/ |
| citrus_hz.c | 135 escape_t *inuse; member in struct:__anon5 166 #define _STATE_NEEDS_EXPLICIT_INIT(_ps_) ((_ps_)->inuse == NULL) 176 psenc->inuse = INIT0(ei); 227 if (psenc->chlen > __arraycount(psenc->ch) || psenc->inuse == NULL) 250 if (psenc->inuse != INIT0(ei)) 256 graphic = GR(psenc->inuse); 260 graphic = GL(psenc->inuse); 273 if (psenc->inuse != INIT0(ei)) 281 if (psenc->inuse == init) { 283 } else if (INIT(psenc->inuse) == init) [all...] |
| /src/external/zlib/pigz/dist/zopfli/ |
| katajainen.c | 39 char inuse; /* Tracking for garbage collection. */ member in struct:Node 58 node->inuse = 1; 73 pool->nodes[i].inuse = 0; 79 node->inuse = 1; 85 if (!pool->next->inuse) break; /* Found one. */ 231 pool.nodes[i].inuse = 0;
|
| /src/external/mpl/bind/dist/lib/isc/ |
| mem.c | 135 atomic_size_t inuse; member in struct:isc_mem 176 size_t inuse = 0; local 181 inuse += isc_mem_inuse(ctx); 185 return inuse; 451 atomic_fetch_add_relaxed(&ctx->inuse, size); 459 atomic_size_t s = atomic_fetch_sub_relaxed(&ctx->inuse, size); 571 atomic_init(&ctx->inuse, 0); 644 INSIST(atomic_load(&ctx->inuse) == 0); 998 return atomic_load_relaxed(&ctx->inuse); 1026 size_t inuse = atomic_load_relaxed(&ctx->inuse) local 1430 size_t inuse = 0; local 1531 size_t inuse = 0; local [all...] |
| /src/sys/dev/ |
| midisynvar.h | 153 u_char inuse; member in struct:voice
|
| midisyn.c | 244 if (ms->voices[v].chan_note == cn && ms->voices[v].inuse) 287 ms->voices[voice].inuse = 0; 300 bestseq = ms->voices[0].seqno + (ms->voices[0].inuse ? 0x40000000 : 0); 303 if (ms->voices[v].inuse) 310 DPRINTFN(10,("midisyn_allocvoice: v=%d seq=%d cn=%x inuse=%d\n", 313 ms->voices[bestv].inuse)); 315 if (ms->voices[bestv].inuse) 321 ms->voices[bestv].inuse = 1; 626 if ( !vp->inuse ) \
|
| /src/sys/netinet/ |
| tcp_vtw.h | 176 fatp_word_t inuse : FATP_NTAGS; /* (1+15)*4 == CL_SIZE */ member in struct:fatp_mi 192 full.inuse = (1U << FATP_NTAGS) - 1U; 194 return (fp->inuse == full.inuse);
|
| tcp_vtw.c | 181 KASSERT(!fp->inuse); 194 KASSERT(!fp->inuse); 367 /* All entries are inuse at the top level. 382 fq->inuse = 0; 395 if (!((1 << i) & fp->inuse)) { 400 fp->inuse |= 1 << i; 404 , (fp, "fat: inuse %5.5x tag[%x] %8.8x" 405 , fp->inuse 544 , (fp, "fat: del inuse %5.5x slot %x idx %x key %x tag %x" 545 , fp->inuse, slot, idx, key, tag)) 798 uint32_t inuse = fp->inuse; local 951 uint32_t inuse = fp->inuse; local 1044 uint32_t inuse = fp->inuse; local 1158 uint32_t inuse = fp->inuse; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| enum.h | 41 int inuse; member in class:EnumDeclaration
|
| dmacro.d | 201 if (m.inuse && marg.length == 0) 207 else if (m.inuse && ((arg.length == marg.length && memcmp(arg.ptr, marg.ptr, arg.length) == 0) || 229 m.inuse++; 233 m.inuse--; 283 int inuse; // macro is in use (don't expand)
|
| template.h | 73 int inuse; // for recursive expansion detection member in class:TemplateDeclaration 276 unsigned char inuse; // for recursive expansion detection member in class:TemplateInstance
|
| declaration.d | 225 short inuse; // used to detect cycles 874 //printf("[%s] AliasDeclaration::toAlias('%s', this = %p, aliassym = %p, kind = '%s', inuse = %d)\n", 875 // loc.toChars(), toChars(), this, aliassym, aliassym ? aliassym.kind() : "", inuse); 883 if (inuse == 1 && type && _scope) 885 inuse = 2; 897 inuse = 0; 907 inuse = 0; 910 if (inuse) 947 inuse = 1; 949 inuse = 0 [all...] |
| /src/sys/arch/macppc/dev/ |
| drivebay.c | 174 CTLTYPE_INT, "inuse", "drive in use LED", 294 int inuse = (reg & I_INUSE) != 0; local 298 node.sysctl_data = &inuse; 301 inuse = *(int *)node.sysctl_data; 303 if (inuse != 0) reg |= O_INUSE; 315 node.sysctl_data = &inuse;
|
| /src/external/mpl/dhcp/bind/dist/lib/isc/ |
| mem.c | 157 size_t inuse; member in struct:isc__mem 502 ctx->inuse += size; 543 ctx->inuse += new_size; 586 INSIST(size <= ctx->inuse); 587 ctx->inuse -= size; 614 ctx->inuse -= new_size; 668 ctx->inuse += size; 694 INSIST(ctx->inuse >= size); 695 ctx->inuse -= size; 798 ctx->inuse = 0 1512 size_t inuse; local 2037 uint64_t inuse; member in struct:summarystat [all...] |
| /src/sys/kern/ |
| kern_fileassoc.c | 107 volatile bool inuse; member in struct:__anon6850 116 KASSERT(!fileassoc_global.inuse); 117 atomic_store_relaxed(&fileassoc_global.inuse, true); 129 KASSERT(fileassoc_global.inuse); 131 atomic_store_relaxed(&fileassoc_global.inuse, false); 139 return __predict_false(atomic_load_relaxed(&fileassoc_global.inuse));
|
| /src/external/historical/nawk/dist/ |
| b.c | 176 f->gototab[i].inuse = 0; 635 f->gototab[state].inuse, sizeof(gtte), 656 if (f->gototab[state].inuse == 0) { 659 f->gototab[state].inuse++; 661 } else if ((unsigned)ch > f->gototab[state].entries[f->gototab[state].inuse-1].ch) { 664 if (tab->inuse + 1 >= tab->allocated) 667 f->gototab[state].entries[f->gototab[state].inuse].ch = ch; 668 f->gototab[state].entries[f->gototab[state].inuse].state = val; 669 f->gototab[state].inuse++; 679 f->gototab[state].inuse, sizeof(gtte) [all...] |
| /src/external/bsd/top/dist/machine/ |
| m_sunos4.c | 535 register int inuse; local 541 inuse = free = locked = 0; 549 inuse++; 553 memory_stats[0] = pagetok(inuse + free); 554 memory_stats[1] = pagetok(inuse);
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| ser-go32.c | 177 char inuse; member in struct:intrupt 379 if (intr->inuse) 419 intr->inuse = 1; 446 intr->inuse = 0; 930 /* Mark fixed motherboard irqs as inuse. */ 931 intrupts[0].inuse = /* timer tick */ 932 intrupts[1].inuse = /* keyboard */ 933 intrupts[2].inuse = 1; /* slave icu */
|
| /src/external/gpl3/gdb/dist/gdb/ |
| ser-go32.c | 177 char inuse; member in struct:intrupt 379 if (intr->inuse) 419 intr->inuse = 1; 446 intr->inuse = 0; 928 /* Mark fixed motherboard irqs as inuse. */ 929 intrupts[0].inuse = /* timer tick */ 930 intrupts[1].inuse = /* keyboard */ 931 intrupts[2].inuse = 1; /* slave icu */
|
| /src/sys/ufs/lfs/ |
| lfs_subr.c | 111 fs->lfs_resblk[i].inuse = 0; 164 while (fs->lfs_resblk[i].inuse) 219 if (fs->lfs_resblk[start + i].inuse == 0) { 221 re->inuse = 1; 253 KASSERT(re->inuse == 1); 255 re->inuse = 0;
|
| ulfs_inode.h | 107 char inuse; member in struct:lfs_res_blk
|
| /src/sys/arch/newsmips/dev/ |
| sc_wrap.c | 138 sc->inuse[i] = 0; 287 if (sc->inuse[chan]) { 291 sc->inuse[chan] = 1; 391 sc->inuse[periph->periph_target] = 0;
|
| /src/usr.sbin/acpitools/aml/ |
| aml_obj.h | 199 int inuse; member in struct:aml_event
|
| /src/external/bsd/unbound/dist/services/ |
| outside_network.c | 1481 log_assert(pif->inuse > 0); 1483 pif->avail_ports[pif->avail_total - pif->inuse] = pc->number; 1485 pif->inuse--; 1486 pif->out[pc->index] = pif->out[pif->inuse]; 1711 pif->inuse = 0; 1932 for(k=0; k<outnet->ip4_ifs[i].inuse; k++) { 1948 for(k=0; k<outnet->ip6_ifs[i].inuse; k++) { 2060 * @param inuse: if -1 is returned, this bool means the port was in use. 2067 int port, int* inuse, struct ub_randstate* rnd, int dscp) 2081 (struct sockaddr*)&sa, addrlen, 1, inuse, &noproto 2166 int my_if, my_port, fd, portno, inuse, tries=0; local 3642 int inuse = 0; local [all...] |