Searched defs:sc (Results 1 - 25 of 35) sorted by relevance

12

/osnet-11/usr/src/cmd/sendmail/db/clib/
H A Dstrsep.c80 register int c, sc; local
89 if ((sc = *spanp++) == c) {
97 } while (sc != 0);
/osnet-11/usr/src/lib/libresolv2/common/bsd/
H A Dstrpbrk.c58 int c, sc; local
61 for (scanp = s2; (sc = *scanp++) != 0;)
62 if (sc == c)
H A Dstrsep.c64 int c, sc; local
73 if ((sc = *spanp++) == c) {
81 } while (sc != 0);
/osnet-11/usr/src/lib/libc/port/gen/
H A Dstrsep.c70 register int c, sc; local
79 if ((sc = *spanp++) == c) {
87 } while (sc != 0);
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dgetoption.c290 int sc; local
301 sc = sasl_getprop( ctx, SASL_SSF, (const void **) &ssf );
302 if ( sc != SASL_OK ) {
H A Dsetoption.c370 int sc; local
384 sc = sasl_setprop(ctx, SASL_SSF_EXTERNAL,
386 if (sc != SASL_OK) {
393 int sc; local
394 sc = nsldapi_sasl_secprops((char *)optdata,
396 return (sc == LDAP_SUCCESS ? 0 : -1);
H A Dldaputf8.c141 unsigned long sc, bc; local
149 sc = LDAP_UTF8GETC(sp);
151 if (sc == bc)
155 if (sc == 0) { /* no non-delimiter characters */
165 sc = LDAP_UTF8GETC(sp);
168 if ((bc = LDAP_UTF8GETCC(bp)) == sc) {
169 if (sc == 0) {
/osnet-11/usr/src/lib/libcurses/screen/
H A Dwnoutref.c54 chtype **wcp, **scp, *wc, *sc; local
134 sc = *scp;
168 if (ISMBIT(sc[lo + xorg]))
170 if (ISMBIT(sc[hi + xorg]))
190 sc = *scp + lo + xorg;
191 (void) memcpy((char *) sc, (char *) wc, (size_t)
H A Dwrefresh.c372 chtype *wcp, *scp, *wp, *sp, wc, sc; local
595 sc = *scp;
597 if (!redraw && !multi_col && wc == sc)
602 curscr->_attrs = _ATTR(sc);
696 * sc = _COLOR(curscr->_y[wy][color_attrx]);
697 *_VIDS(sc, (~sc & A_COLOR));
1042 chtype sc; local
1057 sc = curscr->_y[cy][x];
1069 /* insert sc bac
[all...]
/osnet-11/usr/src/lib/libc/i386/fp/
H A D_X_cplx_div_ix.c100 long double c, d, sc, sd, r; local
158 sc = c * scl[ew + 4].e;
160 r = sc * sc + sd * sd;
175 sc = scl[3].e; /* 2^4080 */
178 sc = scl[5].e; /* 2^-4080 */
181 c *= sc;
H A D_X_cplx_div_rx.c100 long double c, d, sc, sd, r; local
158 sc = c * scl[ew + 4].e;
160 r = sc * sc + sd * sd;
175 sc = scl[3].e; /* 2^4080 */
178 sc = scl[5].e; /* 2^-4080 */
181 c *= sc;
/osnet-11/usr/src/lib/libc/sparc/fp/
H A D_D_cplx_div_ix.c102 double c, d, sc, sd, r; local
175 sc = c * scl[hw + 4].d;
177 r = sc * sc + sd * sd;
192 sc = scl[3].d; /* 2^250 */
195 sc = scl[5].d; /* 2^-250 */
198 c *= sc;
H A D_D_cplx_div_rx.c102 double c, d, sc, sd, r; local
175 sc = c * scl[hw + 4].d;
177 r = sc * sc + sd * sd;
192 sc = scl[3].d; /* 2^250 */
195 sc = scl[5].d; /* 2^-250 */
198 c *= sc;
H A D_Q_cplx_div_ix.c94 long double b, c, d, sc, sd, r; local
155 sc = c;
157 _Q_scl(&sc, -hw);
159 r = sc * sc + sd * sd;
H A D_Q_cplx_div_rx.c94 long double a, c, d, sc, sd, r; local
155 sc = c;
157 _Q_scl(&sc, -hw);
159 r = sc * sc + sd * sd;
/osnet-11/usr/src/lib/libtsnet/common/
H A Dtsol_sgettpent.c98 int sc; local
105 for (sc = 0; tokp != NULL && sc < NSLS_MAX; sc++) {
106 slp = &labels[sc];
112 if (tokp != NULL && sc >= NSLS_MAX)
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dpreauth.c380 char *handle_sam_labels(krb5_sam_challenge *sc) argument
382 char *label = sc->sam_challenge_label.data;
383 unsigned int label_len = sc->sam_challenge_label.length;
384 char *prompt = sc->sam_response_prompt.data;
385 unsigned int prompt_len = sc->sam_response_prompt.length;
386 char *challenge = sc->sam_challenge.data;
387 unsigned int challenge_len = sc->sam_challenge.length;
390 if (sc->sam_cksum.length == 0) {
392 switch (sc->sam_type) {
/osnet-11/usr/src/lib/libc/port/regex/
H A Dglob.c104 int sc = 0, rc = 0; local
126 rv = globit(0, pattern, gp, flags, errfn, &path, &sc, &rc);
/osnet-11/usr/src/lib/libntsvcs/common/
H A Dsrvsvc_clnt.c114 srvsvc_connect_info_t *sc; local
125 sc = &info->l_list.ul_connection;
126 free(sc->ci_share);
127 free(sc->ci_username);
128 bzero(sc, sizeof (srvsvc_connect_info_t));
469 srvsvc_connect_info_t *sc; local
522 sc = &info->l_list.ul_connection;
523 sc->ci_id = cib0[i].coni0_id;
539 sc = &info->l_list.ul_connection;
540 sc
[all...]
/osnet-11/usr/src/lib/fm/topo/libtopo/common/
H A Dsvc.c233 scf_scope_t *sc = NULL; local
248 if ((sc = scf_scope_create(hdl)) == NULL ||
255 if (scf_handle_get_scope(hdl, SCF_SCOPE_LOCAL, sc) != 0)
258 if (scf_iter_scope_services(svc_iter, sc) != 0)
307 scf_scope_destroy(sc);
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Dtwofish.c503 ctx->s[2][i] = mds[2][q1[(a) ^ sc] ^ sg]; \
515 ctx->s[2][i] = mds[2][q1[q0[q0[(a) ^ sc] ^ sg] ^ sk] ^ so]; \
581 byte sa = 0, sb = 0, sc = 0, sd = 0, se = 0, sf = 0, sg = 0, sh = 0;
610 CALC_S (sa, sb, sc, sd, 0, 0x00, 0x2D, 0x01, 0x2D); /* 01 A4 02 A4 */
611 CALC_S (sa, sb, sc, sd, 1, 0x2D, 0xA4, 0x44, 0x8A); /* A4 56 A1 55 */
612 CALC_S (sa, sb, sc, sd, 2, 0x8A, 0xD5, 0xBF, 0xD1); /* 55 82 FC 87 */
613 CALC_S (sa, sb, sc, sd, 3, 0xD1, 0x7F, 0x3D, 0x99); /* 87 F3 C1 5A */
614 CALC_S (sa, sb, sc, sd, 4, 0x99, 0x46, 0x66, 0x96); /* 5A 1E 47 58 */
615 CALC_S (sa, sb, sc, sd, 5, 0x96, 0x3C, 0x5B, 0xED); /* 58 C6 AE DB */
616 CALC_S (sa, sb, sc, s
576 byte sa = 0, sb = 0, sc = 0, sd = 0, se = 0, sf = 0, sg = 0, sh = 0; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/
H A Dtwofish.c502 ctx->s[2][i] = mds[2][q1[(a) ^ sc] ^ sg]; \
514 ctx->s[2][i] = mds[2][q1[q0[q0[(a) ^ sc] ^ sg] ^ sk] ^ so]; \
580 byte sa = 0, sb = 0, sc = 0, sd = 0, se = 0, sf = 0, sg = 0, sh = 0;
609 CALC_S (sa, sb, sc, sd, 0, 0x00, 0x2D, 0x01, 0x2D); /* 01 A4 02 A4 */
610 CALC_S (sa, sb, sc, sd, 1, 0x2D, 0xA4, 0x44, 0x8A); /* A4 56 A1 55 */
611 CALC_S (sa, sb, sc, sd, 2, 0x8A, 0xD5, 0xBF, 0xD1); /* 55 82 FC 87 */
612 CALC_S (sa, sb, sc, sd, 3, 0xD1, 0x7F, 0x3D, 0x99); /* 87 F3 C1 5A */
613 CALC_S (sa, sb, sc, sd, 4, 0x99, 0x46, 0x66, 0x96); /* 5A 1E 47 58 */
614 CALC_S (sa, sb, sc, sd, 5, 0x96, 0x3C, 0x5B, 0xED); /* 58 C6 AE DB */
615 CALC_S (sa, sb, sc, s
575 byte sa = 0, sb = 0, sc = 0, sd = 0, se = 0, sf = 0, sg = 0, sh = 0; local
[all...]
/osnet-11/usr/src/lib/libast/common/sfio/
H A Dsfvscanf.c72 #define SCinit(sc,ds) ((sc)->inp = (sc)->error = -1, (sc)->f = f, \
73 ((sc)->width = (ds) ? width : -1), \
74 (sc)->d = d, (sc)->endd = endd, (sc)->data = data, \
75 (sc)->peek = peek, (sc)
89 Scan_t *sc = (Scan_t*)arg; local
236 _sfgetwc(Scan_t* sc, wchar_t* wc, int fmt, Accept_t* ac, Void_t *mbs) argument
[all...]
/osnet-11/usr/src/lib/libsmbfs/common/
H A Dsmbfs_ctx.c429 char sc, *p, *s1, *s2; local
441 sc = *p; /* Save the sep. char */
454 if (sc == '@') {
/osnet-11/usr/src/lib/fm/libfmnotify/common/
H A Dlibfmnotify.c143 scf_scope_t *sc = NULL; local
147 sc = scf_scope_create(handle);
151 if (sc == NULL || svc == NULL || pg == NULL) {
158 scf_handle_get_scope(handle, SCF_SCOPE_LOCAL, sc) != -1 &&
159 scf_scope_get_service(sc, svcname, svc) != -1 &&
167 scf_scope_destroy(sc);

Completed in 80 milliseconds

12