Home
last modified time | relevance | path

Searched refs:GE (Results 1 – 25 of 453) sorted by relevance

12345678910>>...19

/netbsd-src/sys/external/isc/libsodium/dist/src/libsodium/sodium/
H A Dcodecs.c112 #define GE(x, y) (GT(y, x) ^ 0xFF) macro
114 #define LE(x, y) GE(y, x)
120 (GE(x, 26) & LT(x, 52) & (x + ('a' - 26))) | in b64_byte_to_char()
121 (GE(x, 52) & LT(x, 62) & (x + ('0' - 52))) | (EQ(x, 62) & '+') | in b64_byte_to_char()
129 (GE(c, 'A') & LE(c, 'Z') & (c - 'A')) | in b64_char_to_byte()
130 (GE(c, 'a') & LE(c, 'z') & (c - ('a' - 26))) | in b64_char_to_byte()
131 (GE(c, '0') & LE(c, '9') & (c - ('0' - 52))) | (EQ(c, '+') & 62) | in b64_char_to_byte()
141 (GE(x, 26) & LT(x, 52) & (x + ('a' - 26))) | in b64_byte_to_urlsafe_char()
142 (GE(x, 52) & LT(x, 62) & (x + ('0' - 52))) | (EQ(x, 62) & '-') | in b64_byte_to_urlsafe_char()
150 (GE(c, 'A') & LE(c, 'Z') & (c - 'A')) | in b64_urlsafe_char_to_byte()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Utils/
H A DARMBaseInfo.h41 GE, // Greater than or equal Greater than or equal enumerator
61 case GE: return LT; in getOppositeCondition()
62 case LT: return GE; in getOppositeCondition()
80 case ARMCC::GE: return ARMCC::LE; in getSwappedCondition()
83 case ARMCC::LE: return ARMCC::GE; in getSwappedCondition()
158 case ARMCC::GE: return "ge"; in ARMCondCodeToString()
181 .Case("ge", ARMCC::GE) in ARMCondCodeFromString()
/netbsd-src/external/apache2/argon2/dist/phc-winner-argon2/src/
H A Dencoding.c76 #define GE(x, y) (GT(y, x) ^ 0xFF) macro
78 #define LE(x, y) GE(y, x)
85 (GE(x, 26) & LT(x, 52) & (x + ('a' - 26))) | in b64_byte_to_char()
86 (GE(x, 52) & LT(x, 62) & (x + ('0' - 52))) | (EQ(x, 62) & '+') | in b64_byte_to_char()
97 x = (GE(c, 'A') & LE(c, 'Z') & (c - 'A')) | in b64_char_to_byte()
98 (GE(c, 'a') & LE(c, 'z') & (c - ('a' - 26))) | in b64_char_to_byte()
99 (GE(c, '0') & LE(c, '9') & (c - ('0' - 52))) | (EQ(c, '+') & 62) | in b64_char_to_byte()
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/bfin/
H A Dc_dsp32alu_search.s18 ( R0 , R1 ) = SEARCH R2 (GE);
41 ( R4 , R7 ) = SEARCH R2 (GE);
61 ( R0 , R7 ) = SEARCH R6 (GE);
/netbsd-src/lib/libcrypt/
H A Dcrypt-argon2.c85 #define GE(x, y) (GT(y, x) ^ 0xFF) in b64_char_to_byte()
87 #define LE(x, y) GE(y, x) in b64_char_to_byte()
94 x = (GE(c, 'A') & LE(c, 'Z') & (c - 'A')) | in b64_char_to_byte()
95 (GE(c, 'a') & LE(c, 'z') & (c - ('a' - 26))) |
96 (GE(c, '0') & LE(c, '9') & (c - ('0' - 52))) | (EQ(c, '+') & 62) |
80 #define GE( global() macro
/netbsd-src/external/bsd/pcc/dist/pcc/cc/cpp/
H A Dcpy.y86 %term EQ NE LE GE LS RS
100 %binary '<' '>' LE GE
140 | e GE e
H A Dcpc.c149 qloop(elrs, n1, '<', '>', LE, GE); in eget()
303 case GE: n1->nd_val = n1->nd_val >= n2->nd_val; break; in eval()
315 case GE: n1->nd_uval = n1->nd_uval >= n2->nd_uval; break; in eval()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Djump.cc505 case GE: in reverse_condition()
508 return GE; in reverse_condition()
552 case GE: in reverse_condition_maybe_unordered()
565 return GE; in reverse_condition_maybe_unordered()
598 case GE: in swap_condition()
603 return GE; in swap_condition()
645 case GE: in unsigned_condition()
667 case GE: in signed_condition()
675 return GE; in signed_condition()
709 if (code2 == LE || code2 == LEU || code2 == GE || code2 == GEU in comparison_dominates_p()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Djump.c505 case GE: in reverse_condition()
508 return GE; in reverse_condition()
552 case GE: in reverse_condition_maybe_unordered()
565 return GE; in reverse_condition_maybe_unordered()
598 case GE: in swap_condition()
603 return GE; in swap_condition()
645 case GE: in unsigned_condition()
667 case GE: in signed_condition()
675 return GE; in signed_condition()
709 if (code2 == LE || code2 == LEU || code2 == GE || code2 == GEU in comparison_dominates_p()
[all …]
/netbsd-src/external/lgpl3/gmp/dist/demos/calc/
H A Dcalc.h81 GE = 282, /* GE */ enumerator
116 #define GE 282 macro
/netbsd-src/usr.bin/m4/
H A Dparser.y38 %left '<' LE '>' GE
70 | expr GE expr { $$ = $1 >= $3; }
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTX.h33 GE enumerator
155 GE, enumerator
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/mmix/
H A Dpredicates.md21 ;; LE and GE are further lowered by the cbranchdf4 pattern.
42 && (code == NE || code == EQ || code == GE || code == GT
83 && (code == NE || code == EQ || code == GE || code == GT
86 && (code == NE || code == EQ || code == GE || code == GT
/netbsd-src/external/gpl3/gcc/dist/gcc/config/mmix/
H A Dpredicates.md21 ;; LE and GE are further lowered by the cbranchdf4 pattern.
42 && (code == NE || code == EQ || code == GE || code == GT
83 && (code == NE || code == EQ || code == GE || code == GT
86 && (code == NE || code == EQ || code == GE || code == GT
/netbsd-src/usr.bin/tset/
H A Dmap.c56 #define GE (GT | EQ) macro
204 case GE: in mapped()
/netbsd-src/external/gpl3/binutils/dist/gold/
H A Dyyscript.h70 GE = 271, /* GE */ enumerator
182 #define GE 271 macro
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Dkirkwood-mv88f6281gtw-ge.dts3 * Marvell 88F6281 GTW GE Board
18 model = "Marvell 88F6281 GTW GE Board";
/netbsd-src/external/gpl3/binutils.old/dist/gold/
H A Dyyscript.h70 GE = 271, /* GE */ enumerator
182 #define GE 271 macro
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
H A DAArch64GlobalISelUtils.cpp112 CondCode = AArch64CC::GE; in changeFCMPPredToAArch64CC()
166 CondCode2 = AArch64CC::GE; in changeVectorFCMPPredToAArch64CC()
/netbsd-src/external/gpl3/binutils.old/dist/ld/
H A Dldgram.h73 GE = 274, /* GE */ enumerator
213 #define GE 274 macro
/netbsd-src/tools/m4/bootstrap/
H A Dparser.h8 #define GE 264 macro
/netbsd-src/external/gpl3/binutils/dist/ld/
H A Dldgram.h74 GE = 275, /* GE */ enumerator
218 #define GE 275 macro
/netbsd-src/external/gpl3/gcc/dist/gcc/config/nds32/
H A Dnds32-md-auxiliary.cc97 case GE: in nds32_inverse_cond_code()
100 return GE; in nds32_inverse_cond_code()
119 case GE: in nds32_cond_code_str()
505 case GE: in nds32_expand_cbranch()
514 if (code == GE) in nds32_expand_cbranch()
744 case GE: in nds32_expand_cstore()
756 if (code == GE) in nds32_expand_cstore()
774 if (code == GE) in nds32_expand_cstore()
891 case GE: in nds32_expand_float_cbranch()
968 case GE: in nds32_expand_float_cstore()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/nds32/
H A Dnds32-md-auxiliary.c97 case GE: in nds32_inverse_cond_code()
100 return GE; in nds32_inverse_cond_code()
119 case GE: in nds32_cond_code_str()
505 case GE: in nds32_expand_cbranch()
514 if (code == GE) in nds32_expand_cbranch()
744 case GE: in nds32_expand_cstore()
756 if (code == GE) in nds32_expand_cstore()
774 if (code == GE) in nds32_expand_cstore()
891 case GE: in nds32_expand_float_cbranch()
968 case GE: in nds32_expand_float_cstore()
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Dbfin-parse.h161 GE = 362, /* GE */ enumerator
340 #define GE 362 macro

12345678910>>...19