HomeSort by: relevance | last modified time | path
    Searched defs:trail (Results 1 - 24 of 24) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rbtree.cc 111 struct rbt_string_node *trail = t->rbt_nil; local
115 trail = curr;
126 fresh->par = trail;
128 if (trail == t->rbt_nil)
130 else if (strcmp (fresh->str, trail->str) < 0)
131 trail->left = fresh;
133 trail->right = fresh;
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rbtree.cc 111 struct rbt_string_node *trail = t->rbt_nil; local
115 trail = curr;
126 fresh->par = trail;
128 if (trail == t->rbt_nil)
130 else if (strcmp (fresh->str, trail->str) < 0)
131 trail->left = fresh;
133 trail->right = fresh;
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++23/
print.cc 246 char16_t trail = 0xDC00 + (code_point & 0x3FF); local
248 out.push_back(trail);
  /src/sys/dev/pcmcia/
if_cnwioctl.h 99 struct cnwtrail trail[128]; member in struct:cnwitrail
110 #define SIOCGCNWTRAIL _IOWR('i', 249, struct cnwitrail)/* get trail */
  /src/external/gpl2/rcs/dist/src/
rcsrev.c 535 register struct hshentry * next, * trail; local
576 trail = 0;
580 ) trail = next;
584 if (!trail) {
589 while (next!=trail) {
612 trail = next;
617 (cmpnumfld(revno,trail->num,field+1) !=0)){
622 if (date && cmpdate(date,trail->date)<0) {
624 trail->num,
625 date2str(trail->date, datebuf
    [all...]
co.c 582 { register struct rcslock * next, * trail; local
589 trail = &dummy;
601 trail=next;
606 trail->nextlock=next->nextlock;
ci.c 1136 register struct rcslock *next, **trail; local
1140 for (trail = &Locks; (next = *trail); trail = &next->nextlock)
1144 *trail = next->nextlock;
rcs.c 1088 register struct rcslock *next, **trail; local
1092 for (trail = &Locks; (next = *trail); trail = &next->nextlock)
1104 *trail = next->nextlock;
rcsedit.c 1704 register struct rcslock *next, **trail, **found; local
1707 for (trail = &Locks; (next = *trail); trail = &next->nextlock)
1713 found = trail;
  /src/external/bsd/jemalloc.old/dist/src/
pac.c 202 edata_t *trail = ecache_alloc(tsdn, pac, ehooks, &pac->ecache_dirty, local
204 if (trail == NULL) {
205 trail = ecache_alloc(tsdn, pac, ehooks, &pac->ecache_muzzy,
208 if (trail == NULL) {
209 trail = ecache_alloc_grow(tsdn, pac, ehooks,
214 if (trail == NULL) {
217 if (extent_merge_wrapper(tsdn, pac, ehooks, edata, trail)) {
218 extent_dalloc_wrapper(tsdn, pac, ehooks, trail);
240 edata_t *trail = extent_split_wrapper(tsdn, pac, ehooks, edata, local
242 if (trail == NULL)
    [all...]
extent.c 451 * it, this splits off lead and trail extents, leaving edata pointing to an
453 * This function doesn't put lead or trail into any ecache; it's the caller's
458 * Split successfully. lead, edata, and trail, are modified to extents
470 * None of lead, edata, or trail are valid.
478 edata_t **edata, edata_t **lead, edata_t **trail,
491 *trail = NULL;
508 /* Split the trail. */
511 *trail = extent_split_impl(tsdn, pac, ehooks, *edata, size,
513 if (*trail == NULL) {
539 edata_t *trail; local
695 edata_t *trail; local
1190 edata_t *trail = edata_cache_get(tsdn, pac->edata_cache); local
    [all...]
  /src/external/bsd/jemalloc/dist/src/
pac.c 179 edata_t *trail = extent_split_wrapper(tsdn, pac, ehooks, local
182 if (trail == NULL) {
188 &pac->ecache_dirty, trail);
280 edata_t *trail = ecache_alloc(tsdn, pac, ehooks, &pac->ecache_dirty, local
282 if (trail == NULL) {
283 trail = ecache_alloc(tsdn, pac, ehooks, &pac->ecache_muzzy,
286 if (trail == NULL) {
287 trail = ecache_alloc_grow(tsdn, pac, ehooks,
292 if (trail == NULL) {
295 if (extent_merge_wrapper(tsdn, pac, ehooks, edata, trail)) {
318 edata_t *trail = extent_split_wrapper(tsdn, pac, ehooks, edata, local
    [all...]
extent.c 464 * it, this splits off lead and trail extents, leaving edata pointing to an
466 * This function doesn't put lead or trail into any ecache; it's the caller's
471 * Split successfully. lead, edata, and trail, are modified to extents
483 * None of lead, edata, or trail are valid.
491 edata_t **edata, edata_t **lead, edata_t **trail,
505 *trail = NULL;
522 /* Split the trail. */
525 *trail = extent_split_impl(tsdn, pac, ehooks, *edata, size,
527 if (*trail == NULL) {
553 edata_t *trail; local
760 edata_t *trail; local
1321 edata_t *trail = edata_cache_get(tsdn, pac->edata_cache); local
    [all...]
  /src/games/worms/
worms.c 203 int CO, LI, last, bottom, ch, number, trail; local
223 trail = ' ';
247 if (trail == ' ')
248 trail = '.';
250 trail = ' ';
356 if (trail == ' ')
357 trail = '.';
359 trail = ' ';
518 mvaddch(y1, x1, trail);
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
codecvt.cc 451 char16_t trail = 0xDC00 + (codepoint & 0x3FF); local
453 to = adjust_byte_order(trail, mode);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
codecvt.cc 449 char16_t trail = 0xDC00 + (codepoint & 0x3FF); local
451 to = adjust_byte_order(trail, mode);
  /src/lib/libc/time/
strftime.c 857 int trail; local
860 trail = a % DIVISOR + b % DIVISOR;
861 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
862 trail %= DIVISOR;
863 if (trail < 0 && lead > 0) {
864 trail += DIVISOR;
866 } else if (lead < 0 && trail > 0) {
867 trail -= DIVISOR;
871 if (lead == 0 && trail < 0)
876 pt = _conv(((trail < 0) ? -trail : trail), "%02d", pt, ptlim
    [all...]
zdump.c 1219 int trail; local
1236 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
1238 trail / DIVISOR;
1239 trail %= DIVISOR;
1240 if (trail < 0 && lead > 0) {
1241 trail += DIVISOR;
1243 } else if (lead < 0 && trail > 0) {
1244 trail -= DIVISOR;
1248 printf("%d", trail);
1249 else printf("%d%d", lead, ((trail < 0) ? -trail : trail))
    [all...]
  /src/bin/pax/
pax.h 210 int (*trail) /* returns 0 if a valid trailer, -1 if not */ member in struct:__anon31
  /src/libexec/makewhatis/
makewhatis.c 747 char *trail; local
750 if ((trail = findwhitespace(sect)) != NULL)
751 *trail++ = '\0';
758 if (trail == NULL) {
763 length = strlen(trail);
764 (void) memmove(to, trail, length + 1);
  /src/crypto/external/bsd/netpgp/dist/src/lib/
writer.c 602 static const char trail[] = "\r\n-----END PGP SIGNATURE-----\r\n"; local
635 return stacked_write(writer, trail, (unsigned)(sizeof(trail) - 1), errors);
  /src/sys/external/bsd/drm2/dist/drm/qxl/
qxl_dev.h 446 } trail; member in union:qxl_cursor_cmd::__anon5462
  /src/external/gpl3/gcc/dist/gcc/
genautomata.cc 1228 char *trail;
1239 trail = next_sep_el (pstr, sep, paren_p);
1240 gcc_assert (!trail);
1224 char *trail; local
  /src/external/gpl3/gcc.old/dist/gcc/
genautomata.cc 1228 char *trail;
1239 trail = next_sep_el (pstr, sep, paren_p);
1240 gcc_assert (!trail);
1224 char *trail; local

Completed in 40 milliseconds