Searched refs:ln (Results 1 - 25 of 568) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/i386/
H A Dvectorize1.c14 int ln; local
15 for (ln = 0; ln < 8; ln++)
16 tt1.t[ln] = lanip[1];
/netbsd-6-1-5-RELEASE/bin/ln/
H A DMakefile4 PROG= ln
5 MAN= ln.1
/netbsd-6-1-5-RELEASE/games/backgammon/common_source/
H A Dboard.c44 static char ln[60]; variable
66 strcpy(ln, bl);
69 ln[j + 1] = k % 10 + '0';
70 ln[j] = k / 10 + '0';
74 writel(ln);
76 strcpy(ln, sv);
84 ln[26] = 'w';
86 ln[25] = 'w';
88 ln[27] = 'w';
91 ln[5
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/make/lst.lib/
H A DlstDatum.c69 Lst_Datum(LstNode ln) argument
71 if (ln != NULL) {
72 return ((ln)->datum);
H A DlstDestroy.c73 ListNode ln; local
88 for (ln = list->firstPtr; ln != NULL; ln = tln) {
89 tln = ln->nextPtr;
90 freeProc(ln->datum);
91 free(ln);
94 for (ln = list->firstPtr; ln != NULL; ln
[all...]
H A DlstPrev.c71 Lst_Prev(LstNode ln) argument
73 if (ln == NULL) {
76 return (ln->prevPtr);
H A DlstReplace.c69 Lst_Replace(LstNode ln, void *d) argument
71 if (ln == NULL) {
74 (ln)->datum = d;
H A DlstSucc.c71 Lst_Succ(LstNode ln) argument
73 if (ln == NULL) {
76 return (ln->nextPtr);
H A DlstDupl.c77 ListNode ln; local
89 ln = list->firstPtr;
90 while (ln != NULL) {
92 if (Lst_AtEnd(nl, copyProc(ln->datum)) == FAILURE) {
95 } else if (Lst_AtEnd(nl, ln->datum) == FAILURE) {
99 if (list->isCirc && ln == list->lastPtr) {
100 ln = NULL;
102 ln = ln->nextPtr;
H A DlstFindFrom.c71 Lst_FindFrom(Lst l, LstNode ln, const void *d, argument
76 if (!LstValid (l) || LstIsEmpty (l) || !LstNodeValid (ln, l)) {
80 tln = ln;
86 } while (tln != ln && tln != NULL);
/netbsd-6-1-5-RELEASE/distrib/amiga/floppies/inst-common/
H A Dinstbin.conf9 progs gzip ifconfig init less ln ls mkdir mknod mount mount_cd9660
14 ln chown chgrp
15 ln fsck_ffs fsck
16 ln gawk awk
17 ln gzip gzcat gunzip
18 ln less more
19 ln mount_ados ados
20 ln mount_cd9660 cd9660
21 ln mount_ffs ffs
22 ln mount_nf
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/crunch/examples/
H A Dfreebsd-kcopy.conf7 ln test [
11 ln sh -
12 ln sh -sh
H A Dfreebsd-filesystem.conf7 ln test [
11 ln sh -
12 ln sh -sh
19 ln gzip gunzip
20 ln gzip gzcat
21 ln gzip zcat
H A Dfixit.conf13 # `ln' directive.
17 progs cat chmod cp date dd df echo ed expr hostname kill ln ls mkdir
20 ln test [
21 ln sh -sh # init invokes the shell this way
22 ln sh -
28 ln dump rdump
29 ln restore rrestore
38 ln gzip gunzip
39 ln gzip gzcat
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/util/
H A Dpoint.sh7 ln -s "$1" "$2"
/netbsd-6-1-5-RELEASE/gnu/dist/groff/src/libs/libgroff/
H A Dchange_lf.cpp36 void change_lineno(int ln) argument
38 current_lineno = ln;
H A Dlf.cpp38 int ln = 0; local
40 ln *= 10;
41 ln += *p++ - '0';
48 change_lineno(ln);
63 change_lineno(ln);
/netbsd-6-1-5-RELEASE/external/bsd/mdocml/dist/
H A Dchars.c33 struct ln { struct
34 struct ln *next;
45 #define CHAR_TBL_START static struct ln lines[LINES_MAX] = {
51 struct ln **htab;
54 static const struct ln *find(const struct mchars *,
69 struct ln **htab;
70 struct ln *pp;
80 htab = mandoc_calloc(PRINT_HI - PRINT_LO + 1, sizeof(struct ln **));
102 const struct ln *ln; local
136 const struct ln *ln; local
[all...]
/netbsd-6-1-5-RELEASE/distrib/vax/inst-common/
H A Dinstbin.conf10 progs gzip ifconfig init ln ls mkdir mknod more mount mt dd
14 ln chown chgrp
15 ln gzip gzcat gunzip
16 ln mount_ffs ffs
17 ln mount_nfs nfs
18 ln gawk awk
19 ln sh -sh # init invokes the shell this way
20 ln test [
21 ln reboot halt
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Dasn_moid.c115 char *ln, *ostr, *p, *lntmp; local
119 ln = name;
124 ln = NULL;
131 nid = OBJ_create(ostr, name, ln);
138 ln = value;
139 while(isspace((unsigned char)*ln)) ln++;
143 if (p == ln)
148 lntmp = OPENSSL_malloc((p - ln) + 1);
151 memcpy(lntmp, ln,
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/servers/slapd/back-ndb/
H A Dconfig.cpp136 ListNode *ln, **l2; local
146 for ( ln = ni->ni_attrlens; ln; ln=ln->ln_next ) {
147 ai = (NdbAttrInfo *)ln->ln_data;
161 for ( ln = ni->ni_attrsets; ln; ln=ln
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/objects/
H A Dobj_lib.c69 char *ln=NULL,*sn=NULL; local
92 r->ln=r->sn=NULL;
93 if (o->ln != NULL)
95 i=strlen(o->ln)+1;
96 ln=OPENSSL_malloc(i);
97 if (ln == NULL) goto err;
98 memcpy(ln,o->ln,i);
99 r->ln=ln;
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/amd/
H A Damfs_linkx.c92 char *ln; local
95 ln = mp->am_link;
97 ln = mf->mf_mount;
104 if (lstat(ln, &stb) < 0)
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/lib/
H A Ddoboth7 ln -s $x tmp.0
11 ln -s $y tmp.0
/netbsd-6-1-5-RELEASE/usr.bin/xlint/llib/
H A DMakefile5 LIBS= llib-lposix.ln llib-lstdc.ln
16 llib-lposix.ln: llib-lposix
20 llib-lstdc.ln: llib-lstdc

Completed in 243 milliseconds

1234567891011>>