Lines Matching full:lb

602   int func(long lb, long ub, long str, long chunk_sz, long *p_lb,              \
611 func) ": T#%d, lb 0x%lx, ub 0x%lx, str 0x%lx, chunk_sz 0x%lx\n", \
612 gtid, lb, ub, str, chunk_sz)); \
614 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
617 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
643 int func(long lb, long ub, long str, long *p_lb, long *p_ub) { \
651 (KMP_STR(func) ": T#%d, lb 0x%lx, ub 0x%lx, str 0x%lx, chunk_sz %d\n", \
652 gtid, lb, ub, str, chunk_sz)); \
654 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
657 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
760 long stride, lb, ub, str; \
771 lb = 0; \
774 KA_TRACE(20, (KMP_STR(func) ": T#%d, ncounts %u, lb 0x%lx, ub 0x%lx, str " \
777 gtid, ncounts, lb, ub, str, chunk_sz)); \
779 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
780 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
806 long stride, lb, ub, str; \
818 lb = 0; \
823 (KMP_STR(func) ": T#%d, lb 0x%lx, ub 0x%lx, str 0x%lx, chunk_sz %d\n", \
824 gtid, lb, ub, str, chunk_sz)); \
826 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
827 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
893 int func(int up, unsigned long long lb, unsigned long long ub, \
902 KA_TRACE(20, (KMP_STR(func) ": T#%d, up %d, lb 0x%llx, ub 0x%llx, str " \
904 gtid, up, lb, ub, str, chunk_sz)); \
906 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
907 KMP_DISPATCH_INIT_ULL(&loc, gtid, (schedule), lb, \
930 int func(int up, unsigned long long lb, unsigned long long ub, \
940 KA_TRACE(20, (KMP_STR(func) ": T#%d, up %d, lb 0x%llx, ub 0x%llx, str " \
942 gtid, up, lb, ub, str, chunk_sz)); \
944 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
945 KMP_DISPATCH_INIT_ULL(&loc, gtid, (schedule), lb, \
1050 long long stride, str, lb, ub; \
1061 lb = 0; \
1065 KA_TRACE(20, (KMP_STR(func) ": T#%d, lb 0x%llx, ub 0x%llx, str " \
1067 gtid, lb, ub, str, chunk_sz)); \
1069 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
1070 KMP_DISPATCH_INIT_ULL(&loc, gtid, (schedule), lb, \
1098 unsigned long long stride, str, lb, ub; \
1110 lb = 0; \
1113 KA_TRACE(20, (KMP_STR(func) ": T#%d, lb 0x%llx, ub 0x%llx, str " \
1115 gtid, lb, ub, str, chunk_sz)); \
1117 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
1118 KMP_DISPATCH_INIT_ULL(&loc, gtid, (schedule), lb, \
1160 void func(void (*task)(void *), void *data, unsigned num_threads, long lb, \
1167 func) ": T#%d, lb 0x%lx, ub 0x%lx, str 0x%lx, chunk_sz 0x%lx\n", \
1168 gtid, lb, ub, str, chunk_sz)); \
1174 9, task, data, num_threads, &loc, (schedule), lb, \
1178 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
1358 // worksharing construct with lb 1 and stride 1, and use the iteration #'s
1366 kmp_int lb, ub, stride; in KMP_EXPAND_NAME() local
1373 status = KMP_DISPATCH_NEXT(&loc, gtid, NULL, &lb, &ub, &stride); in KMP_EXPAND_NAME()
1376 KMP_DEBUG_ASSERT(lb > 0); in KMP_EXPAND_NAME()
1377 KMP_ASSERT(lb == ub); in KMP_EXPAND_NAME()
1379 lb = 0; in KMP_EXPAND_NAME()
1383 (unsigned)lb)); in KMP_EXPAND_NAME()
1384 return (unsigned)lb; in KMP_EXPAND_NAME()
1389 kmp_int lb, ub, stride; in KMP_EXPAND_NAME() local
1398 status = KMP_DISPATCH_NEXT(&loc, gtid, NULL, &lb, &ub, &stride); in KMP_EXPAND_NAME()
1401 KMP_DEBUG_ASSERT(lb > 0); in KMP_EXPAND_NAME()
1402 KMP_ASSERT(lb == ub); in KMP_EXPAND_NAME()
1404 lb = 0; in KMP_EXPAND_NAME()
1408 20, ("GOMP_sections_next exit: T#%d returning %u\n", gtid, (unsigned)lb)); in KMP_EXPAND_NAME()
1409 return (unsigned)lb; in KMP_EXPAND_NAME()
1577 void func(void (*task)(void *), void *data, unsigned num_threads, long lb, \
1584 func) ": T#%d, lb 0x%lx, ub 0x%lx, str 0x%lx, chunk_sz 0x%lx\n", \
1585 gtid, lb, ub, str, chunk_sz)); \
1591 9, task, data, num_threads, &loc, (schedule), lb, \
1596 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
1859 // The data pointer points to lb, ub, then reduction data in __GOMP_taskloop()