Searched refs:acc (Results 1 - 16 of 16) sorted by relevance

/osnet-11/usr/src/lib/libresolv2/common/irs/
H A Ddns.c60 struct irs_acc *acc; local
65 if (!(acc = memget(sizeof *acc))) {
69 memset(acc, 0x5e, sizeof *acc);
72 memput(acc, sizeof *acc);
86 acc->private = dns;
88 acc->gr_map = irs_dns_gr;
90 acc
[all...]
H A Dlcl.c55 struct irs_acc *acc; local
60 if (!(acc = memget(sizeof *acc))) {
64 memset(acc, 0x5e, sizeof *acc);
67 free(acc);
73 acc->private = lcl;
75 acc->gr_map = irs_lcl_gr;
77 acc->gr_map = NULL;
80 acc
[all...]
H A Dnis.c66 struct irs_acc *acc; local
78 if (!(acc = memget(sizeof *acc))) {
83 memset(acc, 0x5e, sizeof *acc);
84 acc->private = nis;
87 acc->gr_map = irs_nis_gr;
89 acc->gr_map = NULL;
92 acc->pw_map = irs_nis_pw;
94 acc
[all...]
H A Dgen.c135 struct irs_acc *acc; local
138 if (!(acc = memget(sizeof *acc))) {
142 memset(acc, 0x5e, sizeof *acc);
145 memput(acc, sizeof *acc);
155 acc->private = irs;
157 gen_close(acc);
162 acc
304 add_rule(struct gen_p *irs, enum irs_map_id map, enum irs_acc_id acc, const char *options) argument
520 enum irs_acc_id acc; local
[all...]
H A Dirp.c84 struct irs_acc *acc; local
89 if (!(acc = memget(sizeof *acc))) {
93 memset(acc, 0x5e, sizeof *acc);
96 free(acc);
102 acc->private = irp;
105 acc->gr_map = irs_irp_gr;
107 acc->gr_map = NULL;
110 acc
[all...]
H A Dgen_p.h69 struct irs_acc *acc; member in struct:irs_inst
87 #define IRS_MERGE 0x0001 /*%< Don't stop if acc. has data? */
88 #define IRS_CONTINUE 0x0002 /*%< Don't stop if acc. has no data? */
/osnet-11/usr/src/lib/libresolv2/common/bsd/
H A Dstrtoul.c64 u_long acc, cutoff; local
90 for (acc = 0, any = 0;; c = *(const unsigned char*)s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
103 acc *= base;
104 acc += c;
108 acc = ULONG_MAX;
111 acc = -acc;
114 return (acc);
[all...]
/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dstrto.c53 register LONGLONG_T acc, cutoff; local
120 for (acc = 0, any = 0;; c = (unsigned char) *s++)
134 if (acc < cutoff || (acc == cutoff && c > cutlim))
137 acc = LLONG_MIN;
143 acc *= base;
144 acc -= c;
149 if (acc > cutoff || (acc == cutoff && c > cutlim))
152 acc
193 register ULONGLONG_T acc, cutoff; local
[all...]
/osnet-11/usr/src/lib/libc/port/fp/
H A D__x_power.c162 unsigned int acc, p; local
166 acc = 0;
169 p = px[i] * py[n - 1 - i] + acc;
170 if (p < acc)
172 acc = p;
174 product[0] = acc & 0xffff;
175 product[1] = acc >> 16;
195 unsigned int acc; local
199 acc = 0;
202 acc
[all...]
H A Ddecimal_bin.c289 int i, acc; local
293 acc = s[0] - '0';
295 /* acc <- 10 * acc + next digit */
296 acc = (acc << 1) + (acc << 3) + s[i] - '0';
298 t = (double)acc;
301 acc = s[0] - '0';
303 /* acc <
[all...]
/osnet-11/usr/src/lib/rad/pyrad/common/
H A Drecordmarking.py63 acc = 0 variable in class:RecordMarkingSocket
65 acc = acc * 0x100 + ord(data[i])
66 self._atlast = (acc & 0x80000000) != 0
67 self._remaining = acc & 0x7fffffff
/osnet-11/usr/src/lib/libresolv2/common/isc/
H A Dev_connects.c159 evAccept *acc, *nxtacc; local
190 for (acc = HEAD(ctx->accepts), nxtacc = NULL;
191 acc != NULL;
192 acc = nxtacc)
194 nxtacc = NEXT(acc, link);
195 if (acc->conn == this) {
196 UNLINK(ctx->accepts, acc, link);
197 close(acc->fd);
198 FREE(acc);
/osnet-11/usr/src/lib/libast/common/sfio/
H A Dsfvscanf.c315 Accept_t acc; local
397 { acc.wc = wc;
399 v = SFgetwc(&scd, &wc, '1', &acc, &mbs);
987 if(fmt == '[' && !(form = _sfsetclass(form,&acc,flags)) )
997 { if(SFgetwc(&scd,&wc,fmt,&acc,&mbs) == 0)
1023 { if(!acc.ok[inp])
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/
H A DCalc.pm1929 my $acc = _copy($c,$num); my $t = _one();
1937 _mul($c,$t,$acc);
1940 _mul($c,$acc,$acc);
1941 $acc = _mod($c,$acc,$mod);
/osnet-11/usr/src/cmd/sendmail/src/
H A Dconf.c4079 register unsigned long acc; local
4126 for (acc = 0, any = 0;; c = *s++) {
4135 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
4139 acc *= base;
4140 acc += c;
4144 acc = neg ? LONG_MIN : LONG_MAX;
4147 acc = -acc;
4150 return acc;
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DC.pm1219 my $acc = '';
1221 $acc .= "\t*svp++ = (SV*)" . $array[$i]->save . ";\n\t";
1223 $acc .= "\n";
1231 $init->add($acc);

Completed in 67 milliseconds