| /netbsd-src/sys/external/isc/libsodium/dist/src/libsodium/sodium/ |
| H A D | codecs.c | 112 #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 D | ARMBaseInfo.h | 41 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 D | encoding.c | 76 #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 D | c_dsp32alu_search.s | 18 ( R0 , R1 ) = SEARCH R2 (GE); 41 ( R4 , R7 ) = SEARCH R2 (GE); 61 ( R0 , R7 ) = SEARCH R6 (GE);
|
| /netbsd-src/lib/libcrypt/ |
| H A D | crypt-argon2.c | 85 #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 D | cpy.y | 86 %term EQ NE LE GE LS RS 100 %binary '<' '>' LE GE 140 | e GE e
|
| H A D | cpc.c | 149 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 D | jump.cc | 505 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 D | jump.c | 505 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 D | calc.h | 81 GE = 282, /* GE */ enumerator 116 #define GE 282 macro
|
| /netbsd-src/usr.bin/m4/ |
| H A D | parser.y | 38 %left '<' LE '>' GE 70 | expr GE expr { $$ = $1 >= $3; }
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| H A D | NVPTX.h | 33 GE enumerator 155 GE, enumerator
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/mmix/ |
| H A D | predicates.md | 21 ;; 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 D | predicates.md | 21 ;; 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 D | map.c | 56 #define GE (GT | EQ) macro 204 case GE: in mapped()
|
| /netbsd-src/external/gpl3/binutils/dist/gold/ |
| H A D | yyscript.h | 70 GE = 271, /* GE */ enumerator 182 #define GE 271 macro
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
| H A D | kirkwood-mv88f6281gtw-ge.dts | 3 * Marvell 88F6281 GTW GE Board 18 model = "Marvell 88F6281 GTW GE Board";
|
| /netbsd-src/external/gpl3/binutils.old/dist/gold/ |
| H A D | yyscript.h | 70 GE = 271, /* GE */ enumerator 182 #define GE 271 macro
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64GlobalISelUtils.cpp | 112 CondCode = AArch64CC::GE; in changeFCMPPredToAArch64CC() 166 CondCode2 = AArch64CC::GE; in changeVectorFCMPPredToAArch64CC()
|
| /netbsd-src/external/gpl3/binutils.old/dist/ld/ |
| H A D | ldgram.h | 73 GE = 274, /* GE */ enumerator 213 #define GE 274 macro
|
| /netbsd-src/tools/m4/bootstrap/ |
| H A D | parser.h | 8 #define GE 264 macro
|
| /netbsd-src/external/gpl3/binutils/dist/ld/ |
| H A D | ldgram.h | 74 GE = 275, /* GE */ enumerator 218 #define GE 275 macro
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/nds32/ |
| H A D | nds32-md-auxiliary.cc | 97 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 D | nds32-md-auxiliary.c | 97 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 D | bfin-parse.h | 161 GE = 362, /* GE */ enumerator 340 #define GE 362 macro
|