Searched refs:inf (Results 1 - 25 of 51) sorted by relevance

123

/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioLib.cc43 AudioFile* inf; local
48 inf = new AudioFile(path, (FileAccess)ReadOnly);
49 if (inf == 0)
51 err = inf->Open();
53 delete inf;
60 delete inf;
63 lp->Insert(inf);
/illumos-gate/usr/src/lib/libm/amd64/src/
H A Dpowl.s38 / +-(|x| > 1) ** +inf is +inf
39 / +-(|x| > 1) ** -inf is +0
40 / +-(|x| < 1) ** +inf is +0
41 / +-(|x| < 1) ** -inf is +inf
42 / (-1) ** +-inf is +1 (C99)
45 / +0 ** -y (except 0, NaN) is +inf (z flag)
46 / -0 ** -y (except 0, NaN, odd int) is +inf (z flag)
48 / +inf **
[all...]
/illumos-gate/usr/src/cmd/rpcbind/
H A Drpcb_stat.c48 static rpcb_stat_byvers inf; variable
69 atomic_add_int((uint_t *)&inf[rtype].info[proc], 1);
80 atomic_add_int((uint_t *)&inf[rtype].setinfo, 1);
91 atomic_add_int((uint_t *)&inf[rtype].unsetinfo, 1);
109 for (s = al = inf[rtype].addrinfo; al; al = al->next) {
150 for (wal = inf[rtype].addrinfo; wal != s; wal = wal->next) {
166 al->next = inf[rtype].addrinfo;
167 inf[rtype].addrinfo = al;
189 for (s = rl = inf[rtype].rmtinfo; rl; rl = rl->next) {
234 for (wrl = inf[rtyp
[all...]
/illumos-gate/usr/src/lib/libc/i386/fp/
H A D_D_cplx_mul.c60 } inf = { variable in typeref:union:__anon2857
132 x = inf.f * ((long double)a * c - (long double)b * d);
133 y = inf.f * ((long double)a * d + (long double)b * c);
H A D_F_cplx_mul.c60 } inf = { variable in typeref:union:__anon2866
127 x = inf.f * ((long double)a * c - (long double)b * d);
128 y = inf.f * ((long double)a * d + (long double)b * c);
H A D_X_cplx_mul.c62 } inf = { variable in typeref:union:__anon2877
130 x = inf.f * (a * c - b * d);
131 y = inf.f * (a * d + b * c);
H A D_D_cplx_div.c64 } inf = { variable in typeref:union:__anon2850
148 r = inf.f;
H A D_F_cplx_div.c64 } inf = { variable in typeref:union:__anon2859
141 r = inf.f;
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A D_D_cplx_mul.c62 } inf = { variable in typeref:union:__anon3054
129 x = inf.d * (a * c - b * d);
130 y = inf.d * (a * d + b * c);
H A D_F_cplx_mul.c60 } inf = { variable in typeref:union:__anon3063
127 x = inf.d * ((double)a * c - (double)b * d);
128 y = inf.d * ((double)a * d + (double)b * c);
H A D_Q_cplx_mul.c65 } inf = { variable in typeref:union:__anon3072
139 x = inf.q * (a * c - b * d);
140 y = inf.q * (a * d + b * c);
H A D_F_cplx_div.c64 } inf = { variable in typeref:union:__anon3056
141 r = inf.d;
/illumos-gate/usr/src/lib/libm/i386/src/
H A Dpowf.s41 / +-(|x| > 1) ** +inf is +inf
42 / +-(|x| > 1) ** -inf is +0
43 / +-(|x| < 1) ** +inf is +0
44 / +-(|x| < 1) ** -inf is +inf
45 / (-1) ** +-inf is +1 (C99)
48 / +0 ** -y (except 0, NaN) is +inf (z flag)
49 / -0 ** -y (except 0, NaN, odd int) is +inf (z flag)
51 / +inf **
[all...]
H A Dpowl.s38 / +-(|x| > 1) ** +inf is +inf
39 / +-(|x| > 1) ** -inf is +0
40 / +-(|x| < 1) ** +inf is +0
41 / +-(|x| < 1) ** -inf is +inf
42 / (-1) ** +-inf is +1 (C99)
45 / +0 ** -y (except 0, NaN) is +inf (z flag)
46 / -0 ** -y (except 0, NaN, odd int) is +inf (z flag)
48 / +inf **
[all...]
H A Dpow.s41 / +-(|x| > 1) ** +inf is +inf
42 / +-(|x| > 1) ** -inf is +0
43 / +-(|x| < 1) ** +inf is +0
44 / +-(|x| < 1) ** -inf is +inf
45 / (-1) ** +-inf is +1 (C99)
50 / +inf ** +y (except 0, NaN) is +inf
51 / +inf **
[all...]
H A Dhypot.s37 inf: label
63 flds PIC_L(inf) / inf , sqrt(x*x+y*y)
/illumos-gate/usr/src/boot/lib/libz/test/
H A Dinfcover.c284 local void inf(char *hex, char *what, unsigned step, int win, unsigned len, function
367 inf("63 0", "force window allocation", 0, -15, 1, Z_OK);
368 inf("63 18 5", "force window replacement", 0, -8, 259, Z_OK);
369 inf("63 18 68 30 d0 0 0", "force split window update", 4, -8, 259, Z_OK);
370 inf("3 0", "use fixed blocks", 0, -15, 1, Z_STREAM_END);
371 inf("", "bad window size", 0, 1, 0, Z_STREAM_ERROR);
399 inf("1f 8b 0 0", "bad gzip method", 0, 31, 0, Z_DATA_ERROR);
400 inf("1f 8b 8 80", "bad gzip flags", 0, 31, 0, Z_DATA_ERROR);
401 inf("77 85", "bad zlib method", 0, 15, 0, Z_DATA_ERROR);
402 inf("
[all...]
/illumos-gate/usr/src/cmd/vi/misc/
H A Dctags.c141 *inf, /* ioptr for current input file */ variable
144 static long lineftell; /* ftell after getc( inf ) == '\n' */
342 if ((inf = fopen(file, "r")) == NULL) {
362 L_funcs(inf);
363 (void) fclose(inf);
374 (void) fclose(inf);
383 (void) fclose(inf);
396 if (PF_funcs(inf) != 0) {
397 (void) fclose(inf);
400 rewind(inf); /* n
[all...]
/illumos-gate/usr/src/cmd/refer/
H A Dinv2.c24 newkeys(FILE *outf, FILE *inf, FILE *recf, int nhash, FILE *fd, int *iflong) argument
27 * reads key lines from inf; hashes and writes on outf;
42 while (fgets(line, LINESIZ, inf)) {
81 while ((c = getc(inf)) != '\n') {
/illumos-gate/usr/src/cmd/tcopy/
H A Dtcopy.c59 char *inf, *outf; variable
77 inf = argv[1];
82 if ((inp = open(inf, O_RDONLY, 0666)) < 0) {
83 (void) fprintf(stderr, "Can't open %s\n", inf);
/illumos-gate/usr/src/lib/libmalloc/common/
H A Dmalloc.c464 /* check that a very large request won't cause an inf. loop */
970 struct mallinfo inf; /* return value */ local
976 (void) memset(&inf, 0, sizeof (struct mallinfo));
979 return (inf);
983 inf.arena = (char *)arenaend - (char *)blk;
991 inf.ordblks++;
994 inf.uordblks += size;
995 inf.keepcost += HEADSZ-MINHEAD;
997 inf.fordblks += size;
1015 inf
[all...]
/illumos-gate/usr/src/cmd/rpcinfo/
H A Drpcinfo.c1057 rpcb_stat_byvers inf; local
1105 (void) memset((char *)&inf, 0, sizeof (rpcb_stat_byvers));
1107 (xdrproc_t)xdr_rpcb_stat_byvers, (char *)&inf, minutetimeout)
1119 inf[RPCBVERS_2_STAT].setinfo);
1123 inf[RPCBVERS_2_STAT].unsetinfo);
1127 for (pa = inf[RPCBVERS_2_STAT].addrinfo; pa;
1134 for (pr = inf[RPCBVERS_2_STAT].rmtinfo; pr;
1142 (void) sprintf(cp, "%d", inf[RPCBVERS_2_STAT].info[i]);
1154 if (inf[RPCBVERS_2_STAT].info[PMAPPROC_CALLIT]) {
1156 print_rmtcallstat(RPCBVERS_2_STAT, &inf[RPCBVERS_2_STA
[all...]
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A D_Qfpack.c40 int inf; local
44 inf = 1;
47 inf = 0;
50 inf = !sign;
53 inf = sign;
56 return (inf);
H A Dpack_float.c80 int inf; local
84 inf = 1;
87 inf = 0;
90 inf = !sign;
93 inf = sign;
96 return (inf);
/illumos-gate/usr/src/uts/sparc/fpu/
H A Dpack.c42 int inf; local
46 inf = 1;
49 inf = 0;
52 inf = !sign;
55 inf = sign;
58 return (inf);

Completed in 168 milliseconds

123