Searched refs:trail (Results 1 - 11 of 11) sorted by relevance

/haiku-fatelf/src/system/libroot/posix/time/
H A Dstrftime.c553 register int trail; local
556 trail = a % DIVISOR + b % DIVISOR;
557 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
558 trail %= DIVISOR;
559 if (trail < 0 && lead > 0) {
560 trail += DIVISOR;
562 } else if (lead < 0 && trail > 0) {
563 trail -= DIVISOR;
567 if (lead == 0 && trail < 0)
572 pt = _conv(((trail <
[all...]
/haiku-fatelf/src/bin/rcs/
H A Drcsrev.c536 register struct hshentry * next, * trail; local
577 trail = 0;
581 ) trail = next;
585 if (!trail) {
590 while (next!=trail) {
613 trail = next;
618 (cmpnumfld(revno,trail->num,field+1) !=0)){
623 if (date && cmpdate(date,trail->date)<0) {
625 trail->num,
626 date2str(trail
[all...]
H A Dco.c583 { register struct rcslock * next, * trail; local
590 trail = &dummy;
602 trail=next;
607 trail->nextlock=next->nextlock;
H A Dci.c1137 register struct rcslock *next, **trail; local
1141 for (trail = &Locks; (next = *trail); trail = &next->nextlock)
1145 *trail = next->nextlock;
H A Drcs.c1089 register struct rcslock *next, **trail; local
1093 for (trail = &Locks; (next = *trail); trail = &next->nextlock)
1105 *trail = next->nextlock;
H A Drcsedit.c1691 register struct rcslock *next, **trail, **found; local
1694 for (trail = &Locks; (next = *trail); trail = &next->nextlock)
1700 found = trail;
/haiku-fatelf/src/bin/zic/
H A Dzdump.c630 register int trail; local
654 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
656 trail / DIVISOR;
657 trail %= DIVISOR;
658 if (trail < 0 && lead > 0) {
659 trail += DIVISOR;
661 } else if (lead < 0 && trail > 0) {
662 trail -= DIVISOR;
666 (void) printf("%d", trail);
667 else (void) printf("%d%d", lead, ((trail <
[all...]
/haiku-fatelf/src/libs/ncurses/c++/
H A Dcursesw.cc342 NCursesWindow * trail = 0; local
347 if (trail != 0)
348 trail->sib = win->sib;
353 trail = win;
/haiku-fatelf/src/libs/ncurses/test/
H A Dworm.c60 static chtype trail = ' '; variable
216 trail = '.';
233 "usage: %s [-field] [-length #] [-number #] [-trail]\n", *argv);
399 addch(trail);
H A Dknight.c51 static chtype trail = '#'; /* trail character */ variable
99 trail |= COLOR_PAIR(TRAIL_COLOR);
360 markcell(trail, row, column);
467 waddch(boardwin, trail);
558 drawmove(trail,
/haiku-fatelf/src/add-ons/media/plugins/matroska/libMatroskaParser/
H A DMatroskaParser.c230 int rw,pad,trail; local
248 pad = trail = 0;
254 trail = pad, pad = 0;
265 while (dest < de && trail--)

Completed in 189 milliseconds