HomeSort by: relevance | last modified time | path
    Searched defs:result (Results 1 - 25 of 1150) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/hppa/spmath/
setovfl.c 54 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...]
setovfl.c 54 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...]
  /src/sys/arch/ia64/stand/common/
devopen.c 41 int result; local in function:devopen
43 if ((result = archsw.arch_getdev((void *)&dev, fname, (const char **) file)) == 0) { /* get the device */
46 if ((result = dev->d_dev->dv_open(f, dev)) == 0) { /* try to open it */
53 return(result);
devopen.c 41 int result; local in function:devopen
43 if ((result = archsw.arch_getdev((void *)&dev, fname, (const char **) file)) == 0) { /* get the device */
46 if ((result = dev->d_dev->dv_open(f, dev)) == 0) { /* try to open it */
53 return(result);
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
ashldi3.c 26 dwords result; local in function:__ashldi3
30 result.s.low = 0;
31 result.s.high = input.s.low << (b - bits_in_word);
37 result.s.low = input.s.low << b;
38 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
40 return result.all;
ashlti3.c 28 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;
ashrdi3.c 26 dwords result; local in function:__ashrdi3
30 /* result.s.high = input.s.high < 0 ? -1 : 0 */
31 result.s.high = input.s.high >> (bits_in_word - 1);
32 result.s.low = input.s.high >> (b - bits_in_word);
38 result.s.high = input.s.high >> b;
39 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
41 return result.all;
ashrti3.c 28 twords result; local in function:__ashrti3
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_dword - 1);
34 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
43 return result.all;
lshrdi3.c 26 udwords result; local in function:__lshrdi3
30 result.s.high = 0;
31 result.s.low = input.s.high >> (b - bits_in_word);
37 result.s.high = input.s.high >> b;
38 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
40 return result.all;
lshrti3.c 28 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;
ashldi3.c 26 dwords result; local in function:__ashldi3
30 result.s.low = 0;
31 result.s.high = input.s.low << (b - bits_in_word);
37 result.s.low = input.s.low << b;
38 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
40 return result.all;
ashlti3.c 28 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;
ashrdi3.c 26 dwords result; local in function:__ashrdi3
30 /* result.s.high = input.s.high < 0 ? -1 : 0 */
31 result.s.high = input.s.high >> (bits_in_word - 1);
32 result.s.low = input.s.high >> (b - bits_in_word);
38 result.s.high = input.s.high >> b;
39 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
41 return result.all;
ashrti3.c 28 twords result; local in function:__ashrti3
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_dword - 1);
34 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
43 return result.all;
lshrdi3.c 26 udwords result; local in function:__lshrdi3
30 result.s.high = 0;
31 result.s.low = input.s.high >> (b - bits_in_word);
37 result.s.high = input.s.high >> b;
38 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
40 return result.all;
lshrti3.c 28 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;
  /src/sys/external/bsd/compiler_rt/dist/test/Unit/
divmodsi4_test.c 26 si_int result = __divmodsi4(a, b, &rem); local in function:test__divmodsi4
27 if (result != expected_result) {
29 a, b, result, expected_result);
udivmodsi4_test.c 25 su_int result = __udivmodsi4(a, b, &rem); local in function:test__udivmodsi4
26 if (result != expected_result) {
28 a, b, result, expected_result);
divmodsi4_test.c 26 si_int result = __divmodsi4(a, b, &rem); local in function:test__divmodsi4
27 if (result != expected_result) {
29 a, b, result, expected_result);
udivmodsi4_test.c 25 su_int result = __udivmodsi4(a, b, &rem); local in function:test__udivmodsi4
26 if (result != expected_result) {
28 a, b, result, expected_result);
  /src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/
divmodsi4_test.c 26 si_int result = __divmodsi4(a, b, &rem); local in function:test__divmodsi4
27 if (result != expected_result) {
29 a, b, result, expected_result);
udivmodsi4_test.c 25 su_int result = __udivmodsi4(a, b, &rem); local in function:test__udivmodsi4
26 if (result != expected_result) {
28 a, b, result, expected_result);
divmodsi4_test.c 26 si_int result = __divmodsi4(a, b, &rem); local in function:test__divmodsi4
27 if (result != expected_result) {
29 a, b, result, expected_result);
udivmodsi4_test.c 25 su_int result = __udivmodsi4(a, b, &rem); local in function:test__udivmodsi4
26 if (result != expected_result) {
28 a, b, result, expected_result);
  /src/usr.sbin/ypserv/yppush/
yppush_proc.c 48 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);

Completed in 35 milliseconds

1 2 3 4 5 6 7 8 91011>>