Home
last modified time | relevance | path

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

12345678910>>...67

/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/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/share/examples/drivers/
H A Dmake_pseudo_driver.sh35 UPPER=`echo ${1} |tr "[:lower:]" "[:upper:]"`
49 rm ${TOP}/conf/files.${UPPER}
50 rm ${TOP}/i386/conf/${UPPER}
61 echo ${TOP}/conf/files.${UPPER}
62 echo ${TOP}/i386/conf/${UPPER}
71 cat >${TOP}/conf/files.${UPPER} <<DONE
75 cat >${TOP}/i386/conf/${UPPER} <<DONE
76 # Configuration file for kernel type: ${UPPER}
78 files "${TOP}/conf/files.${UPPER}"
82 ident ${UPPER}
[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()
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/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
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
H A Dng_car.451 .Bl -tag -width ".Va upper"
52 .It Va upper
53 Hook leading to upper layer protocols.
59 .Va upper
68 .Va upper
195 connect fxp0: fxp0_car: upper upper
/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/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/
H A Dxmmintrin.h219 floating-point) values of A and B; the upper three SPFP values are
230 (from the upper double values) we splat the lower double in _mm_add_ss()
235 /* Then we merge the lower float result with the original upper in _mm_add_ss()
252 (from the upper double values) we splat the lower double in _mm_sub_ss()
257 /* Then we merge the lower float result with the original upper in _mm_sub_ss()
274 (from the upper double values) we splat the lower double in _mm_mul_ss()
279 /* Then we merge the lower float result with the original upper in _mm_mul_ss()
296 (from the upper double values) we splat the lower double in _mm_div_ss()
301 /* Then we merge the lower float result with the original upper in _mm_div_ss()
317 * (from the upper double values) we splat the lower double in _mm_sqrt_ss()
[all …]
/freebsd/contrib/bsnmp/snmp_mibII/
H A DmibII_ifstack.c36 mib_ifstack_create(const struct mibif *lower, const struct mibif *upper) in mib_ifstack_create() argument
44 stack->index.subs[0] = upper ? upper->index : 0; in mib_ifstack_create()
55 mib_ifstack_delete(const struct mibif *lower, const struct mibif *upper) in mib_ifstack_delete() argument
60 if (stack->index.subs[0] == (upper ? upper->index : 0) && in mib_ifstack_delete()

12345678910>>...67