Searched refs:froms (Results 1 - 13 of 13) sorted by relevance

/freebsd-10-stable/contrib/gcc/config/i386/
H A Dgmon-sol2.c102 * froms is actually a bunch of unsigned shorts indexing tos
105 static unsigned short *froms; variable
146 froms = (unsigned short *) sbrk( s_textsize / HASHFRACTION );
147 if ( froms == (unsigned short *) -1 ) {
149 froms = 0;
161 froms = 0;
219 endfrom = s_textsize / (HASHFRACTION * sizeof(*froms));
221 if ( froms[fromindex] == 0 ) {
224 frompc = s_lowpc + (fromindex * HASHFRACTION * sizeof(*froms));
225 for (toindex=froms[frominde
[all...]
/freebsd-10-stable/contrib/gcc/config/sparc/
H A Dgmon-sol2.c73 * froms is actually a bunch of unsigned shorts indexing tos
76 static unsigned short *froms; variable
118 froms = (unsigned short *) sbrk( s_textsize / HASHFRACTION );
119 if ( froms == (unsigned short *) -1 ) {
121 froms = 0;
133 froms = 0;
214 endfrom = s_textsize / (HASHFRACTION * sizeof(*froms));
216 if ( froms[fromindex] == 0 ) {
219 frompc = s_lowpc + (fromindex * HASHFRACTION * sizeof(*froms));
220 for (toindex=froms[frominde
[all...]
/freebsd-10-stable/lib/libc/gmon/
H A Dgmon.c110 p->froms = (u_short *)cp;
190 endfrom = p->fromssize / sizeof(*p->froms);
192 if (p->froms[fromindex] == 0)
196 frompc += fromindex * p->hashfraction * sizeof(*p->froms);
197 for (toindex = p->froms[fromindex]; toindex != 0;
H A Dmcount.c186 frompcindex = &p->froms[frompci / (p->hashfraction * sizeof(*p->froms))];
/freebsd-10-stable/crypto/heimdal/appl/login/
H A Dlogin_access.c64 char *froms; /* becomes list of terminals or hosts */ local
102 || !(froms = strtok_r(NULL, fs, &foo))
115 match = (list_match(froms, &item, from_match)
/freebsd-10-stable/crypto/heimdal/appl/rsh/
H A Dlogin_access.c64 char *froms; /* becomes list of terminals or hosts */ local
102 || !(froms = strtok_r(NULL, fs, &foo))
115 match = (list_match(froms, &item, from_match)
/freebsd-10-stable/lib/libpam/modules/pam_login_access/
H A Dlogin_access.c60 char *froms; /* becomes list of terminals or hosts */ local
90 || !(froms = strtok((char *) 0, fs))
101 match = (list_match(froms, from, from_match)
/freebsd-10-stable/usr.sbin/kgmon/
H A Dkgmon.c350 u_short *froms, *tickbuf; local
402 if ((froms = (u_short *)malloc(kvp->gpm.fromssize)) == NULL)
403 errx(8, "cannot allocate froms space");
405 i = kvm_read(kvp->kd, (u_long)kvp->gpm.froms, (void *)froms,
410 if (sysctl(mib, 3, froms, &i, NULL, 0) < 0)
414 errx(9, "read froms: read %lu, got %ld: %s",
435 endfrom = kvp->gpm.fromssize / sizeof(*froms);
437 if (froms[fromindex] == 0)
440 (fromindex * kvp->gpm.hashfraction * sizeof(*froms));
[all...]
/freebsd-10-stable/sys/libkern/
H A Dmcount.c154 frompcindex = &p->froms[frompci / (p->hashfraction * sizeof(*p->froms))];
/freebsd-10-stable/sys/sys/
H A Dgmon.h125 * `*froms' and stored and incremented without overflow in links.
159 u_short *froms; member in struct:gmonparam
/freebsd-10-stable/sys/kern/
H A Dsubr_prof.c118 np.froms = (u_short *)cp;
131 bcopy(p->froms, np.froms, p->fromssize);
132 bzero((char *)np.froms + p->fromssize, np.fromssize - p->fromssize);
180 p->froms = (u_short *)cp;
376 gp->froms, gp->fromssize, req));
/freebsd-10-stable/contrib/byacc/
H A Doutput.c16 static Value_t **froms; variable
499 froms[i] = r = NEW2(shiftcount, Value_t);
519 froms[nstates + i] = r = NEW2(reducecount, Value_t);
540 froms[2 * nstates + i] = r = NEW2(conflictcount, Value_t);
625 froms[symno] = sp1 = sp = NEW2(count, Value_t);
755 if (tos[j][k] != tos[i][k] || froms[j][k] != froms[i][k])
781 from = froms[i];
884 if (froms[i])
885 FREE(froms[
[all...]
/freebsd-10-stable/usr.sbin/timed/timed/
H A Dreadmsg.c45 #define LOOKAT(msg, mtype, mfrom, netp, froms) \
49 ((netp)->mask & (froms).sin_addr.s_addr) == (netp)->net.s_addr))

Completed in 233 milliseconds