HomeSort by: relevance | last modified time | path
    Searched defs:used (Results 1 - 25 of 176) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/sys/ufs/chfs/
chfs_erase.c 53 uint32_t dirty, unchecked, used, free, wasted; local in function:chfs_remap_leb
88 used = cheb->used_size;
105 chfs_change_size_used(chmp, cheb, -used);
chfs_erase.c 53 uint32_t dirty, unchecked, used, free, wasted; local in function:chfs_remap_leb
88 used = cheb->used_size;
105 chfs_change_size_used(chmp, cheb, -used);
  /src/games/hack/
hack.rumors.c 20 * Informatica, nor the names of its contributors may be used to endorse or
49 * 3. The name of the author may not be used to endorse or promote products
80 static int used(int);
135 while (rn || used(i)) {
137 if (!used(i))
149 used(int i) function in typeref:typename:int
hack.rumors.c 20 * Informatica, nor the names of its contributors may be used to endorse or
49 * 3. The name of the author may not be used to endorse or promote products
80 static int used(int);
135 while (rn || used(i)) {
137 if (!used(i))
149 used(int i) function in typeref:typename:int
  /src/sys/compat/common/
kern_mod_80.c 66 size_t used; local in function:compat_80_modstat
102 used = strlcpy(oms->oms_required, mi->mi_required,
104 if (used >= sizeof(oms->oms_required)) {
126 used = strlcpy(oms->oms_required, mi->mi_required,
128 if (used >= sizeof(oms->oms_required)) {
kern_mod_80.c 66 size_t used; local in function:compat_80_modstat
102 used = strlcpy(oms->oms_required, mi->mi_required,
104 if (used >= sizeof(oms->oms_required)) {
126 used = strlcpy(oms->oms_required, mi->mi_required,
128 if (used >= sizeof(oms->oms_required)) {
  /src/sys/compat/netbsd32/
netbsd32_compat_80.c 61 size_t used; local in function:modctl32_handle_ostat
92 used = strlcpy(oms->oms_required, mi->mi_required,
94 if (used >= sizeof(oms->oms_required)) {
116 used = strlcpy(oms->oms_required, mi->mi_required,
118 if (used >= sizeof(oms->oms_required)) {
netbsd32_compat_80.c 61 size_t used; local in function:modctl32_handle_ostat
92 used = strlcpy(oms->oms_required, mi->mi_required,
94 if (used >= sizeof(oms->oms_required)) {
116 used = strlcpy(oms->oms_required, mi->mi_required,
118 if (used >= sizeof(oms->oms_required)) {
netbsd32_module.c 60 size_t used; local in function:modctl32_handle_stat
111 used = strlcpy(req, mi->mi_required, req_len - off);
112 KASSERTMSG(used < req_len - off, "reqlist grew!");
113 off = used + 1;
114 req += used + 1;
133 used = strlcpy(req, mi->mi_required, req_len - off);
134 KASSERTMSG(used < req_len - off, "reqlist grew!");
135 off += used + 1;
136 req += used + 1;
netbsd32_module.c 60 size_t used; local in function:modctl32_handle_stat
111 used = strlcpy(req, mi->mi_required, req_len - off);
112 KASSERTMSG(used < req_len - off, "reqlist grew!");
113 off = used + 1;
114 req += used + 1;
133 used = strlcpy(req, mi->mi_required, req_len - off);
134 KASSERTMSG(used < req_len - off, "reqlist grew!");
135 off += used + 1;
136 req += used + 1;
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_priolist_types.h 22 /* A preemptive pulse used to monitor the health of each engine */
57 unsigned long used; member in struct:i915_priolist
i915_priolist_types.h 22 /* A preemptive pulse used to monitor the health of each engine */
57 unsigned long used; member in struct:i915_priolist
  /src/sys/netbt/
l2cap_misc.c 16 * 3. The name of Itronix Inc. may not be used to endorse
220 struct l2cap_channel *used, *prev = NULL; local in function:l2cap_cid_alloc
226 LIST_FOREACH(used, &l2cap_active_list, lc_ncid) {
227 if (used->lc_lcid > cid)
230 KASSERT(used->lc_lcid == cid);
236 prev = used; /* for insert after */
l2cap_upper.c 16 * 3. The name of Itronix Inc. may not be used to endorse
313 struct l2cap_channel *used, *prev = NULL; local in function:l2cap_listen_pcb
325 used = LIST_FIRST(&l2cap_listen_list);
327 if (used != NULL && used->lc_laddr.bt_psm >= psm) {
328 psm = used->lc_laddr.bt_psm + 0x0002;
354 LIST_FOREACH(used, &l2cap_listen_list, lc_ncid) {
355 if (used->lc_laddr.bt_psm < chan->lc_laddr.bt_psm)
358 if (used->lc_laddr.bt_psm == chan->lc_laddr.bt_psm
359 && bdaddr_any(&used->lc_laddr.bt_bdaddr
    [all...]
rfcomm_upper.c 17 * 3. The name of Itronix Inc. may not be used to endorse
315 struct rfcomm_dlc *used; local in function:rfcomm_listen_pcb
361 used = LIST_FIRST(&rs->rs_dlcs);
363 while (used != NULL) {
364 if (used->rd_laddr.bt_channel == channel) {
368 used = LIST_FIRST(&rs->rs_dlcs);
370 used = LIST_NEXT(used, rd_next);
413 * This should be used to give an initial value of the receive buffer
l2cap_misc.c 16 * 3. The name of Itronix Inc. may not be used to endorse
220 struct l2cap_channel *used, *prev = NULL; local in function:l2cap_cid_alloc
226 LIST_FOREACH(used, &l2cap_active_list, lc_ncid) {
227 if (used->lc_lcid > cid)
230 KASSERT(used->lc_lcid == cid);
236 prev = used; /* for insert after */
l2cap_upper.c 16 * 3. The name of Itronix Inc. may not be used to endorse
313 struct l2cap_channel *used, *prev = NULL; local in function:l2cap_listen_pcb
325 used = LIST_FIRST(&l2cap_listen_list);
327 if (used != NULL && used->lc_laddr.bt_psm >= psm) {
328 psm = used->lc_laddr.bt_psm + 0x0002;
354 LIST_FOREACH(used, &l2cap_listen_list, lc_ncid) {
355 if (used->lc_laddr.bt_psm < chan->lc_laddr.bt_psm)
358 if (used->lc_laddr.bt_psm == chan->lc_laddr.bt_psm
359 && bdaddr_any(&used->lc_laddr.bt_bdaddr
    [all...]
  /src/tests/bin/df/
getmntinfo.c 69 int64_t total, used; local in function:other_variants
78 used = total * consumed[j] / 100;
79 sf->f_bfree = (total - used) / sf->f_bsize;
81 used) / (int)sf->f_bsize;
96 #define USED 132ULL MB
100 .f_bfree = (TOTAL - USED) / BSIZE,
101 .f_bavail = (TOTAL - USED) / BSIZE,
105 #undef USED
127 #define USED 17901268ULL KB
132 .f_bfree = (TOTAL - USED) / BSIZE
    [all...]
getmntinfo.c 69 int64_t total, used; local in function:other_variants
78 used = total * consumed[j] / 100;
79 sf->f_bfree = (total - used) / sf->f_bsize;
81 used) / (int)sf->f_bsize;
96 #define USED 132ULL MB
100 .f_bfree = (TOTAL - USED) / BSIZE,
101 .f_bavail = (TOTAL - USED) / BSIZE,
105 #undef USED
127 #define USED 17901268ULL KB
132 .f_bfree = (TOTAL - USED) / BSIZE
    [all...]
  /src/usr.bin/systat/
df.c 18 * may be used to endorse or promote products derived from this software
82 int64_t used, bsize, bavail, availblks; local in function:showdf
103 used = fss[i].f_blocks - fss[i].f_bfree;
105 availblks = bavail + used;
111 pct = (1.0 * used) / availblks;
swap.c 42 * may be used to endorse or promote products derived from this software
155 "Disk", hlen, header, "Used",
162 int col, blk_div, i, avail, used, xsize, swp_free; local in function:showswap
179 used = sep->se_inuse;
181 swp_free += xsize - used;
182 mvwprintw(wnd, i + 1, col, "%9d ", used / blk_div);
184 whline(wnd, 'X', (100 * used / xsize + 1) / 2);
188 used = avail - swp_free;
190 "Total", hlen, avail / blk_div, used / blk_div);
192 whline(wnd, 'X', (100 * used / avail + 1) / 2)
    [all...]
  /src/lib/libedit/
chartype.c 96 ssize_t used; local in function:ct_encode_string
103 used = (ssize_t)(dst - conv->cbuff);
104 if ((conv->csize - (size_t)used) < 5) {
108 dst = conv->cbuff + used;
112 used = ct_encode_char(dst, (size_t)5, *s);
113 if (used == -1) /* failed to encode, need more buffer space */
116 dst += used;
218 ssize_t used; local in function:ct_visual_string
226 used = 0;
229 used = ct_visual_char(dst
    [all...]
  /src/common/dist/zlib/contrib/infback9/
inftree9.c 24 lens shorts, which is used as a work area. type is the type of code
42 unsigned used; /* code entries in table used */ local in function:inflate_table9
96 The length counts are used for other purposes as well, i.e. finding
140 filled is at next and has curr index bits. The code being used is huff
154 counts are used for this, and so count[] is decremented as codes are
157 used keeps track of how many table entries have been allocated from the
172 base = extra = work; /* dummy value--not used */
196 used = 1U << root; /* use root table entries */
197 mask = used - 1; /* mask for comparing low *
    [all...]
  /src/common/dist/zlib/
inftrees.c 26 lens shorts, which is used as a work area. type is the type of code
44 unsigned used; /* code entries in table used */ local in function:inflate_table
96 The length counts are used for other purposes as well, i.e. finding
148 filled is at next and has curr index bits. The code being used is huff
162 counts are used for this, and so count[] is decremented as codes are
165 used keeps track of how many table entries have been allocated from the
180 base = extra = work; /* dummy value--not used */
202 used = 1U << root; /* use root table entries */
203 mask = used - 1; /* mask for comparing low *
    [all...]
  /src/sys/arch/x86/x86/
procfs_machdep.c 22 * 4. The name of Wasabi Systems, Inc. may not be used to endorse
212 * Only used when procfs is mounted with -o linux.
221 size_t i, total, size, used; local in function:procfs_getcpuinfstr
224 used = size = *len;
227 procfs_getonecpu(i++, ci, bf, &used);
228 total += used + 1;
229 if (used + 1 <= size) {
230 bf += used;
232 size -= used + 1;
233 used = size
    [all...]

Completed in 30 milliseconds

1 2 3 4 5 6 7 8