Searched refs:nc (Results 1 - 25 of 82) sorted by relevance

1234

/freebsd-10.0-release/usr.sbin/lpr/lptest/
H A Dlptest.c57 register int i, j, fc, nc; local
73 nc = fc;
75 if (putchar(nc) == EOF)
77 if (++nc == 0177)
78 nc = ' ';
/freebsd-10.0-release/tools/diag/dumpvfscache/
H A Ddumpvfscache.c73 struct namecache *nc; local
85 nc = malloc(sizeof *nc + NAME_MAX);
98 kvm_read(kvm, p, nc, sizeof *nc + NAME_MAX);
99 kvm_read(kvm, (u_long)nc->nc_dvp, &vn, sizeof vn);
100 nc->nc_name[nc->nc_nlen] = '\0';
101 for (j=k=kn=0;nc->nc_name[j];j++) {
102 k+= nc
[all...]
/freebsd-10.0-release/usr.bin/nc/
H A DMakefile5 PROG= nc
/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-raid.h133 uint64_t nc : 1; /**< When set, indicates that RAD should not allocate L2 cache space for the P/Q data on member in struct:__anon7084::__anon7086
150 uint64_t nc : 1; /**< When set, indicates that RAD should not allocate L2 cache space for this input buffer member in struct:__anon7084::__anon7087
/freebsd-10.0-release/lib/libc/stdlib/
H A Dradixsort.c140 static int count[256], nc, bmin; local
159 if (nc == 0) {
166 nc++;
169 if (sp + nc > s + SIZE) { /* Get more stack. */
180 if (nc == 1 && count[bmin] == n) {
182 nc = count[bmin] = 0;
201 for (cp = count + bmin; nc > 0; cp++) {
212 nc--;
242 static int count[256], nc, bmin; local
258 if (nc
[all...]
/freebsd-10.0-release/lib/libypclnt/
H A Dypclnt_passwd.c67 struct netconfig *nc = NULL; local
85 while ((nc = getnetconfig(localhandle)) != NULL) {
86 if (nc->nc_protofmly != NULL &&
87 strcmp(nc->nc_protofmly, NC_LOOPBACK) == 0)
90 if (nc == NULL) {
97 MASTER_YPPASSWDVERS, nc)) == NULL) {
141 struct netconfig *nc = NULL; local
168 while ((nc = getnetconfig(localhandle)) != NULL) {
169 if (nc->nc_protofmly != NULL &&
170 strcmp(nc
[all...]
/freebsd-10.0-release/crypto/openssh/regress/
H A Ddynamic-forward.sh8 if have_prog nc && nc -h 2>&1 | grep "proxy address" >/dev/null; then
9 proxycmd="nc -x 127.0.0.1:$FWDPORT -X"
/freebsd-10.0-release/usr.sbin/services_mkdb/
H A Dservices_mkdb.c402 size_t nc, i, pos; local
406 nc = strlcpy(buf + pos, sl->sl_str[i], len);
407 if (nc >= len)
409 pos += nc;
410 len -= nc;
411 nc = strlcpy(buf + pos, " ", len);
412 if (nc >= len)
414 pos += nc;
415 len -= nc;
/freebsd-10.0-release/contrib/libc++/src/
H A Ddebug.cpp145 size_t nc = __next_prime(2*static_cast<size_t>(__cend_ - __cbeg_) + 1); local
146 __c_node** cbeg = static_cast<__c_node**>(calloc(nc, sizeof(void*)));
158 size_t h = hash<void*>()(q->__c_) % nc;
167 __cend_ = __cbeg_ + nc;
408 size_t nc = 2*static_cast<size_t>(cap_ - beg_); local
409 if (nc == 0)
410 nc = 1;
412 static_cast<__i_node**>(malloc(nc * sizeof(__i_node*)));
419 if (nc > 1)
420 memcpy(beg, beg_, nc/
437 size_t nc = __next_prime(2*static_cast<size_t>(__iend_ - __ibeg_) + 1); local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/x509v3/
H A Dv3_ncons.c75 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc);
239 int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc)
252 r = nc_match(&gntmp, nc);
275 r = nc_match(&gntmp, nc);
286 r = nc_match(gen, nc);
295 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc)
304 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->permittedSubtrees); i++)
306 sub = sk_GENERAL_SUBTREE_value(nc->permittedSubtrees, i);
328 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->excludedSubtrees); i++)
330 sub = sk_GENERAL_SUBTREE_value(nc
[all...]
/freebsd-10.0-release/usr.bin/tip/libacu/
H A Dcourier.c200 int nc, nl, n; local
209 nc = 0; nl = sizeof(dialer_buf)-1;
212 for (nc = 0, nl = sizeof(dialer_buf)-1 ; nl > 0 ; nc++, nl--) {
254 dialer_buf[nc] = c;
H A Dt3000.c215 int nc, nl, n; local
224 nc = 0; nl = sizeof(dialer_buf)-1;
227 for (nc = 0, nl = sizeof(dialer_buf)-1 ; nl > 0 ; nc++, nl--) {
269 dialer_buf[nc] = c;
/freebsd-10.0-release/contrib/atf/atf-c++/
H A Dutils.hpp187 noncopyable(const noncopyable& nc);
188 noncopyable& operator=(const noncopyable& nc);
/freebsd-10.0-release/tools/bsdbox/
H A DMakefile.base10 CRUNCH_PROGS_usr.bin+= true false hexdump tail nc w head uname tset
/freebsd-10.0-release/contrib/gdb/gdb/mi/
H A Dmi-cmd-var.c487 int nc; local
489 nc = varobj_update (&var, &changelist);
491 /* nc == 0 means that nothing has changed.
492 nc == -1 means that an error occured in updating the variable.
493 nc == -2 means the variable has changed type. */
495 if (nc == 0)
497 else if (nc == -1)
507 else if (nc == -2)
/freebsd-10.0-release/crypto/openssl/crypto/bn/asm/
H A Dppc64-mont.pl149 $na="f4"; $nb="f5"; $nc="f6"; $nd="f7";
323 lfd $nc,`$FRAME+48`($sp)
339 fcfid $nc,$nc
396 fmadd $T1a,$N0,$nc,$T1a
398 fmadd $T2a,$N1,$nc,$T2a
400 fmadd $T3a,$N2,$nc,$T3a
402 fmadd $dota,$N3,$nc,$dota
528 fmadd $T1a,$N0,$nc,$T1a
531 fmadd $T2a,$N1,$nc,
[all...]
H A Dsparcv9a-mont.pl110 $na="%f8"; $nb="%f10"; $nc="%f12"; $nd="%f14";
218 ldda [%sp+$bias+$frame+2]%asi,$nc
228 fxtod $nc,$nc
238 fmuld $nlo,$nc,$nloc
250 fmuld $nhi,$nc,$nhic
304 fmuld $nlo,$nc,$nloc
333 fmuld $nhi,$nc,$nhic
392 fmuld $nlo,$nc,$nloc
417 fmuld $nhi,$nc,
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dexpand_path.c97 DWORD nc; local
99 nc = GetModuleFileName(_krb5_hInstance, path, sizeof(path)/sizeof(path[0]));
100 if (nc == 0 ||
101 nc == sizeof(path)/sizeof(path[0])) {
/freebsd-10.0-release/crypto/heimdal/lib/hx509/
H A Dcert.c641 NameConstraints *nc)
647 memset(nc, 0, sizeof(*nc));
655 nc, &size);
1654 init_name_constraints(hx509_name_constraints *nc) argument
1656 memset(nc, 0, sizeof(*nc));
1662 hx509_name_constraints *nc)
1679 val = realloc(nc->val, sizeof(nc
640 find_extension_name_constraints(const Certificate *subject, NameConstraints *nc) argument
1661 add_name_constraints(hx509_context context, const Certificate *c, int not_ca, hx509_name_constraints *nc) argument
1902 check_name_constraints(hx509_context context, const hx509_name_constraints *nc, const Certificate *c) argument
1948 free_name_constraints(hx509_name_constraints *nc) argument
1978 hx509_name_constraints nc; local
[all...]
/freebsd-10.0-release/usr.bin/m4/
H A Deval.c869 int nc; local
877 nc = strlen(fc);
880 nc = min(nc, expr(argv[4]));
882 nc = min(nc, atoi(argv[4]));
885 for (k = fc + nc - 1; k >= fc; k--)
/freebsd-10.0-release/crypto/openssh/
H A Dmux.c305 Channel *nc; local
448 nc = channel_new("session", SSH_CHANNEL_OPENING,
452 nc->ctl_chan = c->self; /* link session -> control channel */
453 c->remote_id = nc->self; /* link control -> session channel */
456 channel_register_filter(nc->self,
463 __func__, nc->self, nc->ctl_chan);
465 channel_send_open(nc->self);
466 channel_register_open_confirm(nc->self, mux_session_confirm, cctx);
468 channel_register_cleanup(nc
882 Channel *nc; local
[all...]
/freebsd-10.0-release/sys/geom/virstor/
H A Dg_virstor.c319 u_int nc; local
391 nc = sc->n_components;
392 sc->components[nc].gcons = cp;
393 sc->components[nc].sc = sc;
394 sc->components[nc].index = nc;
395 sc->components[nc].chunk_count = cp->provider->mediasize /
397 sc->components[nc].chunk_next = 0;
398 sc->components[nc].chunk_reserved = 0;
400 if (sc->components[nc]
502 fill_metadata(struct g_virstor_softc *sc, struct g_virstor_metadata *md, u_int nc, u_int hardcode) argument
1374 unsigned int nc, i; local
[all...]
/freebsd-10.0-release/contrib/ncurses/ncurses/base/
H A DMKlib_gen.sh115 /^P_/b nc
116 /(void)/b nc
136 :nc
/freebsd-10.0-release/usr.sbin/lpr/lpr/
H A Dlpr.c539 register int fd, i, nr, nc; local
549 nr = nc = 0;
555 nc += i;
556 if (nc >= BUFSIZ) {
557 nc -= BUFSIZ;
567 if (nc==0 && nr==0)
/freebsd-10.0-release/contrib/groff/src/preproc/tbl/
H A Dtable.h143 table(int nc, unsigned flags, int linesize, char decimal_point_char);

Completed in 337 milliseconds

1234