Searched refs:upper (Results 1 - 25 of 248) sorted by relevance

12345678910

/openbsd-current/gnu/usr.bin/perl/t/re/
H A Dpat_special_cc.t32 my $upper= uc($special);
40 my $plain_u= $ch=~/$upper/ ? 1 : 0;
44 my $cc_u= $ch=~/[$upper]/ ? 1 : 0;
50 is(join(" | ",@plain_complement_failed),"", "Check that /$special/ and /$upper/ are complements (ord-plain-plain_u)");
51 is(join(" | ",@cc_complement_failed),"", "Check that /[$special]/ and /[$upper]/ are complements (ord-cc-cc_u)");
/openbsd-current/gnu/usr.bin/gcc/gcc/config/m68k/
H A Dfpgnulib.c66 #define EXPD(fp) (((fp.l.upper) >> 20L) & 0x7FFL)
67 #define SIGND(fp) ((fp.l.upper) & SIGNBIT)
68 #define MANTD(fp) (((((fp.l.upper) & 0xFFFFF) | HIDDEND) << 10) | \
70 #define MANTDMASK 0xFFFFF /* mask of upper part */
77 #define EXPX(fp) (((fp.l.upper) >> 16) & EXPXMASK)
78 #define SIGNX(fp) ((fp.l.upper) & SIGNBIT)
79 #define MANTXMASK 0x7FFFFFFF /* mask of upper part */
85 long upper; member in struct:double_long::__anon5930
100 long upper; member in struct:long_double_long::__anon5931
118 dl.l.upper
[all...]
/openbsd-current/gnu/llvm/llvm/utils/
H A Drsp_bisect.py125 upper = num_files_in_rsp
126 while lower != upper - 1:
127 assert lower < upper - 1
128 mid = int((lower + upper) / 2)
129 assert lower != mid and mid != upper
130 print('Trying {} ({}-{})'.format(mid, lower, upper))
136 upper = mid
137 return upper
/openbsd-current/gnu/llvm/libcxx/utils/
H A Dgenerate_escaped_output_table.py27 upper: int = -1
38 r"^(?P<lower>[0-9A-F]{4,6})(?:\.\.(?P<upper>[0-9A-F]{4,6}))?\s*;\s*(?P<prop>\w+)"
58 lower_str, upper_str, result.prop = m.group("lower", "upper", "prop")
60 result.upper = result.lower
62 result.upper = int(upper_str, base=16)
84 and x.lower <= result[-1].upper + 1
86 result[-1].upper = max(result[-1].upper, x.upper)
125 /// - bits [11, 31] The lower bound code point of the range. The upper boun
[all...]
H A Dgenerate_extended_grapheme_cluster_table.py27 upper: int = -1
39 r"^(?P<lower>[0-9A-F]{4,5})(?:\.\.(?P<upper>[0-9A-F]{4,5}))?\s*;\s*(?P<prop>\w+)"
46 lower_str, upper_str, result.prop = m.group("lower", "upper", "prop")
48 result.upper = result.lower
50 result.upper = int(upper_str, base=16)
69 and result[-1].upper + 1 == x.lower
71 result[-1].upper = x.upper
105 /// - bits [11, 31] The lower bound code point of the range. The upper bound of
120 // The algorithm searches for the upper boun
[all...]
/openbsd-current/gnu/gcc/gcc/config/m68k/
H A Dfpgnulib.c66 #define EXPD(fp) (((fp.l.upper) >> 20L) & 0x7FFL)
67 #define SIGND(fp) ((fp.l.upper) & SIGNBIT)
68 #define MANTD(fp) (((((fp.l.upper) & 0xFFFFF) | HIDDEND) << 10) | \
70 #define MANTDMASK 0xFFFFFL /* mask of upper part */
77 #define EXPX(fp) (((fp.l.upper) >> 16) & EXPXMASK)
78 #define SIGNX(fp) ((fp.l.upper) & SIGNBIT)
79 #define MANTXMASK 0x7FFFFFFFL /* mask of upper part */
85 long upper; member in struct:double_long::__anon163
100 long upper; member in struct:long_double_long::__anon164
130 && ((dl.l.upper
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/config/os/generic/
H A Dctype_base.h47 static const mask upper = 1 << 0; member in struct:ctype_base
/openbsd-current/gnu/gcc/libstdc++-v3/config/os/solaris/solaris2.5/
H A Dctype_base.h47 static const mask upper = 01; member in struct:ctype_base
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/generic/
H A Dctype_base.h44 static const mask upper = 1 << 0; member in struct:ctype_base
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/solaris/solaris2.5/
H A Dctype_base.h44 static const mask upper = 01; member in struct:ctype_base
/openbsd-current/gnu/usr.bin/gcc/gcc/f/
H A Dsrc.h57 #define FFESRC_CASE_MATCH_INIT(upper, lower, match, no_match) \
58 upper: if (!ffesrc_ok_match_init_upper_) goto no_match; \
63 #define FFESRC_CASE_MATCH_NONINIT(upper, lower, match, no_match) \
64 upper: if (!ffesrc_ok_match_noninit_upper_) goto no_match; \
107 /* Translate internal character (upper/lower) to source form in an
/openbsd-current/sbin/iked/
H A Dgenmap.sh18 TOK=$(echo ${2} | tr "[:lower:]" "[:upper:]")
19 tok=$(echo ${2} | tr "[:upper:]" "[:lower:]")
39 lower=$(echo $i | tr "[:upper:]" "[:lower:]")
40 upper=$(echo $i | tr "[:lower:]" "[:upper:]")
44 X="${TOK}_${upper}"
/openbsd-current/gnu/gcc/libstdc++-v3/config/os/bsd/darwin/
H A Dctype_base.h49 static const mask upper = _CTYPE_U; member in struct:ctype_base
62 static const mask upper = _U; member in struct:ctype_base
/openbsd-current/gnu/gcc/libstdc++-v3/config/os/bsd/freebsd/
H A Dctype_base.h51 static const mask upper = _CTYPE_U; member in struct:ctype_base
64 static const mask upper = _U; member in struct:ctype_base
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/bsd/freebsd/
H A Dctype_base.h48 static const mask upper = _CTYPE_U; member in struct:ctype_base
61 static const mask upper = _U; member in struct:ctype_base
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/aix/
H A Dctype_base.h44 static const mask upper = _ISUPPER; member in struct:ctype_base
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/djgpp/
H A Dctype_base.h46 static const mask upper = __dj_ISUPPER; // UPPERCASE member in struct:ctype_base
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/gnu-linux/
H A Dctype_base.h44 static const mask upper = _ISupper; member in struct:ctype_base
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/hpux/
H A Dctype_base.h44 static const mask upper = _ISUPPER; member in struct:ctype_base
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/irix/irix6.5/
H A Dctype_base.h44 static const mask upper = _ISupper; member in struct:ctype_base
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/solaris/solaris2.6/
H A Dctype_base.h45 static const mask upper = _ISUPPER; member in struct:ctype_base
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/solaris/solaris2.7/
H A Dctype_base.h46 static const mask upper = _ISUPPER; member in struct:ctype_base
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dfloatlib.c68 #define EXPD(fp) (((fp.l.upper) >> 20) & 0x7FF)
69 #define SIGND(fp) ((fp.l.upper) & SIGNBIT)
70 #define MANTD(fp) (((((fp.l.upper) & 0xFFFFF) | HIDDEND) << 10) | \
82 long upper; member in struct:double_long::__anon6196
86 long upper; member in struct:double_long::__anon6197
368 dl.l.upper = dl.l.lower = 0;
391 dl.l.upper = sign;
392 dl.l.upper |= exp << 20;
393 dl.l.upper |= (a1 >> 10) & ~HIDDEND;
405 dl.l.upper
[all...]
/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVRange.cpp33 << hexValue(RangeEntry.upper()) << "]\n";
36 RangesTree.insert(RangeEntry.lower(), RangeEntry.upper(),
112 if (LowerAddress >= RangeEntry.lower() && UpperAddress < RangeEntry.upper())
121 UpperAddress == RangeEntry.upper())
133 // If the lower address is the same, use the upper address value in
136 return lhs.upper() < rhs.upper();
153 OS << format("[0x%08x,0x%08x] ", RangeEntry.lower(), RangeEntry.upper())
/openbsd-current/regress/lib/libcrypto/bn/
H A Dbn_isqrt.c169 BIGNUM *n, *n_sqr, *lower, *upper, *testcase, *isqrt; local
180 if ((upper = BN_CTX_get(ctx)) == NULL)
181 errx(1, "upper = BN_CTX_get(ctx)");
191 /* lower = 2^LOWER_BITS, upper = 2^UPPER_BITS. */
194 if (!BN_set_bit(upper, UPPER_BITS))
195 errx(1, "BN_set_bit(upper, %d)", UPPER_BITS);
197 if (!bn_rand_in_range(n, lower, upper))
215 /* upper = 2 * n + 1 */
216 if (!BN_lshift1(upper, n))
217 errx(1, "BN_lshift1(upper,
[all...]

Completed in 709 milliseconds

12345678910