Searched refs:lt (Results 1 - 25 of 363) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr28685-1.c13 int lt = a < b; local
16 return (lt || eq);
22 int lt = a <= b; local
25 return (lt || eq);
31 int lt = a < b; local
34 return (lt || eq);
40 int lt = a < b; local
43 return (lt && eq);
/haiku-buildtools/legacy/gcc/libf2c/libU77/
H A Dgmtime_.c42 struct tm *lt; local
44 lt = gmtime (&stime);
45 tarray[0] = lt->tm_sec;
46 tarray[1] = lt->tm_min;
47 tarray[2] = lt->tm_hour;
48 tarray[3] = lt->tm_mday;
49 tarray[4] = lt->tm_mon;
50 tarray[5] = lt->tm_year;
51 tarray[6] = lt->tm_wday;
52 tarray[7] = lt
[all...]
H A Dltime_.c42 struct tm *lt; local
44 lt = localtime (&stime);
45 tarray[0] = lt->tm_sec;
46 tarray[1] = lt->tm_min;
47 tarray[2] = lt->tm_hour;
48 tarray[3] = lt->tm_mday;
49 tarray[4] = lt->tm_mon;
50 tarray[5] = lt->tm_year;
51 tarray[6] = lt->tm_wday;
52 tarray[7] = lt
[all...]
H A Didate_.c46 struct tm *lt; local
49 lt = localtime(&tim);
50 iarray[0] = lt->tm_mday;
51 iarray[1] = lt->tm_mon + 1; /* in range 1-12 in SunOS (experimentally) */
55 iarray[2] = lt->tm_year + 1900;
H A Ditime_.c42 struct tm *lt; local
46 lt = localtime(&tim);
47 tarray[0] = lt->tm_hour;
48 tarray[1] = lt->tm_min;
49 tarray[2] = lt->tm_sec;
H A Dsecnds_.c41 struct tm *lt; local
46 lt = localtime (&clock);
47 f= (3600.0*((real)lt->tm_hour) + 60.0*((real)lt->tm_min) +
48 (real)lt->tm_sec - *r);
H A Dvxtidate_.c47 struct tm *lt; local
50 lt = localtime(&tim);
51 *y = lt->tm_year % 100;
52 *m = lt->tm_mon+1;
53 *d = lt->tm_mday;
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dint-compare.c13 lt (a, b) function
71 false (lt (2, 1));
72 true (lt (1, 2));
74 false (lt (INT_MAX, 0));
75 true (lt (0, INT_MAX));
76 false (lt (INT_MAX, 1));
77 true (lt (1, INT_MAX));
79 true (lt (INT_MIN, 0));
80 false (lt (0, INT_MIN));
81 true (lt (INT_MI
[all...]
H A Dcbrt.c29 double lt; local
78 lt = ut.t;
79 lt -= (lt - (x/(lt*lt))) * 0.333333333333333333333;
80 return lt;
/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A Dsanitizer_deadlock_detector1.cc45 void DestroyLogicalThread(DDLogicalThread *lt);
55 void MutexEnsureID(DDLogicalThread *lt, DDMutex *m);
78 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc(sizeof(*lt)); local
79 lt->ctx = ctx;
80 lt->dd.clear();
81 lt->report_pending = false;
82 return lt;
85 void DD::DestroyLogicalThread(DDLogicalThread *lt) { argument
86 lt
95 MutexEnsureID(DDLogicalThread *lt, DDMutex *m) argument
103 DDLogicalThread *lt = cb->lt; local
118 DDLogicalThread *lt = cb->lt; local
146 DDLogicalThread *lt = cb->lt; local
[all...]
H A Dsanitizer_deadlock_detector2.cc89 void DestroyLogicalThread(DDLogicalThread *lt);
100 void CycleCheck(DDPhysicalThread *pt, DDLogicalThread *lt, DDMutex *mtx);
101 void Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath);
139 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc( local
141 lt->ctx = ctx;
142 lt->nlocked = 0;
143 return lt;
146 void DD::DestroyLogicalThread(DDLogicalThread *lt) { argument
147 lt->~DDLogicalThread();
148 InternalFree(lt);
196 DDLogicalThread *lt = cb->lt; local
275 DDLogicalThread *lt = cb->lt; local
307 DDLogicalThread *lt = cb->lt; local
331 DDLogicalThread *lt = cb->lt; local
361 CycleCheck(DDPhysicalThread *pt, DDLogicalThread *lt, DDMutex *m) argument
403 Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath) argument
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/operations/compare/char/
H A D1.cc36 enum want_value {lt=0, z=1, gt=2}; enumerator in enum:want_value
48 case lt:
78 test_value(strcmp("costa marbella", "costa rica"), lt);
80 test_value(strcmp(str_1.data(), str_0.data()), lt); local
83 test_value(strncmp(str_1.data(), str_0.data(), 14), lt); local
85 test_value(memcmp(str_1.data(), str_0.data(), 14), lt); local
86 test_value(memcmp("costa marbella", "costa rica", 14), lt);
90 test_value(str_1.compare(str_0), lt); //because m<r
94 test_value(str_2.compare(str_0), lt);
99 test_value(str_1.compare(0, 6, str_0), lt);
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/operations/compare/wchar_t/
H A D1.cc35 enum want_value {lt=0, z=1, gt=2}; enumerator in enum:want_value
47 case lt:
78 test_value(wcscmp(L"costa marbella", L"costa rica"), lt);
80 test_value(wcscmp(str_1.data(), str_0.data()), lt); local
83 test_value(wcsncmp(str_1.data(), str_0.data(), 14), lt); local
85 test_value(wmemcmp(str_1.data(), str_0.data(), 14), lt); local
86 test_value(wmemcmp(L"costa marbella", L"costa rica", 14), lt);
90 test_value(str_1.compare(str_0), lt); //because m<r
94 test_value(str_2.compare(str_0), lt);
99 test_value(str_1.compare(0, 6, str_0), lt);
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/experimental/string_view/operations/compare/char/
H A D1.cc36 enum want_value {lt=0, z=1, gt=2}; enumerator in enum:want_value
48 case lt:
78 test_value(strcmp("costa marbella", "costa rica"), lt);
80 test_value(strcmp(str_1.data(), str_0.data()), lt); local
83 test_value(strncmp(str_1.data(), str_0.data(), 14), lt); local
85 test_value(memcmp(str_1.data(), str_0.data(), 14), lt); local
86 test_value(memcmp("costa marbella", "costa rica", 14), lt);
90 test_value(str_1.compare(str_0), lt); //because m<r
94 test_value(str_2.compare(str_0), lt);
99 test_value(str_1.compare(0, 6, str_0), lt);
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/experimental/string_view/operations/compare/wchar_t/
H A D1.cc35 enum want_value {lt=0, z=1, gt=2}; enumerator in enum:want_value
47 case lt:
78 test_value(wcscmp(L"costa marbella", L"costa rica"), lt);
80 test_value(wcscmp(str_1.data(), str_0.data()), lt); local
83 test_value(wcsncmp(str_1.data(), str_0.data(), 14), lt); local
85 test_value(wmemcmp(str_1.data(), str_0.data(), 14), lt); local
86 test_value(wmemcmp(L"costa marbella", L"costa rica", 14), lt);
90 test_value(str_1.compare(str_0), lt); //because m<r
94 test_value(str_2.compare(str_0), lt);
99 test_value(str_1.compare(0, 6, str_0), lt);
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/sparc/
H A Dsetcc-3.c10 int lt (unsigned long a, unsigned long b) function
H A Dsetcc-1.c14 int lt (unsigned int a, unsigned int b) function
H A Dsetcc-2.c14 int lt (unsigned int a, unsigned int b) function
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/char_traits/requirements/char/
H A D57704.cc28 VERIFY( (std::char_traits<char>::lt(a, b)
/haiku-buildtools/binutils/gas/testsuite/gas/arm/
H A Dthumb2_bcond.s13 it lt
19 it lt
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/arm/
H A Dthumb2_bcond.s13 it lt
19 it lt
/haiku-buildtools/binutils/gas/testsuite/gas/ia64/
H A Dopc-a-err.s23 cmp4.lt.or p2, p3 = r1, r4
24 cmp4.lt.or p2, p3 = 1, r4
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/ia64/
H A Dopc-a-err.s23 cmp4.lt.or p2, p3 = r1, r4
24 cmp4.lt.or p2, p3 = 1, r4
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/list/operations/
H A D4.h70 CompLastLt lt; local
73 list0402.sort(lt);
77 list0401.merge(list0402, lt);
80 VERIFY(lt.count() <= (N + M - 1));
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/s390/vector/
H A Dvec-scalar-cmp-1.c40 lt (double a, double b) function

Completed in 234 milliseconds

1234567891011>>