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

1234567891011>>

/barrelfish-2018-10-04/usr/eclipseclp/documents/
H A DINSTALL49 result=0
50 ( cd bips; ./INSTALL ) || result=$?
51 ( cd userman; ./INSTALL ) || result=$?
52 ( cd embedding; ./INSTALL ) || result=$?
53 ( cd libman; ./INSTALL ) || result=$?
54 ( cd tutorial; ./INSTALL ) || result=$?
55 ( cd visualisation; ./INSTALL ) || result=$?
56 ( cd applications; ./INSTALL ) || result=$?
57 ( cd man; ./INSTALL ) || result=$?
59 # Return an appropriate result cod
[all...]
/barrelfish-2018-10-04/lib/libc/gdtoa/
H A Dmachdep_ldisQ.c48 long double result; local
50 strtorQ_l(s, sp, FLT_ROUNDS, &result, locale);
51 return result;
H A Dmachdep_ldisx.c48 long double result; local
51 strtorx_l(s, sp, FLT_ROUNDS, &result, locale);
52 return result;
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/ilog/
H A Dcmainstat.c31 int result; local
35 result = (*pfun)();
36 printf("result = %d\n", result);
H A Dcmain.c30 int result; local
46 result = (*(int(*)())pfun)();
47 printf("result = %d\n", result);
/barrelfish-2018-10-04/kernel/include/arch/aarch64/
H A Dmisc.h38 uintptr_t result; local
40 "mov %[result]," XTR(THREAD_REGISTER) : [result] "=r" (result)
42 return result;
/barrelfish-2018-10-04/lib/libc/net/
H A Dnscachedcli.c64 size_t result; local
73 result = 0;
78 s_result = _sendto(connection->sockfd, data + result,
79 eventlist.data < data_size - result ?
80 eventlist.data : data_size - result, MSG_NOSIGNAL,
85 result += s_result;
88 return (result < data_size ? -1 : 0);
91 } while (result < data_size);
106 size_t result; local
116 result
147 ssize_t result; local
261 int result; local
313 int result; local
384 int result; local
427 int request, result; local
461 int result; local
477 int result; local
492 int result; local
533 int request, result; local
[all...]
/barrelfish-2018-10-04/lib/msun/src/
H A Ds_fmaf.c45 double xy, result; local
49 result = xy + z;
50 EXTRACT_WORDS(hr, lr, result);
51 /* Common case: The double precision result is fine. */
54 result - xy == z || /* exact */
56 return (result);
59 * If result is inexact, and exactly halfway between two float values,
66 if (result == adjusted_result)
/barrelfish-2018-10-04/lib/compiler-rt/builtins/
H A Dashldi3.c28 dwords result; local
32 result.s.low = 0;
33 result.s.high = input.s.low << (b - bits_in_word);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
42 return result.all;
H A Dashlti3.c28 twords result; local
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 Dlshrdi3.c28 udwords result; local
32 result.s.high = 0;
33 result.s.low = input.s.high >> (b - bits_in_word);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
42 return result.all;
H A Dlshrti3.c28 utwords result; local
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.c41 rep_t result; local
46 result = (rep_t)a << shift ^ implicitBit;
49 result = (rep_t)a >> shift ^ implicitBit;
51 if (round > signBit) result++;
52 if (round == signBit) result += result & 1;
56 result += (rep_t)(exponent + exponentBias) << significandBits;
58 return fromRep(result | sign);
H A Dfloatunsisf.c33 rep_t result; local
38 result = (rep_t)a << shift ^ implicitBit;
41 result = (rep_t)a >> shift ^ implicitBit;
43 if (round > signBit) result++;
44 if (round == signBit) result += result & 1;
48 result += (rep_t)(exponent + exponentBias) << significandBits;
49 return fromRep(result);
H A Dfloatunditf.c29 rep_t result; local
33 result = (rep_t)a << shift ^ implicitBit;
36 result += (rep_t)(exponent + exponentBias) << significandBits;
37 return fromRep(result);
H A Dfloatunsidf.c33 rep_t result; local
37 result = (rep_t)a << shift ^ implicitBit;
40 result += (rep_t)(exponent + exponentBias) << significandBits;
41 return fromRep(result);
H A Dfloatunsitf.c29 rep_t result; local
33 result = (rep_t)a << shift ^ implicitBit;
36 result += (rep_t)(exponent + exponentBias) << significandBits;
37 return fromRep(result);
H A Dashrdi3.c28 dwords result; local
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_word - 1);
34 result.s.low = input.s.high >> (b - bits_in_word);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
43 return result.all;
H A Dashrti3.c28 twords result; local
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;
/barrelfish-2018-10-04/lib/libc/tests/gen/
H A Dfnmatch_test.c47 static char result[sizeof(flagnames) + 3 * sizeof(int) + 2]; local
52 p = result;
57 if (p != result)
65 if (p == result)
71 return result;
78 int flags, result; local
85 result = fnmatch(t->pattern, t->string, flags);
86 if (result != t->result)
91 result
[all...]
/barrelfish-2018-10-04/lib/tommath/
H A Dbn_mp_prime_is_divisible.c21 * sets result to 0 if not, 1 if yes
23 int mp_prime_is_divisible (mp_int * a, int *result) argument
29 *result = MP_NO;
39 *result = MP_YES;
/barrelfish-2018-10-04/usr/eclipseclp/JavaInterface/src/com/parctechnologies/eclipse/
H A DAtom.java59 String result = this.getClass().getName() + " with [";
60 result += "functor="+functor()+"]";
61 // System.err.println("WARNING: toString called on"+result);
63 return(result);
/barrelfish-2018-10-04/usr/eclipseclp/lib_tcl/widget/
H A Dutil-dump.tcl50 set result {}
53 1 { set code [catch {uplevel $arg $args} result] }
66 return -code $code $result
92 set result "# unable to resolve type for \"$args\"\n"
97 set result $err
99 return -code $code [string trimright $result \n]
125 set result {}
132 append result "\#\# ALIAS: $cmd =>\
137 append result $msg\n
143 append result "\#\# COMMAN
[all...]
/barrelfish-2018-10-04/lib/tzcode/zic/
H A Dscheck.c30 register const char * result; local
33 result = "";
35 return result;
38 return result;
65 result = (char *) format;
67 return result;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/
H A Do_dir_test.c51 const char *result; local
53 while((result = OPENSSL_DIR_read(&ctx, CURRDIR)) != NULL)
55 printf("%s\n", result);

Completed in 141 milliseconds

1234567891011>>