Searched refs:result (Results 176 - 200 of 520) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/lib/thc/
H A Dthcsync.c395 errval_t result = SYS_ERR_OK; local
398 result == SYS_ERR_OK) {
399 result = thc_condvar_wait_x(&tq->cv, &tq->l);
401 if (result == SYS_ERR_OK) {
405 return result;
410 int result; local
422 result = te->bailed;
429 result = 0;
438 return result;
454 uint64_t result; local
[all...]
/barrelfish-2018-10-04/lib/libc/tests/nss/
H A Dgethostby_test.c496 struct hostent *result; local
502 result = __gethostbyname2(line, af_type);
503 if (result != NULL) {
508 rv = hostent_test_correctness(result, NULL);
510 __freehostent(result);
514 clone_hostent(he, result);
515 __freehostent(result);
528 hostent_read_snapshot_addr(char *addr, unsigned char *result, size_t len) argument
537 *result = (unsigned char)strtol(s, &ts, 10);
538 ++result;
668 dump_hostent(struct hostent *result) argument
720 struct hostent *result; local
808 struct hostent *result; local
[all...]
/barrelfish-2018-10-04/lib/cxx/cxx/
H A Dlocale.cpp94 static locale_t result = newlocale(LC_ALL_MASK, "C", 0); local
95 return result;
1229 bool result = false;
1231 if (m & space) result |= (iswspace_l(ch, __l) != 0);
1232 if (m & print) result |= (iswprint_l(ch, __l) != 0);
1233 if (m & cntrl) result |= (iswcntrl_l(ch, __l) != 0);
1234 if (m & upper) result |= (iswupper_l(ch, __l) != 0);
1235 if (m & lower) result |= (iswlower_l(ch, __l) != 0);
1236 if (m & alpha) result |= (iswalpha_l(ch, __l) != 0);
1237 if (m & digit) result |
4785 string result; local
4943 wstring result; local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/engines/
H A De_cswift.c497 BIGNUM *result; local
504 modulus = exponent = argument = result = NULL;
519 result = BN_CTX_get(ctx);
520 if(!result)
526 !bn_wexpand(argument, a->top) || !bn_wexpand(result, m->top))
560 memset(result->d, 0, res.nbytes);
561 res.value = (unsigned char *)result->d;
573 BN_bin2bn((unsigned char *)result->d, res.nbytes, r);
617 BIGNUM *result = NULL; local
637 result
819 BIGNUM *result = NULL; local
[all...]
/barrelfish-2018-10-04/lib/cxx/cxxabi/
H A Dcxa_personality.cpp181 uintptr_t result = 0; local
188 result |= static_cast<uintptr_t>(byte & 0x7F) << shift;
192 return result;
204 uintptr_t result = 0; local
211 result |= static_cast<uintptr_t>(byte & 0x7F) << shift;
215 if ((byte & 0x40) && (shift < (sizeof(result) << 3)))
216 result |= static_cast<uintptr_t>(~0) << shift;
217 return static_cast<intptr_t>(result);
230 uintptr_t result = 0; local
232 return result;
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DSpreadSheet.java300 Component result = super.getTableCellRendererComponent(table,
309 ((JLabel)result).setBorder(border);
310 ((JLabel)result).setOpaque(false);
311 return result;
H A DVisClientStateModel.java510 CompoundTerm result;
516 result = eclipse.rpc(goal);
522 return(result);
531 List result;
535 result = batch.execute(eclipse);
539 return result;
/barrelfish-2018-10-04/include/devif/backends/
H A Ddescq.h29 uint64_t *result);
/barrelfish-2018-10-04/usr/tests/distops/
H A Dmain.c28 struct capref result = NULL_CAP; local
32 dest = &result;
42 PANIC_IF_ERR(err, "in %s: slot_alloc for retype result", role);
55 err = cap_delete(result);
58 err = slot_free(result);
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/
H A Dbitmap.h45 ** Macros for testing result codes.
48 #define Result_Is_Empty(result) (((result) & RES_EMPTY) == RES_EMPTY)
49 #define Result_Is_Non_Empty(result) (((result) & RES_EMPTY) == 0)
50 #define Result_Is_Change(result) (((result) & RES_CHANGED) == RES_CHANGED)
51 #define Result_Is_Slack(result) (((result) & RES_SLACK) == RES_SLACK)
/barrelfish-2018-10-04/lib/pager/
H A Dpager.c32 errval_t result = SYS_ERR_OK; local
60 return result;
/barrelfish-2018-10-04/usr/bench/udp_echo/
H A Dudp_echo.c38 #define timersub(a, b, result) \
40 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
41 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
42 if ((result)->tv_usec < 0) { \
43 --(result)->tv_sec; \
44 (result)->tv_usec += 1000000; \
/barrelfish-2018-10-04/usr/eclipseclp/lib_tcl/widget/
H A Dutil-number.tcl39 set result ""
52 append result $roman
56 return $result
/barrelfish-2018-10-04/usr/monitor/
H A Dram_alloc.c109 genpaddr_t base, uint8_t bits, errval_t *result)
132 *result = err_push(err, LIB_ERR_SLOT_ALLOC);
138 *result = err_push(err, MON_ERR_CAP_CREATE);
145 err = mb->rpc_tx_vtbl.free_monitor(mb, cap, base, bits, result);
147 *result = err;
150 DEBUG_CAPOPS("%s: sending reply: %s\n", __FUNCTION__, err_getstring(*result));
107 mem_free_handler(struct monitor_mem_binding *b, monitor_mem_caprep_t caprep, genpaddr_t base, uint8_t bits, errval_t *result) argument
/barrelfish-2018-10-04/tools/harness/
H A Dharness.py146 # if a single result, turn it into a list
149 for result in results:
152 passed = result.passed()
156 debug.log('Test %s FAILED %s' % (test.name, '(' + result.reason() + ')') )
162 name = result.name if result.name else 'results'
167 result.to_file(data_file)
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Dtkexdr.c383 _EcExdr2Tcl(Tcl_Interp *interp, char *bp, char *stop, Tcl_HashTable *string_table, uword *string_index, Tcl_Obj **result) argument
399 *result = Tcl_NewLongObj(len);
405 *result = Tcl_NewLongObj(len);
412 *result = Tcl_NewWideIntObj(wlen);
415 *result = Tcl_NewLongObj(len);
427 *result = Tcl_NewDoubleObj(d.as_dbl);
431 *result = Tcl_NewStringObj("_", 1);
440 *result = Tcl_NewByteArrayObj(bp, len);
445 Tcl_SetHashValue(entry, (ClientData) *result);
458 *result
[all...]
H A Dbip_array.c538 pword result; local
548 get_heapterm(p, &result);
551 if (IsRef(result.tag) && result.val.ptr == &result)
555 else if (IsGlobalPrologRef(&result))
557 result = ec_ref_get((ec_ref) result.val.wptr);
558 Return_Unify_Pw(v, t, result.val, result
580 pword result; local
[all...]
H A Dbip_shelf.c371 _heap_arr_get(t_ext_ptr h, int i) /* assumed to return dereferenced result */
373 pword result; local
374 _heap_arr_get1(h, i, &result);
375 if (IsRef(result.tag) && IsSelfRef(&result))
377 result.val.ptr = TG;
380 return result;
384 _heap_arr_get1(t_ext_ptr h, int i, pword *result) /* assumed to return dereferenced result */ argument
394 get_heapterm(&pheap[i], result);
[all...]
H A Dterm_copy.c73 * may be the result of copying an already persistent subterm
74 * (then it probably has no header), or the result of making a proper
1200 * get_heapterm(root, result) - get a prolog term from the heap
1203 * The result is stored in the pword referenced by result,
1209 get_heapterm(pword *root, pword *result) argument
1215 result->val.ptr = result; /* if free var on heap */
1217 result->val.all = root->val.all;
1224 result
1260 pword result; local
1276 pword result, list; local
1343 pword result, list; local
[all...]
/barrelfish-2018-10-04/lib/tzcode/zic/
H A Dzdump.c533 register long result; local
538 result = 0;
540 result += DAYSPERNYEAR + isleap_sum(tmy, TM_YEAR_BASE);
541 result += newp->tm_yday - oldp->tm_yday;
542 result *= HOURSPERDAY;
543 result += newp->tm_hour - oldp->tm_hour;
544 result *= MINSPERHOUR;
545 result += newp->tm_min - oldp->tm_min;
546 result *= SECSPERMIN;
547 result
588 register char * result; local
[all...]
/barrelfish-2018-10-04/lib/tommath/
H A Dbn.tex392 int result;
394 if ((result = mp_init(&number)) != MP_OKAY) \{
396 mp_error_to_string(result));
423 int result;
425 if ((result = mp_init(&number)) != MP_OKAY) \{
427 mp_error_to_string(result));
461 int result;
463 if ((result = mp_init_multi(&num1,
467 mp_error_to_string(result));
494 int result;
[all...]
/barrelfish-2018-10-04/usr/drivers/xeon_phi/
H A Dsysmem_caps.c137 cycles_t result; local
139 result = (LONG_MAX - tsc_start) + tsc_end - bench_tscoverhead();
141 result = (tsc_end - tsc_start - bench_tscoverhead());
144 return result;
344 cycles_t result[DIMENSIONS]; local
349 result[0] = sysmem_bench_run_round(&ll_elements[elem_id[0]], &element);
358 result[2] = sysmem_bench_run_round(&oll_elements[elem_id[0]], &element);
366 result[3] = sysmem_bench_run_round(&l1o_elements[0], &element);
378 result[1] = sysmem_bench_run_round(&l1_elements[0], &element);
387 } while (!bench_ctl_add_run(ctl, result));
[all...]
/barrelfish-2018-10-04/lib/lwip2/src/core/ipv4/
H A Ddhcp.c294 err_t result; local
301 result = etharp_query(netif, &dhcp->offered_ip_addr, NULL);
302 if (result != ERR_OK) {
355 err_t result; local
363 result = dhcp_create_msg(netif, dhcp, DHCP_REQUEST);
364 if (result == ERR_OK) {
401 return result;
724 err_t result; local
782 result = dhcp_discover(netif);
783 if (result !
805 err_t result = ERR_OK; local
922 err_t result = ERR_OK; local
964 err_t result = ERR_OK; local
1130 err_t result; local
1182 err_t result; local
1232 err_t result; local
1283 err_t result; local
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/documents/tutorial/
H A Dprogramanalysis.tex110 Issuing the following query will result in the profiler recording the
132 From the above result we can see how the profiler output contains four
237 result of running the above code is:
293 result in counters at point(1) and point(4).
307 \index{result/1} \index{result!coverage} To generate an html file
310 ?- coverage:result(queens).
312 This will create the result file \texttt{coverage/queens.html} which
325 \index{result/0} \index{result!coverag
[all...]
/barrelfish-2018-10-04/lib/mdb/
H A Dmdb_tree.c1117 /*inout*/ int *ret, /*inout*/ struct cte **result)
1121 assert(result);
1129 *result = sub_result;
1133 *result = sub_result;
1141 *result = mdb_choose_surrounding(address, size, *result, sub_result);
1144 *result = mdb_choose_inner(address, size, *result, sub_result);
1147 *result = mdb_choose_partial(address, size, *result, sub_resul
1115 mdb_sub_find_range_merge(mdb_root_t root, genpaddr_t address, size_t size, int max_precision, struct cte *sub, int *ret, struct cte **result) argument
1181 struct cte *result = NULL; local
1256 mdb_find_range(mdb_root_t root, genpaddr_t address, gensize_t size, int max_result, struct cte **ret_node, int *result) argument
1284 int result; local
[all...]

Completed in 173 milliseconds

1234567891011>>