Home
last modified time | relevance | path

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

12345678910>>...92

/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/tests/sys/fs/unionfs/
H A Dunionfs_test.sh50 local upper=$1
52 # Mount upper over lower
53 atf_check mount -t unionfs ${upper} ${lower}
87 # Create upper and lower
88 unionfs_mkfs upper
90 # Mount upper over lower
91 unionfs_mount upper lower
93 atf_check touch upper/file
94 atf_check mkdir upper/dir
96 # Verify that objects were created on upper
[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/contrib/llvm-project/llvm/lib/IR/
H A DConstantFPRange.cpp20 Upper = APFloat::getInf(Sem, /*Negative=*/true); in makeEmpty()
28 Upper = APFloat::getInf(Sem, /*Negative=*/false); in makeFull()
34 return Lower.isPosInfinity() && Upper.isNegInfinity(); in isNaNOnly()
38 : Lower(Sem, APFloat::uninitialized), Upper(Sem, APFloat::uninitialized) { in ConstantFPRange()
40 Upper = APFloat::getInf(Sem, /*Negative=*/!IsFullSet); in ConstantFPRange()
47 Upper(Value.getSemantics(), APFloat::uninitialized) { in ConstantFPRange()
54 Lower = Upper = Value; in ConstantFPRange()
71 static bool isNonCanonicalEmptySet(const APFloat &Lower, const APFloat &Upper) { in isNonCanonicalEmptySet() argument
72 return strictCompare(Lower, Upper) == APFloat::cmpGreaterThan && in isNonCanonicalEmptySet()
73 !(Lower.isInfinity() && Upper.isInfinity()); in isNonCanonicalEmptySet()
[all …]
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
47 Upper(Lower) {} in ConstantRange()
50 : Lower(std::move(V)), Upper(Lower + 1) {} in ConstantRange()
53 : Lower(std::move(L)), Upper(std::move(U)) { in ConstantRange()
54 assert(Lower.getBitWidth() == Upper.getBitWidth() && in ConstantRange()
56 assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) && in ConstantRange()
57 "Lower == Upper, but they aren't min or max value!"); in ConstantRange()
73 // and the upper bound as a non-negative one. in fromKnownBits()
74 APInt Lower = Known.getMinValue(), Upper = Known.getMaxValue(); in fromKnownBits() local
[all …]
/freebsd/contrib/llvm-project/libc/src/__support/
H A Dfreetrie.h31 /// halves: a lower and an upper. The node itself holds a free list of some size
43 /// free lists. The lower and upper subtrie's contain the lower and upper half
45 /// this node's free list and the contents of the lower and upper subtries.
50 /// The child subtrie covering the upper half of this subtrie's size range.
52 Node *upper; variable
73 /// @returns The upper half of the size range.
74 LIBC_INLINE SizeRange upper() const { return {min + width / 2, width / 2}; } in upper() function
137 cur = &(*cur)->upper; in push()
138 cur_range = cur_range.upper(); in push()
146 node->lower = node->upper = nullptr; in push()
[all …]
H A Dfreetrie.cpp23 while (leaf->lower || leaf->upper) in remove()
24 leaf = leaf->lower ? leaf->lower : leaf->upper; in remove()
40 new_node->upper = node->upper; in remove()
50 node->parent->lower == node ? node->parent->lower : node->parent->upper; in replace_node()
60 if (node->upper) in replace_node()
61 node->upper->parent = new_node; in replace_node()
/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/contrib/wpa/src/utils/
H A Dbitfield.c127 size_t i, upper; in bitfield_union_in_place() local
132 upper = (b->max_bits + 7) / 8; in bitfield_union_in_place()
134 for (i = 0 ; i < upper; i++) in bitfield_union_in_place()
169 size_t i, upper; in bitfield_intersect_in_place() local
175 upper = (a->max_bits + 7) / 8; in bitfield_intersect_in_place()
177 upper = (b->max_bits + 7) / 8; in bitfield_intersect_in_place()
180 for (i = 0 ; i < upper; i++) in bitfield_intersect_in_place()
183 upper = (a->max_bits + 7) / 8; in bitfield_intersect_in_place()
184 for (; i < upper; i++) in bitfield_intersect_in_place()
193 size_t i, upper; in bitfield_is_subset() local
[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 */
/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/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()
561 // upper-lower can exceed the limit of signed type in __kmp_dist_for_static_init()
598 T upper = *pupper; in __kmp_dist_for_static_init() local
[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/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
/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/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;
74 LLVM_DEBUG(dbgs() << "Upper bound 0x"); in rangesAreValid()
80 if (I->Upper < I->Lower) { in rangesAreValid()
81 LLVM_DEBUG(dbgs() << "Upper bound 0x"); in rangesAreValid()
84 LLVM_DEBUG(dbgs().write_hex(I->Upper) << "\n"); in rangesAreValid()
87 Prev = I->Upper; in rangesAreValid()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVRange.h28 LVAddress Upper = 0; variable
36 : Lower(LowerAddress), Upper(UpperAddress), Scope(Scope) {} in LVRangeEntry()
39 RangeType upper() const { return Upper; } in upper() function
41 return LVAddressRange(lower(), upper()); in addressRange()
59 LVAddress Upper = 0; variable
73 LVAddress getUpper() const { return Upper; } in getUpper()
80 Upper = 0; in clear()
/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 …]

12345678910>>...92