Home
last modified time | relevance | path

Searched full:upper (Results 1 – 25 of 1907) sorted by relevance

12345678910>>...77

/freebsd/contrib/bmake/unit-tests/
H A Dhanoi-include.exp1 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 …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp10 // for an integral value. This keeps track of a lower and upper bound for the
12 // keeps track of a [lower, upper) bound, which specifies an interval just like
46 Upper(Lower) {} in ConstantRange()
49 : Lower(std::move(V)), Upper(Lower + 1) {} in ConstantRange()
52 : Lower(std::move(L)), Upper(std::move(U)) { in ConstantRange()
53 assert(Lower.getBitWidth() == Upper.getBitWidth() && in ConstantRange()
55 assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) && in ConstantRange()
56 "Lower == Upper, but they aren't min or max value!"); in ConstantRange()
72 // and the upper bound as a non-negative one. in fromKnownBits()
73 APInt Lower = Known.getMinValue(), Upper = Known.getMaxValue(); in fromKnownBits() local
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/
H A Dtst.dofmax.ksh57 # First, establish an upper bound
59 let upper=1
61 while enable $upper ; do
62 let lower=upper
63 let upper=upper+upper
64 echo success at $lower, raised to $upper
70 while [[ "$lower" -lt "$upper" ]]; do
71 let guess=$(((lower + upper) / 2))
72 echo "lower is $lower; upper is $upper; guess is $guess\c"
75 if [[ $((upper - lower)) -le 2 ]]; then
[all …]
/freebsd/sbin/mount_unionfs/
H A Dmount_unionfs.854 .Em upper
79 becomes the upper layer.
84 Specifies the way to create a file or a directory in the upper layer
92 lower layer to the created file in the upper layer.
99 Specifies whether whiteouts should always be made in the upper layer
136 Filenames are looked up in the upper layer and then in the
139 in the upper layer, then a
141 directory will be created in the upper layer.
152 If a file exists in the upper layer then there is no way to access
160 For directories, the current user must have access to both the upper
[all …]
/freebsd/crypto/openssl/crypto/rand/
H A Drand_uniform.c17 * number on the interval [0, 1) and multiplying this number by the upper
25 uint32_t ossl_rand_uniform_uint32(OSSL_LIB_CTX *ctx, uint32_t upper, int *err) in ossl_rand_uniform_uint32() argument
33 if (!ossl_assert(upper > 0)) { in ossl_rand_uniform_uint32()
37 if (ossl_unlikely(upper == 1)) in ossl_rand_uniform_uint32()
48 * Multiplying this by the range gives us a number on [0, upper). in ossl_rand_uniform_uint32()
53 * happens when the fractional part is bounded by 2^32 - upper which in ossl_rand_uniform_uint32()
54 * can be simplified to just -upper (as an unsigned integer). in ossl_rand_uniform_uint32()
56 prod = (uint64_t)upper * rand; in ossl_rand_uniform_uint32()
59 if (ossl_likely(f <= 1 + ~upper)) /* 1+~upper == -upper but compilers whine */ in ossl_rand_uniform_uint32()
81 prod = (uint64_t)upper * rand; in ossl_rand_uniform_uint32()
[all …]
/freebsd/sys/netgraph/
H A Dng_car.c85 struct hookinfo upper; /* hook to upper layers */ member
207 priv->upper.hook = NULL; in ng_car_constructor()
208 priv->upper.dest = NULL; in ng_car_constructor()
209 priv->upper.tc = priv->upper.conf.cbs = NG_CAR_CBS_MIN; in ng_car_constructor()
210 priv->upper.te = priv->upper.conf.ebs = NG_CAR_EBS_MIN; in ng_car_constructor()
211 priv->upper.conf.cir = NG_CAR_CIR_DFLT; in ng_car_constructor()
212 priv->upper.conf.green_action = NG_CAR_ACTION_FORWARD; in ng_car_constructor()
213 priv->upper.conf.yellow_action = NG_CAR_ACTION_FORWARD; in ng_car_constructor()
214 priv->upper.conf.red_action = NG_CAR_ACTION_DROP; in ng_car_constructor()
215 priv->upper.conf.mode = 0; in ng_car_constructor()
[all …]
H A Dng_macfilter.h39 #define NG_MACFILTER_HOOK_DEFAULT "default" /* connected to ether:upper; upper[0] */
40 /* Other hooks may be named freely connected to ether:upper; upper[1..n]*/
59 u_char hookname[NG_HOOKSIZ]; /* Upper hook name*/
70 u_int16_t hookid; /* Upper hook hookid */
81 u_int16_t hookid; /* Upper hook hookid */
109 u_char hookname[NG_HOOKSIZ]; /* Upper hook name*/
110 u_int16_t hookid; /* Upper hook hookid */
H A Dng_pipe.c36 * The node has two hooks, upper and lower. Traffic flowing from upper to
102 struct hookinfo upper;
274 bzero(&priv->upper, sizeof(priv->upper)); in ngp_newhook()
275 priv->upper.hook = hook; in ngp_newhook()
276 NG_HOOK_SET_PRIVATE(hook, &priv->upper); in ngp_newhook()
322 bcopy(&priv->upper.stats, &stats->downstream, in ngp_rcvmsg()
328 bzero(&priv->upper.stats, in ngp_rcvmsg()
329 sizeof(priv->upper in ngp_rcvmsg()
101 struct hookinfo upper; global() member
[all...]
/freebsd/sys/netgraph/bluetooth/include/
H A Dng_l2cap.h54 #define NG_L2CAP_HOOK_L2C "l2c" /* L2CAP <-> Upper */
324 ** Upper layer protocol interface. L2CA_xxx messages
337 * upper layer protocol _MUST_ populate "token". L2CAP will queue request
341 * the upper layer protocol.
364 /* Upper -> L2CAP */
372 /* L2CAP -> Upper */
383 /* L2CAP -> Upper */
395 /* Upper -> L2CAP */
405 /* L2CAP -> Upper */
412 /* Upper -> L2CAP */
[all …]
/freebsd/contrib/ncurses/man/
H A Dmake_sed.sh45 UPPER=upper$$
48 rm -f $UPPER $SCRIPT $RESULT
49 trap "rm -f $COL.* $INPUT $UPPER $SCRIPT $RESULT; exit 1" 1 2 3 15
50 trap "rm -f $COL.* $INPUT $UPPER $SCRIPT $RESULT" 0
61 tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ <$COL.$F >$UPPER
62 mv $UPPER $COL.$F
66 -e 's/$/\//' >$UPPER
76 $UPPER
85 $UPPER
91 $UPPER
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_sched.cpp166 // ON A ZERO-TRIP LOOP (lower=1, upper=0,stride=1) - JPH June 23, 2009. in __kmp_for_static_init()
172 "lower=%%%s upper=%%%s stride = %%%s " in __kmp_for_static_init()
229 "lower=%%%s upper=%%%s stride = %%%s\n", in __kmp_for_static_init()
259 "lower=%%%s upper=%%%s stride = %%%s\n", in __kmp_for_static_init()
285 // upper-lower can exceed the limit of signed type in __kmp_for_static_init()
439 "upper=%%%s stride = %%%s signed?<%s>\n", in __kmp_for_static_init()
530 // for(i=10;i<0;++i) // lower >= upper - run-time check in __kmp_dist_for_static_init()
531 // for(i=0;i>10;--i) // lower <= upper - run-time check in __kmp_dist_for_static_init()
555 // upper-lower can exceed the limit of signed type in __kmp_dist_for_static_init()
592 T upper = *pupper; in __kmp_dist_for_static_init() local
[all …]
/freebsd/share/man/man4/
H A Dng_ether.458 .Va lower , upper ,
72 instead of being passed to the kernel for upper layer processing.
80 .Va upper
81 hook is a connection to the upper protocol layers.
87 .Va upper
97 .Va upper
106 .Va upper
116 .It Va upper
117 Connection to the upper protocol layers.
210 .Va upper
[all …]
H A Dng_macfilter.474 hooks to be connected to the NIC's upper hook.
89 u_char hookname[NG_HOOKSIZ]; /* Upper hook name*/
98 u_int16_t hookid; /* Upper hook hookid */
108 u_int16_t hookid; /* Upper hook hookid */
132 u_char hookname[NG_HOOKSIZ]; /* Upper hook name*/
133 u_int16_t hookid; /* Upper hook hookid */
164 # Funnel both streams back into ether:upper
165 ngctl mkpeer em0: one2many upper one
166 ngctl name em0:upper recombiner
179 # Pass traffic from ether:upper / combiner:one via combiner:many0 on to
H A Dng_pipe.442 .Bl -tag -width ".Va upper"
43 .It Va upper
44 Hook leading to upper layer protocols.
50 .Va upper
59 .Va upper
198 connect fxp0: fxp0_pipe: upper upper
/freebsd/crypto/openssl/crypto/md5/asm/
H A Dmd5-aarch64.pl61 movk x9, #0xd76a, lsl #16 // Load upper half of constant 0xd76aa478
71 movk x16, #0xe8c7, lsl #16 // Load upper half of constant 0xe8c7b756
81 movk x16, #0x2420, lsl #16 // Load upper half of constant 0x242070db
91 movk x9, #0xc1bd, lsl #16 // Load upper half of constant 0xc1bdceee
109 movk x16, #0xf57c, lsl #16 // Load upper half of constant 0xf57c0faf
119 movk x4, #0x4787, lsl #16 // Load upper half of constant 0x4787c62a
129 movk x4, #0xa830, lsl #16 // Load upper half of constant 0xa8304613
139 movk x6, #0xfd46, lsl #16 // Load upper half of constant 0xfd469501
157 movk x9, #0x6980, lsl #16 // Load upper half of constant 0x698098d8
167 movk x17, #0x8b44, lsl #16 // Load upper half of constant 0x8b44f7af
[all …]
/freebsd/sys/crypto/openssl/aarch64/
H A Dmd5-aarch64.S32 movk x9, #0xd76a, lsl #16 // .Load upper half of constant 0xd76aa478
42 movk x16, #0xe8c7, lsl #16 // .Load upper half of constant 0xe8c7b756
52 movk x16, #0x2420, lsl #16 // .Load upper half of constant 0x242070db
62 movk x9, #0xc1bd, lsl #16 // .Load upper half of constant 0xc1bdceee
80 movk x16, #0xf57c, lsl #16 // .Load upper half of constant 0xf57c0faf
90 movk x4, #0x4787, lsl #16 // .Load upper half of constant 0x4787c62a
100 movk x4, #0xa830, lsl #16 // .Load upper half of constant 0xa8304613
110 movk x6, #0xfd46, lsl #16 // .Load upper half of constant 0xfd469501
128 movk x9, #0x6980, lsl #16 // .Load upper half of constant 0x698098d8
138 movk x17, #0x8b44, lsl #16 // .Load upper half of constant 0x8b44f7af
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVRange.h27 LVAddress Upper = 0; variable
35 : Lower(LowerAddress), Upper(UpperAddress), Scope(Scope) {} in LVRangeEntry()
38 RangeType upper() const { return Upper; } in upper() function
40 return LVAddressRange(lower(), upper()); in addressRange()
58 LVAddress Upper = 0; variable
72 LVAddress getUpper() const { return Upper; } in getUpper()
79 Upper = 0; in clear()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DUnicodeCharRanges.h22 /// Represents a closed range of Unicode code points [Lower, Upper].
25 uint32_t Upper; member
32 return Range.Upper < Value;
76 LLVM_DEBUG(dbgs() << "Upper bound 0x"); in rangesAreValid()
82 if (I->Upper < I->Lower) { in rangesAreValid()
83 LLVM_DEBUG(dbgs() << "Upper bound 0x"); in rangesAreValid()
86 LLVM_DEBUG(dbgs().write_hex(I->Upper) << "\n"); in rangesAreValid()
89 Prev = I->Upper; in rangesAreValid()
H A DFormat.h170 bool Upper;
177 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
188 bool Upper = false) {
190 return FormattedNumber(N, 0, Width, true, Upper, true);
201 bool Upper = false) {
203 return FormattedNumber(N, 0, Width, true, Upper, false);
225 bool Upper; // Show offset and hex bytes as upper case.
233 ByteGroupSize(BGS), Upper(U), ASCII(A) {
244 uint32_t IndentLevel = 0, bool Upper = false) {
246 ByteGroupSize, Upper, false);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRFixupKinds.h55 /// with the upper 8 bits of a 16-bit value (bits 8-15).
58 /// with the upper 8 bits of a 24-bit value (bits 16-23).
61 /// with the upper 8 bits of a 32-bit value (bits 24-31).
68 /// with the upper 8 bits of a negated 16-bit value (bits 8-15).
71 /// with the upper 8 bits of a negated 24-bit value (bits 16-23).
74 /// with the upper 8 bits of a negated 32-bit value (bits 24-31).
81 /// with the upper 8 bits of a 16-bit program memory address value (bits
85 /// with the upper 8 bits of a 24-bit program memory address value (bits
94 /// with the upper 8 bits of a negated 16-bit program memory address value
98 /// with the upper
[all...]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVRange.cpp33 << hexValue(RangeEntry.upper()) << "]\n"; in startSearch()
36 RangesTree.insert(RangeEntry.lower(), RangeEntry.upper(), in startSearch()
61 if (UpperAddress > Upper) in addEntry()
62 Upper = UpperAddress; in addEntry()
112 if (LowerAddress >= RangeEntry.lower() && UpperAddress < RangeEntry.upper()) in getEntry()
121 UpperAddress == RangeEntry.upper()) in hasEntry()
133 // If the lower address is the same, use the upper address value in in sort()
136 return lhs.upper() < rhs.upper(); in sort()
153 OS << format("[0x%08x,0x%08x] ", RangeEntry.lower(), RangeEntry.upper()) in print()
/freebsd/usr.bin/tr/
H A Dtr.1191 .It "upper <upper-case characters>"
204 .\" Otherwise, only the classes ``upper'' and ``lower'' may be used in
206 .\" and then only when the corresponding class (``upper'' for ``lower''
215 .Dq Li [:upper:]
224 .Dq Li [:upper:]
288 Translate the contents of file1 to upper-case.
290 .D1 Li "tr \*q[:lower:]\*q \*q[:upper:]\*q < file1"
313 characters (esp.\& as found in English text) from upper to lower case using
322 upper case, or when the order of characters within the two cases differs.
328 .Dq Li [:upper:]
/freebsd/lib/libc/db/btree/
H A Dbt_split.c104 h->linp[skip] = h->upper -= ilen; in __bt_split()
105 dest = (char *)h + h->upper; in __bt_split()
204 if ((u_int32_t)(h->upper - h->lower) < nbytes + sizeof(indx_t)) { in __bt_split()
223 h->linp[skip] = h->upper -= nbytes; in __bt_split()
229 h->linp[skip] = h->upper -= nbytes; in __bt_split()
254 h->linp[skip] = h->upper -= nbytes; in __bt_split()
272 h->linp[skip] = h->upper -= nbytes; in __bt_split()
346 r->upper = t->bt_psize; in bt_page()
382 l->upper = t->bt_psize; in bt_page()
450 l->upper = r->upper = t->bt_psize; in bt_root()
[all …]
/freebsd/sys/dev/isci/scil/
H A Dsci_util.h101 * 0. When this occurs the upper 32-bits are incremented by 1.
106 U32 upper = sci_cb_physical_address_upper((physical_address)); \
109 upper += 1; \
112 sci_cb_make_physical_address(physical_address, upper, lower); \
118 * 0. When this occurs the upper 32-bits are decremented by 1.
123 U32 upper = sci_cb_physical_address_upper((physical_address)); \
126 upper -= 1; \
129 sci_cb_make_physical_address(physical_address, upper, lower); \
/freebsd/crypto/krb5/src/plugins/kdb/db2/libdb2/btree/
H A Dbt_split.c113 h->linp[skip] = h->upper -= ilen; in __bt_split()
114 dest = (char *)h + h->upper; in __bt_split()
213 if ((u_int32_t)h->upper - (u_int32_t)h->lower in __bt_split()
233 h->linp[skip] = h->upper -= nbytes; in __bt_split()
239 h->linp[skip] = h->upper -= nbytes; in __bt_split()
264 h->linp[skip] = h->upper -= nbytes; in __bt_split()
282 h->linp[skip] = h->upper -= nbytes; in __bt_split()
356 r->upper = t->bt_psize; in bt_page()
395 l->upper = t->bt_psize; in bt_page()
463 l->upper = r->upper = t->bt_psize; in bt_root()
[all …]

12345678910>>...77