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

123

/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/functional/threads/tools/
H A Dwatchdogtimer.sh10 while [ $num -lt $PINUM ]
/haiku-fatelf/src/libs/util/
H A Dlogin_ok.c95 struct login_time *lt = NULL; local
103 lt = *ltptr;
104 else if ((lt = realloc(*ltptr, j * sizeof(struct login_time))) != NULL) {
106 *ltptr = lt;
108 if (lt != NULL) {
112 lt[i] = parse_lt(tl[i]);
113 lt[i].lt_dow = LTM_NONE;
116 return lt;
230 struct login_time *lt; local
232 lt
[all...]
/haiku-fatelf/src/tests/kits/midi/patchbay/
H A DMidiEventMeter.cpp72 BPoint lt = METER_BOUNDS.LeftTop(); local
75 view->AddLine(BPoint(lt.x, lt.y), BPoint(rb.x - 1, lt.y), METER_BLACK);
76 view->AddLine(BPoint(rb.x, lt.y), BPoint(rb.x, rb.y - 1), METER_BLACK);
77 view->AddLine(BPoint(rb.x, rb.y), BPoint(lt.x + 1, rb.y), METER_BLACK);
78 view->AddLine(BPoint(lt.x, rb.y), BPoint(lt.x, lt.y + 1), METER_BLACK);
/haiku-fatelf/3rdparty/mmu_man/scripts/
H A Ddumpwin.sh26 if [ "$CNT" -lt 1 ]; then
32 while [ $C -lt $CNT ]; do
62 if [ "$#" -lt 2 ]; then
/haiku-fatelf/src/bin/gdb/gdb/
H A Dgdb_gcore.sh39 if [ "$#" -lt "3" ]
/haiku-fatelf/src/bin/coreutils/lib/
H A Dmktime.c563 check_result (time_t tk, struct tm tmk, time_t tl, const struct tm *lt)
565 if (tk != tl || !lt || not_equal_tm (&tmk, lt))
568 print_tm (lt);
583 struct tm *lt;
600 lt = localtime (&tl);
601 if (lt)
603 tml = *lt;
604 lt = &tml;
609 status = check_result (tl, tmk, tl, lt);
562 check_result(time_t tk, struct tm tmk, time_t tl, const struct tm *lt) argument
582 struct tm *lt; local
[all...]
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dmktime.c554 check_result (time_t tk, struct tm tmk, time_t tl, const struct tm *lt)
556 if (tk != tl || !lt || not_equal_tm (&tmk, lt))
559 print_tm (lt);
574 struct tm *lt;
591 lt = localtime (&tl);
592 if (lt)
594 tml = *lt;
595 lt = &tml;
600 status = check_result (tl, tmk, tl, lt);
553 check_result(time_t tk, struct tm tmk, time_t tl, const struct tm *lt) argument
573 struct tm *lt; local
[all...]
/haiku-fatelf/src/apps/icon-o-matic/transformable/
H A DTransformBox.cpp112 BPoint lt = fLeftTop; local
118 TransformFromCanvas(lt);
127 _StrokeBWLine(into, lt, rt);
130 _StrokeBWLine(into, lb, lt);
133 _StrokeBWPoint(into, lt, rotation);
230 BPoint lt = fLeftTop; local
236 TransformFromCanvas(lt);
243 r.left = min5(lt.x, rt.x, lb.x, rb.x, c.x);
244 r.top = min5(lt.y, rt.y, lb.y, rb.y, c.y);
245 r.right = max5(lt
551 BPoint lt = fLeftTop; local
608 BPoint lt = fLeftTop; local
[all...]
/haiku-fatelf/headers/cpp/std/
H A Dstraits.h51 static bool lt (const char_type& c1, const char_type& c2) function in struct:string_char_traits
64 return lt (s1[i], s2[i]) ? -1 : 1;
117 static bool lt (const char_type& c1, const char_type& c2) function in struct:string_char_traits
145 static bool lt (const char_type& c1, const char_type& c2)
/haiku-fatelf/src/bin/sharutils/src/
H A Dmail-files37 if [ $# -lt 4 ]; then
76 [ $count -lt $maxcount ] && sleep $SLEEP
H A Dmail-files.in37 if [ $# -lt 4 ]; then
76 [ $count -lt $maxcount ] && sleep $SLEEP
/haiku-fatelf/src/libs/icon/transformable/
H A DTransformable.cpp251 BPoint lt(bounds.left, bounds.top);
256 Transform(&lt);
261 return BRect(floorf(min4(lt.x, rt.x, lb.x, rb.x)),
262 floorf(min4(lt.y, rt.y, lb.y, rb.y)),
263 ceilf(max4(lt.x, rt.x, lb.x, rb.x)),
264 ceilf(max4(lt.y, rt.y, lb.y, rb.y)));
/haiku-fatelf/src/servers/app/drawing/Painter/
H A DTransformable.cpp253 BPoint lt(bounds.left, bounds.top);
258 Transform(&lt);
263 return BRect(floorf(min4(lt.x, rt.x, lb.x, rb.x)),
264 floorf(min4(lt.y, rt.y, lb.y, rb.y)),
265 ceilf(max4(lt.x, rt.x, lb.x, rb.x)),
266 ceilf(max4(lt.y, rt.y, lb.y, rb.y)));
/haiku-fatelf/src/apps/icon-o-matic/generic/gui/
H A DIconOptionsControl.cpp263 BPoint lt = frame.LeftTop(); local
271 lt.x += labelwidth;
275 lt.y = ceilf((frame.top + frame.bottom - button->mpm.mini.y) / 2.0);
277 button->MoveTo(lt);
279 lt = button->Frame().RightTop() + BPoint(1.0, 0.0);
/haiku-fatelf/src/libs/print/libgutenprint/test/
H A Drun-weavetest88 if [ $rows -lt 200 ] ; then
/haiku-fatelf/src/bin/coreutils/src/
H A Dtest.c178 (STREQ (s, "-ne")) || (STREQ (s, "-lt")) || (STREQ (s, "-le")) ||
193 * <int> '-'(eq|ne|le|lt|ge|gt) <int>
318 struct timespec lt, rt; local
323 le = get_mtime (argv[op - 1], &lt);
325 return le && (!re || timespec_cmp (lt, rt) > 0);
347 struct timespec lt, rt; local
352 le = get_mtime (argv[op - 1], &lt);
354 return re && (!le || timespec_cmp (lt, rt) < 0);
724 INTEGER1 -lt INTEGER2 INTEGER1 is less than INTEGER2\n\
/haiku-fatelf/src/bin/compress/
H A Dusermem.sh71 if test $MAXSIZE -lt $SIZE
/haiku-fatelf/src/bin/sharutils/contrib/
H A Dshar.sh101 if [ `expr "$line" : '.*' + 1 + "$item" : '.*'` -lt $MAX ]
/haiku-fatelf/src/libs/expat/xmlwf/
H A Dxmlwf70 program=lt-'xmlwf'
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/fork/
H A Ddo-plot70 if [ $step -lt 5 ]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_cond_timedwait/
H A Ddo-plot70 if [ $step -lt 5 ]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_create/
H A Ddo-plot70 if [ $step -lt 5 ]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/sem_init/
H A Ddo-plot70 if [ $step -lt 5 ]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/sem_open/
H A Ddo-plot70 if [ $step -lt 5 ]
/haiku-fatelf/src/tests/servers/app/painter/
H A DPainter.cpp629 BPoint lt(r.left, r.top);
631 _Transform(&lt);
638 rect.rect(lt.x, lt.y, rb.x, rb.y);
649 BPoint lt(r.left, r.top);
651 _Transform(&lt, false);
664 rect.rect(lt.x, lt.y, rb.x, rb.y);
1054 BPoint lt(r.LeftTop());
1059 lt
[all...]

Completed in 390 milliseconds

123