Home
last modified time | relevance | path

Searched refs:need (Results 1 – 25 of 668) sorted by relevance

12345678910>>...27

/titanic_50/usr/src/lib/libresolv2/common/irs/
H A Dirpmarshall.c136 size_t need = 1 ; /*%< for null byte */ in irp_marshall_pw() local
172 need += strlen(pw->pw_name) + 1; /*%< one for fieldsep */ in irp_marshall_pw()
173 need += strlen(pw->pw_passwd) + 1; in irp_marshall_pw()
174 need += strlen(pwUid) + 1; in irp_marshall_pw()
175 need += strlen(pwGid) + 1; in irp_marshall_pw()
176 need += strlen(pwClass) + 1; in irp_marshall_pw()
177 need += strlen(pwChange) + 1; in irp_marshall_pw()
178 need += strlen(pwExpire) + 1; in irp_marshall_pw()
179 need += strlen(pw->pw_gecos) + 1; in irp_marshall_pw()
180 need += strlen(pw->pw_dir) + 1; in irp_marshall_pw()
[all …]
/titanic_50/usr/src/uts/common/avs/ns/sdbc/
H A Dsafestore.c281 ss_alloc_write(int need, int *stall, _sd_writeq_t *q) in ss_alloc_write() argument
291 SDTRACE(ST_ENTER|SDF_WR_ALLOC, SDT_INV_CD, need, in ss_alloc_write()
294 if (need <= 0) { in ss_alloc_write()
295 cmn_err(CE_WARN, "ss_alloc_write: bogus need value! %d", need); in ss_alloc_write()
301 if (q->wq_inq < need) { in ss_alloc_write()
315 WQ_SVWAIT_TOP(q, need); in ss_alloc_write()
317 WQ_SVWAIT_BOTTOM(q, need); in ss_alloc_write()
326 SDT_INV_CD, need, SDT_INV_BL, q->wq_inq, in ss_alloc_write()
338 for (i = 1; i < need; ++i) { in ss_alloc_write()
346 q->wq_inq -= need; in ss_alloc_write()
[all …]
H A Dsafestore_impl.h61 #define WQ_SET_NEED(q, need, i) { \ argument
62 (q->wq_slp[i].slp_wqneed = need); \
65 #define WQ_SVWAIT_BOTTOM(q, need) \ argument
69 WQ_SET_NEED(q, need, ix); \
74 #define WQ_SVWAIT_TOP(q, need) \ argument
77 WQ_SET_NEED(q, need, q->wq_slp_top); \
/titanic_50/usr/src/common/crypto/modes/
H A Dcbc.c49 size_t need; in cbc_encrypt_contiguous_blocks() local
76 need = block_size - ctx->cbc_remainder_len; in cbc_encrypt_contiguous_blocks()
78 if (need > remainder) in cbc_encrypt_contiguous_blocks()
82 [ctx->cbc_remainder_len], need); in cbc_encrypt_contiguous_blocks()
104 need); in cbc_encrypt_contiguous_blocks()
133 datap += need; in cbc_encrypt_contiguous_blocks()
176 size_t need; in cbc_decrypt_contiguous_blocks() local
203 need = block_size - ctx->cbc_remainder_len; in cbc_decrypt_contiguous_blocks()
205 if (need > remainder) in cbc_decrypt_contiguous_blocks()
209 [ctx->cbc_remainder_len], need); in cbc_decrypt_contiguous_blocks()
[all …]
H A Decb.c47 size_t need; in ecb_cipher_contiguous_blocks() local
74 need = block_size - ctx->ecb_remainder_len; in ecb_cipher_contiguous_blocks()
76 if (need > remainder) in ecb_cipher_contiguous_blocks()
80 [ctx->ecb_remainder_len], need); in ecb_cipher_contiguous_blocks()
97 need); in ecb_cipher_contiguous_blocks()
116 datap += need; in ecb_cipher_contiguous_blocks()
H A Dctr.c49 size_t need; in ctr_mode_contiguous_blocks() local
77 need = block_size - ctx->ctr_remainder_len; in ctr_mode_contiguous_blocks()
79 if (need > remainder) in ctr_mode_contiguous_blocks()
83 [ctx->ctr_remainder_len], need); in ctr_mode_contiguous_blocks()
126 need); in ctr_mode_contiguous_blocks()
144 datap += need; in ctr_mode_contiguous_blocks()
H A Dccm.c55 size_t need; in ccm_mode_encrypt_contiguous_blocks() local
86 need = block_size - ctx->ccm_remainder_len; in ccm_mode_encrypt_contiguous_blocks()
88 if (need > remainder) in ccm_mode_encrypt_contiguous_blocks()
92 [ctx->ccm_remainder_len], need); in ccm_mode_encrypt_contiguous_blocks()
136 need); in ccm_mode_encrypt_contiguous_blocks()
159 datap += need; in ccm_mode_encrypt_contiguous_blocks()
366 size_t need; in ccm_mode_decrypt_contiguous_blocks() local
452 need = block_size - ctx->ccm_remainder_len; in ccm_mode_decrypt_contiguous_blocks()
454 if (need > remainder) in ccm_mode_decrypt_contiguous_blocks()
458 [ctx->ccm_remainder_len], need); in ccm_mode_decrypt_contiguous_blocks()
[all …]
/titanic_50/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 &= ~NEED_UID;
[all …]
/titanic_50/usr/src/lib/libsqlite/src/
H A Dtable.c48 int need; in sqlite_get_table_cb() local
56 need = nCol*2; in sqlite_get_table_cb()
58 need = nCol; in sqlite_get_table_cb()
60 if( p->nData + need >= p->nAlloc ){ in sqlite_get_table_cb()
62 p->nAlloc = p->nAlloc*2 + need + 1; in sqlite_get_table_cb()
/titanic_50/usr/src/cmd/ssh/libssh/common/
H A Dkex.c473 int need; in kex_choose_conf() local
508 need = 0; in kex_choose_conf()
511 if (need < newkeys->enc.key_len) in kex_choose_conf()
512 need = newkeys->enc.key_len; in kex_choose_conf()
513 if (need < newkeys->enc.block_size) in kex_choose_conf()
514 need = newkeys->enc.block_size; in kex_choose_conf()
515 if (need < newkeys->mac.key_len) in kex_choose_conf()
516 need = newkeys->mac.key_len; in kex_choose_conf()
519 kex->we_need = need; in kex_choose_conf()
619 derive_key(Kex *kex, int id, int need, u_char *hash, BIGNUM *shared_secret) in derive_key() argument
[all …]
H A Ddh.c195 dh_gen_key(DH *dh, int need) in dh_gen_key() argument
201 if (2*need >= BN_num_bits(dh->p)) in dh_gen_key()
203 BN_num_bits(dh->p), 2*need); in dh_gen_key()
210 if (!BN_rand(dh->priv_key, 2*need, 0, 0)) in dh_gen_key()
/titanic_50/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_PRECIS]) >= 0 && v < n)
367 if((v = fp[n].need[FP_BASE]) >= 0 && v < n)
[all …]
/titanic_50/usr/src/test/libc-tests/tests/symbols/
H A Dsymbols_test.c198 expand_env_list(char *list, uint64_t *test, uint64_t *need, char **erritem) in expand_env_list() argument
227 *need |= mask; in expand_env_list()
229 *need &= ~(mask); in expand_env_list()
649 sym_test_env(struct sym_test *st, struct compile_env *cenv, int *need) in sym_test_env() argument
657 *need = (st->st_need_mask & b) ? 1 : 0; in sym_test_env()
846 do_compile(test_t t, struct sym_test *st, struct compile_env *cenv, int need) in do_compile() argument
903 (void) fprintf(logf, "EXPECT: %s\n", need ? "OK" : "FAIL"); in do_compile()
912 if (!need) { in do_compile()
920 if (need) { in do_compile()
938 int need; in test_compile() local
[all …]
/titanic_50/usr/src/data/zoneinfo/
H A DREADME.illumos24 You'll need the data tarball. Most data files are used in the gate
32 Next you need to copy the country tab and the zone tab files. These have
38 Now, you need to manually fix up the zone_sun.tab. zone_sun.tab has
56 After that's done, you'll need to go through the more agonizing process of
59 hardlinks that need to exist in packaging. Specifically, if you have a line in
71 Once both of those are done, you'll need to update the version of the package
73 Instead, you need to encode that letter to its spot in the alphabet. So 2013i
/titanic_50/usr/src/cmd/ssh/doc/
H A DINSTALL4 You will need working installations of Zlib and OpenSSL.
20 If you wish to build the GNOME passphrase requester, you will need the GNOME
77 If you are using PAM, you will need to manually install a PAM
80 "contrib/sshd.pam.generic", you may need to edit it before using it on
90 may need to specify this option if rsh is not in your path or has a
97 need a working installation of GNOME, including the development
115 --with-kerberos4=PATH will enable Kerberos IV support. You will need
120 --with-afs=PATH will enable AFS support. You will need to have the
125 --with-skey will enable S/Key one time password support. You will need
129 support. You will need libwrap.a and tcpd.h installed.
[all …]
/titanic_50/usr/src/cmd/refer/
H A Dglue5.c41 int need; variable
64 nsucc = need = inct = rflag = numwords = nfound = 0; in fgrep()
82 need = (int)xargv[1]; in fgrep()
136 if (need == 0) need = numwords; in execute()
192 fprintf(stderr, " found: nfound %d need %d\n", nfound, need); in execute()
194 if (++nfound >= need) { in execute()
H A Dhunt6.c42 int i, g, j, need, got, na, len; in baddrop() local
108 need = colevel ? reached : nitem; in baddrop()
113 ar[na++] = (char *)need; in baddrop()
/titanic_50/usr/src/cmd/svr4pkg/pkginstall/
H A Ddockspace.c73 static void warn(int type, char *name, fsblkcnt_t need, fsblkcnt_t avail,
125 warn(int type, char *name, fsblkcnt_t need, fsblkcnt_t avail, fsblkcnt_t limit) in warn() argument
129 logerr(gettext(WRN_NOBLKS), name, avail, (need + limit), limit, in warn()
130 (need + limit - avail)); in warn()
132 logerr(gettext(WRN_NOFILES), name, avail, (need + limit), limit, in warn()
133 (need + limit - avail)); in warn()
/titanic_50/usr/src/lib/libc/port/locale/
H A Dcollate.c391 size_t need = 0; in _collate_wxfrm() local
453 need = want; in _collate_wxfrm()
472 need = want; in _collate_wxfrm()
480 return (need); in _collate_wxfrm()
540 size_t need = 0; in _collate_sxfrm() local
613 need = want; in _collate_sxfrm()
640 need = want; in _collate_sxfrm()
648 return (need); in _collate_sxfrm()
/titanic_50/usr/src/cmd/sgs/rtld/common/
H A Da.out.c200 void *need; in aout_needed() local
202 for (need = &TEXTBASE(clmp)[AOUTDYN(clmp)->v2->ld_need]; in aout_needed()
203 need != &TEXTBASE(clmp)[0]; in aout_needed()
204 need = &TEXTBASE(clmp)[((Lnk_obj *)(need))->lo_next]) { in aout_needed()
208 name = &TEXTBASE(clmp)[((Lnk_obj *)(need))->lo_name]; in aout_needed()
210 if (((Lnk_obj *)(need))->lo_library) { in aout_needed()
228 name, ((Lnk_obj *)(need))->lo_major, in aout_needed()
229 ((Lnk_obj *)(need))->lo_minor); in aout_needed()
/titanic_50/usr/src/uts/common/io/audio/impl/
H A Daudio_output.c288 int need; in auimpl_output_callback_impl() local
302 need = fragfr; in auimpl_output_callback_impl()
325 used = min(avail, need); in auimpl_output_callback_impl()
349 need -= used; in auimpl_output_callback_impl()
351 } while (need && avail); in auimpl_output_callback_impl()
381 sp->s_errors += need; in auimpl_output_callback_impl()
/titanic_50/usr/src/cmd/tbl/
H A Dt7.c21 void need(void);
28 if (boxflg || allflg || dboxflg) need(); in runout()
94 need(void) in need() function
/titanic_50/usr/src/uts/common/xen/io/
H A Dxnbo.c493 int need; in xnbo_hotplug_connected() local
505 "SUNW-need-rx-filter", "%d", &need) != 0) in xnbo_hotplug_connected()
506 need = 0; in xnbo_hotplug_connected()
507 xnbop->o_need_rx_filter = (need > 0); in xnbo_hotplug_connected()
510 "SUNW-need-set-physaddr", "%d", &need) != 0) in xnbo_hotplug_connected()
511 need = 0; in xnbo_hotplug_connected()
512 xnbop->o_need_setphysaddr = (need > 0); in xnbo_hotplug_connected()
/titanic_50/usr/src/uts/common/io/usb/hcd/
H A DREADME209 - Depending on the polling interval, we need to add the above calculated
210 bandwidth to one or more frame bandwidth lists. Before adding, we need to
216 In this case, we need to add required bandwidth to 0,4,8,12,16,20,24,
397 For a high speed usb device, you only need high speed bandwidth. For a
398 full/low speed device connected through a high speed hub, you need both
443 - Depending on the polling interval, we need to add the above calculated
446 Before adding, we need to double check the availability of bandwidth in
452 is 3. In this case, we need to add required bandwidth to 0,4,8,12,16,
454 saved using ehci_start_split_masks matrix. For this example, we need
459 For a given full/low speed interrupt or isochronous endpoint, we need both
[all …]
/titanic_50/usr/src/lib/
H A DREADME.Makefiles122 In addition, if your header files need to be installed in a location other
125 ROOTHDRDIR have been set, your Makefile need only contain
164 above example. If you need to skip the C preprocessor, just use the native
207 via MSGDOMAINPOFILE, there is no need to use MSGDOMAINPOFILE in this Makefile
309 3. A list of macros that need not be defined prior to the inclusion
336 actually do not need to set this prior to the inclusion of
369 you usually do not need to set this.
376 Makefile.rootfs), you usually do not need to set this.
389 you only need to set this when source files from directories other
400 in your Makefile. Of course, you do not need to set this if your
[all …]

12345678910>>...27