Searched defs:need (Results 1 - 25 of 45) sorted by relevance

12

/illumos-gate/usr/src/cmd/tbl/
H A Dt7.c21 void need(void);
28 if (boxflg || allflg || dboxflg) need();
94 need(void) function
108 * For nroff runs, we need to reserve space for the full height of the
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dtable.c48 int need; local
53 ** we need to remember from this invocation of the callback.
56 need = nCol*2;
58 need = nCol;
60 if( p->nData + need >= p->nAlloc ){
62 p->nAlloc = p->nAlloc*2 + need + 1;
/illumos-gate/usr/src/common/crypto/modes/
H A Dcbc.c49 size_t need; local
76 need = block_size - ctx->cbc_remainder_len;
78 if (need > remainder)
82 [ctx->cbc_remainder_len], need);
104 need);
133 datap += need;
176 size_t need; local
203 need = block_size - ctx->cbc_remainder_len;
205 if (need > remainder)
209 [ctx->cbc_remainder_len], need);
[all...]
H A Decb.c47 size_t need; local
74 need = block_size - ctx->ecb_remainder_len;
76 if (need > remainder)
80 [ctx->ecb_remainder_len], need);
97 need);
116 datap += need;
H A Dctr.c49 size_t need; local
77 need = block_size - ctx->ctr_remainder_len;
79 if (need > remainder)
83 [ctx->ctr_remainder_len], need);
126 need);
144 datap += need;
H A Dccm.c55 size_t need; local
86 need = block_size - ctx->ccm_remainder_len;
88 if (need > remainder)
92 [ctx->ccm_remainder_len], need);
136 need);
159 datap += need;
366 size_t need; local
410 * part of the input will be the MAC, need to isolate that
452 need = block_size - ctx->ccm_remainder_len;
454 if (need > remainde
[all...]
H A Dgcm.c138 size_t need; local
167 need = block_size - ctx->gcm_remainder_len;
169 if (need > remainder)
173 [ctx->gcm_remainder_len], need);
202 need);
228 datap += need;
/illumos-gate/usr/src/cmd/refer/
H A Dhunt6.c42 int i, g, j, need, got, na, len; local
108 need = colevel ? reached : nitem;
113 ar[na++] = (char *)need;
H A Dglue5.c41 int need; variable
64 nsucc = need = inct = rflag = numwords = nfound = 0;
82 need = (int)xargv[1];
136 if (need == 0) need = numwords;
192 fprintf(stderr, " found: nfound %d need %d\n", nfound, need);
194 if (++nfound >= need) {
/illumos-gate/usr/src/cmd/svr4pkg/pkginstall/
H A Ddockspace.c73 static void warn(int type, char *name, fsblkcnt_t need, fsblkcnt_t avail,
89 * on the "/etc/mount" command. However, we need to get more
93 * of the pkg commands need access to the mount table, this
125 warn(int type, char *name, fsblkcnt_t need, fsblkcnt_t avail, fsblkcnt_t limit) argument
129 logerr(gettext(WRN_NOBLKS), name, avail, (need + limit), limit,
130 (need + limit - avail));
132 logerr(gettext(WRN_NOFILES), name, avail, (need + limit), limit,
133 (need + limit - avail));
149 * At this point, we know we need information
152 * stat the filesystem once, at the first time we need t
[all...]
/illumos-gate/usr/src/uts/common/avs/ns/sdbc/
H A Dsafestore.c233 * Allocate the lock and sv we need to maintain waiters
281 ss_alloc_write(int need, int *stall, _sd_writeq_t *q) argument
291 SDTRACE(ST_ENTER|SDF_WR_ALLOC, SDT_INV_CD, need,
294 if (need <= 0) {
295 cmn_err(CE_WARN, "ss_alloc_write: bogus need value! %d", need);
301 if (q->wq_inq < need) {
315 WQ_SVWAIT_TOP(q, need);
317 WQ_SVWAIT_BOTTOM(q, need);
326 SDT_INV_CD, need, SDT_INV_B
[all...]
H A Dsafestore_ram.c396 ss_ram_allocresource(int need, int *stall, ss_resourcelist_t **reslist) argument
401 *reslist = ((ss_resourcelist_t *)ss_alloc_write(need, stall,
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsftable.c61 int argp, argn, maxp, need[FP_INDEX]; local
110 need[n] = -1;
143 need[FP_STR] = n;
200 need[dot] = n;
237 need[FP_SIZE] = n;
330 fp[argp].need[n] = need[n];
356 fp[n].need[v] = -1;
363 if((v = fp[n].need[FP_WIDTH]) >= 0 && v < n)
365 if((v = fp[n].need[FP_PRECI
[all...]
/illumos-gate/usr/src/lib/libpp/common/
H A Dppsearch.c119 int need; local
156 need = TYPE_HOSTED;
158 need = TYPE_VENDOR;
160 need = TYPE_INCLUDE;
162 if (dp->type & need)
164 message((-3, "search: fp=%s need=%02x index=%d dp=%s type=%02x index=%d", fp->name, need, index, dp->name, dp->type, dp->index));
359 if (!(flags & SEARCH_NEXT) && index != dp->index && (!(need & TYPE_HOSTED) || dp->index == INC_STANDARD) && (!(need & TYPE_VENDOR) || dp->index == INC_VENDOR))
/illumos-gate/usr/src/lib/libkmf/ber_der/common/
H A Dio.c46 * elements of the ber structure, those functions will need to be changed
72 ber_uint_t need, have, total; local
80 need = (len < EXBUFSIZ ? 1 : (len + (EXBUFSIZ - 1)) / EXBUFSIZ);
81 total = have * EXBUFSIZ + need * EXBUFSIZ;
114 * If the stinking thing was moved, we need to go through and
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_vadj.c212 int need; local
218 need = p + vp->vdepth - (vp+1)->vliny;
219 if (need > 0) {
220 if (state == VISUAL && WTOP - ZERO >= need && insert_line && delete_line) {
222 WTOP -= need;
224 p -= need;
229 vdellin(WTOP, need, -1);
234 vinslin((vp+1)->vliny, need, l);
324 * We need to know if it was done ``physically'' since in this
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dtparm.c147 get_space(int need) argument
149 need += out_used;
150 if (need > out_size) {
364 * Analyze the string to see how many parameters we need from the varargs
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dmbdb.c498 int need; local
605 need = NEED_FULLNAME|NEED_HOMEDIR|NEED_SHELL|NEED_UID|NEED_GID;
643 if (!bitset(NEED_FULLNAME, need) ||
649 need &= ~NEED_FULLNAME;
653 if (!bitset(NEED_HOMEDIR, need) ||
659 need &= ~NEED_HOMEDIR;
663 if (!bitset(NEED_SHELL, need) ||
669 need &= ~NEED_SHELL;
675 if (!bitset(NEED_UID, need))
691 need
[all...]
/illumos-gate/usr/src/uts/common/io/audio/impl/
H A Daudio_output.c216 * the conversion buffer is exhausted, and we need to refill it from the
288 int need; local
296 * We need/want a full fragment. If the client has
302 need = fragfr;
321 * We might have got more data than we need
323 * Take only what we need.
325 used = min(avail, need);
341 * have been all we need. This can happen
349 need -= used;
351 } while (need
[all...]
/illumos-gate/usr/src/uts/common/io/
H A Dpfmod.c240 int need; local
280 need = pfp->pf_PByteLen;
281 if (mbp && (MBLKL(mbp) < need)) {
285 if (pullupmsg(mbp, MIN(need, len)) == 0) {
356 * maintain backwards binary compatibility, we need to
476 * assumes that the header length is even, so that there's no need
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dcollate.c391 size_t need = 0; local
453 need = want;
472 need = want;
480 return (need);
491 * signed, we are limited by 7 bits per byte. To avoid zero, we need to add
502 * very small. We need the localedef code to precalculate the max
540 size_t need = 0; local
613 need = want;
640 need = want;
648 return (need);
[all...]
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Dversion.c53 * exists (this can reduce the need to allocate storage for descriptor names
54 * until it is determined a descriptor need be created (see map_symbol())).
332 * If we need to record the versions of any needed dependencies traverse the
366 Byte cnt, need = 0; local
420 * Finally, determine how many of the version dependencies need
437 need++;
441 if (need) {
/illumos-gate/usr/src/cmd/swap/
H A Dswap.c721 off_t need; local
761 need = roundup(length, fs.f_bsize) / DEV_BSIZE;
764 * "need > f.st_blocks" to account for indirect blocks
774 if (need > f.st_blocks) {
/illumos-gate/usr/src/psm/stand/cpr/sparcv9/sun4u/
H A Dbitmap.c367 * and need to be moved before kernel pages are restored; a list
416 int len, glen, scnt, need, space; local
457 need = len + (sizeof (*arp) * (scnt + 1));
460 if (len == -1 || need > space) {
462 str, mem_prop, len, need, space);
/illumos-gate/usr/src/uts/common/xen/io/
H A Dxnbo.c439 * the information we need to exchange traffic, so open the MAC device
493 int need; local
505 "SUNW-need-rx-filter", "%d", &need) != 0)
506 need = 0;
507 xnbop->o_need_rx_filter = (need > 0);
510 "SUNW-need-set-physaddr", "%d", &need) != 0)
511 need = 0;
512 xnbop->o_need_setphysaddr = (need >
[all...]

Completed in 1282 milliseconds

12