HomeSort by: relevance | last modified time | path
    Searched defs:result (Results 1 - 25 of 574) 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...]
  /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);
  /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;
floatunditf.c 29 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);
floatunsidf.c 31 rep_t result; local in function:__floatunsidf
35 result = (rep_t)a << shift ^ implicitBit;
38 result += (rep_t)(exponent + exponentBias) << significandBits;
39 return fromRep(result);
  /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);
  /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);
  /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);
  /src/distrib/utils/more/
ttyin.c 70 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/lib/libc/gen/
dirname.c 97 static char result[PATH_MAX]; local in function:dirname
98 (void)xdirname_r(path, result, sizeof(result));
99 return result;
ulimit.c 47 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);
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/gpio/dce110/
amdgpu_hw_translate_dce110.c 191 bool result = true; local in function:id_to_offset
223 result = false;
255 result = false;
284 result = false;
310 result = false;
327 result = false;
351 result = false;
357 result = false;
360 if (result) {
370 return result;
    [all...]
  /src/sys/arch/xen/xen/
xenmem.c 53 u_long result; local in function:xenmem_alloc_pa
61 &result);
65 &result);
71 return result;
  /src/lib/libc/isc/
assertions.c 63 const char *result; local in function:assertion_type_to_text
67 result = "REQUIRE";
70 result = "ENSURE";
73 result = "INSIST";
76 result = "INVARIANT";
79 result = NULL;
81 return (result);
  /src/lib/libc/stdlib/
getenv.c 63 char *result; local in function:__weak_alias
71 result = NULL;
73 result = __findenvvar(name, l_name);
77 return result;
reallocarr.c 59 int saved_errno, result; local in function:__weak_alias
87 result = errno;
89 result = 0;
93 return result;
  /src/lib/libedit/TEST/
fuzz1.c 40 int result; local in function:LLVMFuzzerTestOneInput
45 result = history_expand(s, &expansion);
47 if (result < 0 || result == 2) {
  /src/lib/libm/src/
s_fmaf.c 53 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)

Completed in 28 milliseconds

1 2 3 4 5 6 7 8 91011>>