Searched refs:result (Results 1 - 25 of 843) sorted by relevance

1234567891011>>

/src/sys/arch/hppa/spmath/
H A Dsetovfl.c54 sgl_floating_point result; local in function:sgl_setoverflow
56 /* set result to infinity or largest number */
61 Sgl_setlargestnegative(result);
63 Sgl_setinfinitypositive(result);
68 Sgl_setlargestpositive(result);
70 Sgl_setinfinitynegative(result);
74 Sgl_setinfinity(result,sign);
78 Sgl_setlargest(result,sign);
82 Sgl_setinfinity(result,sign);
83 return(result);
88 dbl_floating_point result; local in function:dbl_setoverflow
[all...]
H A Dmpyscv.c50 mpyscv(int opnd1, int opnd2, struct mdsfu_register *result) argument
52 impys(&opnd1,&opnd2,result);
H A Dmpyucv.c51 struct mdsfu_register *result)
53 impyu(&opnd1,&opnd2,result);
50 mpyucv(unsigned int opnd1,unsigned int opnd2,struct mdsfu_register * result) argument
H A Dsfadd.c57 register unsigned int left, right, result, extent; local in function:sgl_fadd
90 Sgl_makequietnan(result);
91 *dstptr = result;
200 /* Left is not a zero and must be the result. Trapped
223 /* Both operands are denormalized. The result must be exact
228 Sgl_subtract(left,/*minus*/right,/*into*/result);
229 if(Sgl_iszero_mantissa(result))
233 Sgl_setone_sign(result);
237 Sgl_setzero_sign(result);
239 *dstptr = result;
[all...]
H A Dsfsub.c57 register unsigned int left, right, result, extent; local in function:sgl_fsub
88 Sgl_makequietnan(result);
89 *dstptr = result;
201 /* Left is not a zero and must be the result. Trapped
225 /* Both operands are denormalized. The result must be exact
230 Sgl_subtract(left,/*minus*/right,/*into*/result);
231 if(Sgl_iszero_mantissa(result))
235 Sgl_setone_sign(result);
239 Sgl_setzero_sign(result);
241 *dstptr = result;
[all...]
H A Dsfsqrt.c59 register unsigned int src, result; local in function:sgl_fsqrt
110 * Generate result
134 Sgl_setzero(result);
137 Sgl_addition(result,newbit,sum);
139 /* update result */
140 Sgl_addition(result,(newbit<<1),result);
148 Sgl_rightshiftby1(result);
153 if (!even_exponent && Sgl_islessthan(result,src))
154 Sgl_increment(result);
[all...]
H A Ddivufr.c50 divufr(unsigned int opnd1, unsigned int opnd2, struct mdsfu_register *result) argument
66 divu(opnd1,0,opnd2,result);
H A Ddivuir.c50 divuir(unsigned int opnd1, unsigned int opnd2, struct mdsfu_register *result) argument
60 divu(0,opnd1,opnd2,result);
H A Dmpys.c50 mpys(int opnd1, int opnd2, struct mdsfu_register *result) argument
52 impys(&opnd1,&opnd2,result);
H A Dmpyu.c51 struct mdsfu_register *result)
53 impyu(&opnd1,&opnd2,result);
50 mpyu(unsigned int opnd1,unsigned int opnd2,struct mdsfu_register * result) argument
H A Dsfrem.c57 register unsigned int opnd1, opnd2, result; local in function:sgl_frem
73 Sgl_makequietnan(result);
74 *dstptr = result;
144 Sgl_makequietnan(result);
145 *dstptr = result;
150 * get sign of result
152 result = opnd1;
179 /* find result exponent and divide step loop count */
194 Sgl_all(result) = ~Sgl_all(result); /* se
[all...]
/src/distrib/utils/more/
H A Dttyin.c70 int result; local in function:getchr
74 result = iread(tty, &c, 1);
75 if (result == READ_INTR)
77 if (result < 0)
85 } while (result != 1);
/src/usr.sbin/ypserv/yppush/
H A Dyppush_proc.c48 static char result; local in function:yppushproc_null_1_svc
50 (void) memset(&result, 0, sizeof(result));
51 return ((void *)&result);
58 static char result; local in function:yppushproc_xfrresp_1_svc
63 (void) memset(&result, 0, sizeof(result));
64 return ((void *)&result);
/src/lib/libm/src/
H A Ds_fmaf.c53 double xy, result; local in function:fmaf
57 result = xy + z;
58 EXTRACT_WORDS(hr, lr, result);
59 /* Common case: The double precision result is fine. */
62 result - xy == z || /* exact */
64 return (result);
67 * If result is inexact, and exactly halfway between two float values,
74 if (result == adjusted_result)
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/
H A Dashlti3.c28 twords result; local in function:__ashlti3
32 result.s.low = 0;
33 result.s.high = input.s.low << (b - bits_in_dword);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
42 return result.all;
H A Dlshrti3.c28 utwords result; local in function:__lshrti3
32 result.s.high = 0;
33 result.s.low = input.s.high >> (b - bits_in_dword);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
42 return result.all;
H A Dfloatsisf.c39 rep_t result; local in function:__floatsisf
44 result = (rep_t)a << shift ^ implicitBit;
47 result = (rep_t)a >> shift ^ implicitBit;
49 if (round > signBit) result++;
50 if (round == signBit) result += result & 1;
54 result += (rep_t)(exponent + exponentBias) << significandBits;
56 return fromRep(result | sign);
H A Dfloatunsisf.c31 rep_t result; local in function:__floatunsisf
36 result = (rep_t)a << shift ^ implicitBit;
39 result = (rep_t)a >> shift ^ implicitBit;
41 if (round > signBit) result++;
42 if (round == signBit) result += result & 1;
46 result += (rep_t)(exponent + exponentBias) << significandBits;
47 return fromRep(result);
H A Dfloatunditf.c29 rep_t result; local in function:__floatunditf
33 result = (rep_t)a << shift ^ implicitBit;
36 result += (rep_t)(exponent + exponentBias) << significandBits;
37 return fromRep(result);
H A Dfloatunsitf.c29 rep_t result; local in function:__floatunsitf
33 result = (rep_t)a << shift ^ implicitBit;
36 result += (rep_t)(exponent + exponentBias) << significandBits;
37 return fromRep(result);
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/
H A DDD.h23 doublebits result = {.d = x}; local in function:local_fabs
24 result.x &= UINT64_C(0x7fffffffffffffff);
25 return result.d;
29 doublebits result = {.d = x}; local in function:high26bits
30 result.x &= UINT64_C(0xfffffffff8000000);
31 return result.d;
36 int result = (int)(xsignbit.x >> 63) ^ (int)(ysignbit.x >> 63); local in function:different_sign
37 return result;
H A Dfloatditf.c29 DD result; local in function:__floatditf
31 result.s.hi = high_addend + low.d;
32 result.s.lo = (high_addend - result.s.hi) + low.d;
34 return result.ld;
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/
H A Dcustom_float.h39 uint32_t *result);
/src/lib/libresolv/
H A Dns_date.c56 u_int32_t result; local in function:ns_datetosecs
85 result = tim.tm_sec; /*%< Seconds */
86 result += tim.tm_min * 60; /*%< Minutes */
87 result += tim.tm_hour * (60*60); /*%< Hours */
88 result += (tim.tm_mday - 1) * SECS_PER_DAY; /*%< Days */
93 result += mdays * SECS_PER_DAY; /*%< Months */
95 result += SECS_PER_DAY; /*%< Add leapday for this year */
98 result += (tim.tm_year - 70) * (SECS_PER_DAY*365); /*%< Years */
101 result += SECS_PER_DAY; /*%< Add leapday for prev year */
102 return (result);
113 int result = 0; local in function:datepart
[all...]
/src/lib/libc/gen/
H A Dulimit.c47 long int new_limit, result; local in function:ulimit
51 result = -1L;
55 result = (long int)(rlimit.rlim_cur / 512);
61 result = new_limit;
69 return (result);

Completed in 56 milliseconds

1234567891011>>