HomeSort by: relevance | last modified time | path
    Searched refs:upper (Results 1 - 25 of 99) sorted by relevancy

1 2 3 4

  /src/usr.bin/make/unit-tests/
hanoi-include.exp 1 Move the upper disk from stack A to stack C.
2 Move the upper disk from stack A to stack B.
3 Move the upper disk from stack C to stack B.
4 Move the upper disk from stack A to stack C.
5 Move the upper disk from stack B to stack A.
6 Move the upper disk from stack B to stack C.
7 Move the upper disk from stack A to stack C.
8 Move the upper disk from stack A to stack B.
9 Move the upper disk from stack C to stack B.
10 Move the upper disk from stack C to stack A
    [all...]
varmod-to-upper.mk 1 # $NetBSD: varmod-to-upper.mk,v 1.5 2020/10/24 08:46:08 rillig Exp $
6 .if ${:UUPPER:tu} != "UPPER"
varmod-to-lower.mk 8 .if ${:UUPPER:tl} != "upper"
hanoi-include.mk 34 @echo "Move the upper disk from stack ${from} to stack ${to}."
43 @echo "Move the upper disk from stack ${from} to stack ${to}."
  /src/tests/lib/libc/gen/
h_ctype_abuse.c 72 #define M(upper, lower) upper,
89 #define M(upper, lower) \
91 fn = upper;
120 #define M(upper, lower) \
121 case upper: \
  /src/tests/lib/libc/locale/
t_toupper.c 48 const char *upper; member in struct:test
76 printf("Comparing char %d, lower %2.2x, with upper %2.2x\n",
77 i, (unsigned char)t->lower[i], (unsigned char)t->upper[i]);
79 answer = t->upper[i];
83 reported = tolower((int)(unsigned char)t->upper[i]);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/
nouveau_nvkm_subdev_fb_ramgm107.c 41 .upper = 0x1000000000ULL,
nouveau_nvkm_subdev_fb_ramgf108.c 51 .upper = 0x0200000000ULL,
nouveau_nvkm_subdev_fb_ramgm200.c 56 .upper = 0x1000000000ULL,
nouveau_nvkm_subdev_fb_ramgp100.c 87 .upper = 0x1000000000ULL,
  /src/games/caesar/
caesar.c 63 static const unsigned char upper[LETTERS] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; variable in typeref:typename:const unsigned char[]
84 rottbl[upper[i]] = upper[(i + rot) % LETTERS];
161 dot += (obs[upper[i]] + obs[lower[i]])
  /src/lib/libc/db/btree/
bt_split.c 114 h->upper -= (indx_t)ilen;
115 h->linp[skip] = h->upper;
116 dest = (char *)(void *)h + h->upper;
218 if ((uint32_t)h->upper - (uint32_t)h->lower < nbytes + sizeof(indx_t)) {
237 h->linp[skip] = h->upper -= nbytes;
243 h->linp[skip] = h->upper -= nbytes;
268 h->linp[skip] = h->upper -= nbytes;
286 h->linp[skip] = h->upper -= nbytes;
360 r->upper = t->bt_psize;
399 l->upper = t->bt_psize
    [all...]
bt_put.c 205 if ((uint32_t)h->upper - (uint32_t)h->lower < nbytes + sizeof(indx_t)) {
217 h->linp[idx] = h->upper -= nbytes;
218 dest = (char *)(void *)h + h->upper;
286 if ((uint32_t)h->upper - (uint32_t)h->lower < nbytes + sizeof(indx_t))
bt_conv.c 83 M_16_SWAP(h->upper);
192 M_16_SWAP(h->upper);
  /src/games/ching/printching/
printching.c 139 int lower, upper; /* encoded values of lower and upper trigrams */ local in function:doahex
140 int lnum = 0, unum = 0; /* indices of upper and lower trigrams */
144 upper = codem(3);
148 if (table[i].lines == upper)
  /src/libexec/getty/
main.c 95 int crmod, digit_or_punc, lower, upper; variable in typeref:typename:int
329 upper = digit_or_punc = 0;
336 upper = 1;
360 if (!(upper || lower || digit_or_punc))
368 if (upper || UC)
429 crmod = digit_or_punc = lower = upper = 0;
477 upper = 1;
520 if ((upper && !lower && !LC) || UC)
  /src/sys/arch/arm/imx/
imx51_ipuv3var.h 69 short upper; member in struct:lcd_panel_geometry
  /src/tests/kernel/kqueue/
t_timer.c 47 time_t upper = seconds; local in function:check_timespec
51 * If running under QEMU make sure the upper bound is large
55 upper *= 4;
61 else if (ts->tv_sec > upper ||
62 (ts->tv_sec == upper && ts->tv_nsec >= 500000000))
67 seconds - 1, upper);
  /src/sys/external/bsd/drm2/dist/drm/i915/
intel_uncore.h 409 u32 upper, lower, old_upper, loop = 0; variable in typeref:typename:u32
410 upper = intel_uncore_read(uncore, upper_reg);
412 old_upper = upper;
414 upper = intel_uncore_read(uncore, upper_reg);
415 } while (upper != old_upper && loop++ < 2);
416 return (u64)upper << 32 | lower;
  /src/common/lib/libc/arch/sparc/gen/
umul.S 49 * upper 32 bits of the 64-bit product).
144 add %o4, %o0, %o4 ! %o4 += %o0 (add y to upper half)
147 addcc %o4, %g0, %o1 ! put upper half in place and set Z for %o1==0
  /src/lib/libc/db/recno/
rec_delete.c 180 from = (char *)(void *)h + h->upper;
182 h->upper += nbytes;
rec_put.c 260 if ((uint32_t) (h->upper - h->lower) < nbytes + sizeof(indx_t)) {
273 h->linp[idx] = h->upper -= nbytes;
274 dest = (char *)(void *)h + h->upper;
  /src/sys/dev/pci/igc/
igc_base.h 120 } upper; member in struct:igc_adv_rx_desc::__anon0ef01bb90508
  /src/sys/dev/pci/ixgbe/
ixgbe_netmap.c 336 reclaim_tx = txd[nic_i].upper.fields.status & IXGBE_TXD_STAT_DD; // XXX cpu_to_le32 ?
427 uint32_t staterr = le32toh(curr->wb.upper.status_error);
431 ring->slot[nm_i].len = le16toh(curr->wb.upper.length) - crclen;
477 curr->wb.upper.status_error = 0;
  /src/lib/libc/gen/
isctype.c 101 _ISCTYPE_FUNC(upper, _CTYPE_U )

Completed in 23 milliseconds

1 2 3 4