Lines Matching defs:retval

65       long retval =
67 if (retval >= 0) {
80 long retval =
82 if (retval >= 0) {
100 int retval;
101 retval = hwloc_set_cpubind(__kmp_hwloc_topology, mask,
103 if (retval >= 0)
400 int retval = 0;
401 while (retval < end() && !is_set(retval))
402 ++retval;
403 return retval;
411 int retval = previous + 1;
412 while (retval < end() && !is_set(retval))
413 ++retval;
414 return retval;
441 int retval = bindprocessor(BINDTHREAD, tid, PROCESSOR_CLASS_ANY);
447 retval = bindprocessor(BINDTHREAD, tid, location);
448 if (retval == -1 && errno == 1) {
456 retval = ra_detachrset(R_PROCESS, rsid, 0);
457 retval = bindprocessor(BINDTHREAD, tid, location);
460 if (retval == 0) {
484 long retval =
489 int retval = (r == 0 ? 0 : -1);
491 if (retval >= 0) {
505 long retval =
510 int retval = (r == 0 ? 0 : -1);
512 if (retval >= 0) {
529 KMPNativeAffinity::Mask *retval = new Mask();
530 return retval;
615 int retval = 0;
616 while (retval < end() && !is_set(retval))
617 ++retval;
618 return retval;
622 int retval = previous + 1;
623 while (retval < end() && !is_set(retval))
624 ++retval;
625 return retval;
697 mask_t newMask, sysMask, retval;
706 retval = SetThreadAffinityMask(GetCurrentThread(), newMask);
707 if (!retval) {
715 newMask = SetThreadAffinityMask(GetCurrentThread(), retval);
723 *mask = retval;
1114 kmp_hw_subset_t *retval =
1116 retval->depth = 0;
1117 retval->capacity = initial_capacity;
1118 retval->set = 0ull;
1119 retval->absolute = false;
1120 retval->items = (item_t *)__kmp_allocate(sizeof(item_t) * initial_capacity);
1121 return retval;