Searched refs:result (Results 101 - 125 of 520) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/usr/tests/xomptest/
H A Dprocessing.c65 cycles_t result; local
67 result = (LONG_MAX - tsc_start) + tsc_end - bench_tscoverhead();
69 result = (tsc_end - tsc_start - bench_tscoverhead());
71 return result;
104 cycles_t result; local
130 result = calculate_time(tsc_start, tsc_end);
132 } while (!bench_ctl_add_run(ctl, &result));
154 result = calculate_time(tsc_start, tsc_end);
162 } while (!bench_ctl_add_run(ctl, &result));
/barrelfish-2018-10-04/tools/harness/tests/
H A Dspantest.py37 result = False
40 result = True
41 return PassFailResult(result)
61 result = False
64 result = True
65 return PassFailResult(result)
90 result = True
93 result = False
94 return PassFailResult(result)
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/
H A Dbitmap.c321 word result; local
326 result = create_bitmap(vmin.nint, vmax.nint, &bitmap);
327 Return_If_Not_Success(result);
407 word result; local
412 result = set_bitmap_lwb(vbm.wptr, vmin.nint, (uword **) &new_bitmap);
414 Return_Integer(vresult, tresult, result);
427 word result, old_min, old_max; local
439 result = RES_EMPTY;
444 result = 0;
446 result
520 word result; local
540 word result, old_min, old_max; local
633 word result; local
653 word result, min, max; local
771 word result; local
792 word result, min, max; local
916 word result; local
948 word result; local
1119 word result; local
1161 word result; local
1434 word result; local
1462 word result; local
1789 word result; local
1869 word result; local
2244 dident result; local
[all...]
/barrelfish-2018-10-04/lib/libc/tests/stdio/
H A Dprintbasic_test.c67 #define testfmt(result, fmt, ...) \
68 _testfmt((result), #__VA_ARGS__, fmt, __VA_ARGS__)
70 _testfmt(const char *result, const char *argstr, const char *fmt,...) argument
81 if (strcmp(result, s) != 0) {
84 fmt, argstr, s, result);
90 mbstowcs(wresult, result, BUF - 1);
/barrelfish-2018-10-04/lib/libc/net/
H A Dether_addr.c146 char *result; local
163 strlen(ether_a), &result, &resultlen)) {
166 strncpy(buf, result, resultlen);
168 free(result);
196 char *result; local
211 strlen(hostname), &result, &resultlen)) {
214 strncpy(buf, result, resultlen);
216 free(result);
H A Dnsdispatch.c337 int result, isthreaded; local
343 result = 0;
359 result = _pthread_rwlock_wrlock(&nss_lock);
360 if (result != 0)
361 return (result);
393 if (result == 0)
394 result = _pthread_rwlock_rdlock(&nss_lock);
396 return (result);
617 int isthreaded, serrno, i, result, srclistsize; local
633 result
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DViewable.java73 InterestSpec result =
76 return(result);
H A DBooleanPropertyModel.java126 Boolean result;
130 result = (Boolean) readMethod.invoke(propertyHolder, args);
136 return(result.booleanValue());
H A DUpdateEvent.java57 ArrayList result =
61 result.add( element.arg(1) );
63 return result;
H A DViewletArray.java168 // ViewletRange result = new ViewletRangeCollection();
172 // result.addAll(viewletArray.getAllViewletData());
174 // return(result);
366 LinkedList result = new LinkedList();
369 result.add(elements[i]);
371 return(result);
434 ViewletDataStore result = (ViewletDataStore)wrappedStoreMap.get(type);
435 if (result == null) {
437 if (result == null) {
438 result
[all...]
/barrelfish-2018-10-04/kernel/arch/x86_32/
H A Dmicrobenchmarks.c37 mb->result = end - start;
52 mb->result = end - start;
/barrelfish-2018-10-04/tools/demo/Aquarium/
H A DEvents.cs67 public static bool TryParse(string s, out TraceEvent result) argument
71 result = ok ? new TraceEvent(raw) : new TraceEvent();
102 out TemporalTraceEvent result)
104 result = default(TemporalTraceEvent);
112 result = new TemporalTraceEvent(c, t, e);
116 public static bool TryParse(string s, out TemporalTraceEvent result) argument
121 result = default(TemporalTraceEvent);
124 return TryParse(tokens[0], tokens[1], tokens[2], out result);
101 TryParse(string core, string time, string args, out TemporalTraceEvent result) argument
/barrelfish-2018-10-04/lib/compiler-rt/builtins/
H A Dfp_fixint_impl.inc27 // If exponent is negative, the result is zero.
35 // If 0 <= exponent < significandBits, right shift to get the result.
H A Dfp_fixuint_impl.inc25 // If either the value or the exponent is negative, the result is zero.
33 // If 0 <= exponent < significandBits, right shift to get the result.
/barrelfish-2018-10-04/lib/lwip2/src/apps/snmp/
H A Dsnmp_scalar.c125 const struct snmp_scalar_array_node_def* result = NULL; local
134 result = array_node_def;
138 if (array_node_def->oid < result->oid) {
139 result = array_node_def;
149 result = array_node_def;
157 if (result == NULL) {
160 array_node_def = array_node->array_nodes; /* may be already at the end when if case before was executed without result -> reinitialize to start */
164 result = array_node_def;
174 if (result == NULL) {
180 instance->instance_oid.id[0] = result
[all...]
/barrelfish-2018-10-04/lib/posixcompat/
H A Ddlfcn.c63 int result = 0;
73 result = 1;
78 return result;
/barrelfish-2018-10-04/lib/tommath/
H A Dbn_mp_prime_miller_rabin.c21 * Sets result to 0 if definitely composite or 1 if probably prime.
25 int mp_prime_miller_rabin (mp_int * a, mp_int * b, int *result) argument
31 *result = MP_NO;
93 *result = MP_YES;
/barrelfish-2018-10-04/tools/arm_molly/
H A Dlib.c90 int result; local
93 if((result = s2[i] - s1[i]) != 0) {
94 return result;
/barrelfish-2018-10-04/include/lwip/lwip/
H A Dnetdb.h98 size_t buflen, struct hostent **result, int *h_errnop);
106 #define gethostbyname_r(name, ret, buf, buflen, result, h_errnop) \
107 lwip_gethostbyname_r(name, ret, buf, buflen, result, h_errnop)
/barrelfish-2018-10-04/include/lwip2/lwip/
H A Dnetdb.h124 size_t buflen, struct hostent **result, int *h_errnop);
135 #define gethostbyname_r(name, ret, buf, buflen, result, h_errnop) \
136 lwip_gethostbyname_r(name, ret, buf, buflen, result, h_errnop)
/barrelfish-2018-10-04/tools/elver/
H A Dlib.c81 int result; local
84 if((result = s2[i] - s1[i]) != 0) {
85 return result;
/barrelfish-2018-10-04/tools/weever/
H A Dlib.c76 int result; local
79 if((result = s2[i] - s1[i]) != 0) {
80 return result;
/barrelfish-2018-10-04/lib/tommath/etc/
H A Dtune.c22 unsigned long result;
23 __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
24 while (__builtin_expect ((int) result == -1, 0))
25 __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
26 return result;
/barrelfish-2018-10-04/usr/eclipseclp/JavaInterface/src/com/parctechnologies/eclipse/
H A DJEclipse.java206 Integer result = null;
215 return(result);
233 result = new Integer((int) Math.ceil(intResult / 1024.0));
234 return(result);
262 return(result);
/barrelfish-2018-10-04/lib/cxx/unwind/
H A DUnwindLevel1-gcc-ext.c112 _Unwind_Reason_Code result; local
139 result = _Unwind_VRS_Interpret(context, unwindInfo, off, len);
140 if (result != _URC_CONTINUE_UNWIND) {
159 result = (*callback)((struct _Unwind_Context *)(&cursor), ref);
160 if (result != _URC_NO_REASON) {
163 result);
164 return result;
194 unw_word_t result; local
195 unw_get_reg(cursor, UNW_REG_SP, &result);
197 (uint64_t) result);
[all...]

Completed in 169 milliseconds

1234567891011>>