Home
last modified time | relevance | path

Searched refs:LE (Results 1 – 25 of 691) sorted by relevance

12345678910>>...28

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp186 static std::string swapFPIntParams(FPParamVariant PV, Module *M, bool LE, in swapFPIntParams() argument
203 if (LE) { in swapFPIntParams()
213 if (LE) { in swapFPIntParams()
223 if (LE) { in swapFPIntParams()
237 if (LE) { in swapFPIntParams()
262 bool LE = TM.isLittleEndian(); in assureFPCallStub() local
285 AsmText += swapFPIntParams(PV, M, LE, true); in assureFPCallStub()
300 if (LE) { in assureFPCallStub()
310 if (LE) { in assureFPCallStub()
320 if (LE) { in assureFPCallStub()
[all …]
H A DMipsAsmPrinter.cpp908 unsigned FPReg2, bool LE) { in EmitMovFPIntPair() argument
909 if (!LE) { in EmitMovFPIntPair()
920 bool LE, bool ToFP) { in EmitSwapFPIntParams() argument
929 EmitMovFPIntPair(STI, MovOpc, Mips::A0, Mips::A1, Mips::F12, Mips::F14, LE); in EmitSwapFPIntParams()
933 EmitMovFPIntPair(STI, MovOpc, Mips::A2, Mips::A3, Mips::F14, Mips::F15, LE); in EmitSwapFPIntParams()
936 EmitMovFPIntPair(STI, MovOpc, Mips::A0, Mips::A1, Mips::F12, Mips::F13, LE); in EmitSwapFPIntParams()
939 EmitMovFPIntPair(STI, MovOpc, Mips::A0, Mips::A1, Mips::F12, Mips::F13, LE); in EmitSwapFPIntParams()
940 EmitMovFPIntPair(STI, MovOpc, Mips::A2, Mips::A3, Mips::F14, Mips::F15, LE); in EmitSwapFPIntParams()
943 EmitMovFPIntPair(STI, MovOpc, Mips::A0, Mips::A1, Mips::F12, Mips::F13, LE); in EmitSwapFPIntParams()
953 bool LE) { in EmitSwapFPIntRetval() argument
[all …]
H A DMipsAsmPrinter.h101 unsigned FPReg2, bool LE);
104 Mips16HardFloatInfo::FPParamVariant, bool LE,
108 Mips16HardFloatInfo::FPReturnVariant, bool LE);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Utils/
H A DARMBaseInfo.h44 LE, // Less than or equal <, ==, or unordered enumerator
63 case GT: return LE; in getOppositeCondition()
64 case LE: return GT; in getOppositeCondition()
80 case ARMCC::GE: return ARMCC::LE; in getSwappedCondition()
83 case ARMCC::LE: return ARMCC::GE; in getSwappedCondition()
161 case ARMCC::LE: return "le"; in ARMCondCodeToString()
184 .Case("le", ARMCC::LE) in ARMCondCodeFromString()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
H A DLineEntry.h31 inline raw_ostream &operator<<(raw_ostream &OS, const LineEntry &LE) {
32 return OS << "addr=" << HEX64(LE.Addr) << ", file=" << format("%3u", LE.File)
33 << ", line=" << format("%3u", LE.Line);
/netbsd-src/share/i18n/esdb/UTF/
H A DMakefile.inc12 UTF-16LE-mod= UTF1632
13 UTF-16LE-var= utf16,little,force
18 UTF-32LE-mod= UTF1632
19 UTF-32LE-var= utf32,little,force
H A DUTF.part7 16LE
10 32LE
H A DUTF.alias6 16LE utf-16le ucs-2le unicodelittle
9 32LE utf-32le ucs-4le
/netbsd-src/sys/external/isc/libsodium/dist/src/libsodium/sodium/
H A Dcodecs.c114 #define LE(x, y) GE(y, x) macro
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()
150 (GE(c, 'A') & LE(c, 'Z') & (c - 'A')) | in b64_urlsafe_char_to_byte()
151 (GE(c, 'a') & LE(c, 'z') & (c - ('a' - 26))) | in b64_urlsafe_char_to_byte()
152 (GE(c, '0') & LE(c, '9') & (c - ('0' - 52))) | (EQ(c, '-') & 62) | in b64_urlsafe_char_to_byte()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp51 : IsFDOStream(true), OS(FD), LE(FD, support::little) {} in ProfOStream()
53 : IsFDOStream(false), OS(STR), LE(STR, support::little) {} in ProfOStream()
56 void write(uint64_t V) { LE.write<uint64_t>(V); } in write()
88 support::endian::Writer LE; member in llvm::ProfOStream
116 endian::Writer LE(Out, little); in EmitKeyDataLength() local
119 LE.write<offset_type>(N); in EmitKeyDataLength()
131 LE.write<offset_type>(M); in EmitKeyDataLength()
143 endian::Writer LE(Out, little); in EmitData() local
151 LE.write<uint64_t>(ProfileData.first); // Function hash in EmitData()
152 LE.write<uint64_t>(ProfRecord.Counts.size()); in EmitData()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp193 BasicBlock::iterator LI = L->begin(), LE = L->end(); in diff() local
197 assert(LI != LE && RI != R->end()); in diff()
213 } while (LI != LE); // This is sufficient: we can't get equality of in diff()
218 for (LI = L->begin(), RI = R->begin(); LI != LE; ++LI, ++RI) in diff()
495 LI = L->arg_begin(), LE = L->arg_end(), in diff() local
497 LI != LE && RI != RE; ++LI, ++RI) in diff()
519 BasicBlock::iterator LE = LStart->getParent()->end(); in runBlockDiff() local
522 unsigned NL = std::distance(LStart, LE); in runBlockDiff()
550 for (BasicBlock::iterator LI = LStart; LI != LE; ++LI, ++Index) { in runBlockDiff()
596 assert(LI != LE && RI != RE); in runBlockDiff()
[all …]
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/bfin/
H A Dc_dsp32alu_search.s20 ( R4 , R5 ) = SEARCH R0 (LE);
39 ( R2 , R1 ) = SEARCH R3 (LE);
63 ( R2 , R5 ) = SEARCH R4 (LE);
/netbsd-src/external/gpl2/groff/dist/contrib/mm/examples/
H A DML71 .LE
109 .LE
169 .LE
/netbsd-src/external/apache2/llvm/dist/llvm/lib/LineEditor/
H A DLineEditor.cpp99 LineEditor *LE; member
115 return Data->LE->getPrompt().c_str(); in ElGetPromptFn()
145 LineEditor::CompletionAction Action = Data->LE->getCompletionAction( in ElCompletionFn()
182 OS << Data->LE->getPrompt() in ElCompletionFn()
205 Data->LE = this; in LineEditor()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DEvaluatedExprVisitor.h92 void VisitLambdaExpr(PTR(LambdaExpr) LE) { in VisitLambdaExpr() argument
94 for (LambdaExpr::const_capture_init_iterator I = LE->capture_init_begin(), in VisitLambdaExpr()
95 E = LE->capture_init_end(); in VisitLambdaExpr()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DOnDiskHashTable.h153 endian::Writer LE(Out, little); in Emit()
182 LE.write<uint16_t>(B.Length); in Emit()
187 LE.write<typename Info::hash_value_type>(I->Hash); in Emit()
214 LE.write<uint8_t>(0); in Emit()
217 LE.write<offset_type>(NumBuckets); in Emit()
218 LE.write<offset_type>(NumEntries); in Emit()
220 LE.write<offset_type>(Buckets[I].Off); in Emit()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFCompileUnit.h23 const DWARFSection *AOS, const DWARFSection &LS, bool LE, in DWARFCompileUnit() argument
26 LS, LE, IsDWO, UnitVector) {} in DWARFCompileUnit()
H A DDWARFTypeUnit.h31 const DWARFSection &LS, bool LE, bool IsDWO, in DWARFTypeUnit() argument
34 LS, LE, IsDWO, UnitVector) {} in DWARFTypeUnit()
/netbsd-src/lib/libcrypt/
H A Dcrypt-argon2.c87 #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) |
82 #define LE( global() macro
/netbsd-src/external/apache2/argon2/dist/phc-winner-argon2/src/
H A Dencoding.c78 #define LE(x, y) GE(y, x) macro
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/bsd/pcc/dist/pcc/cc/cpp/
H A Dcpy.y86 %term EQ NE LE GE LS RS
100 %binary '<' '>' LE GE
138 | e LE e
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Djump.cc504 return LE; in reverse_condition()
509 case LE: in reverse_condition()
556 case LE: in reverse_condition_maybe_unordered()
569 return LE; in reverse_condition_maybe_unordered()
599 return LE; in swap_condition()
602 case LE: in swap_condition()
649 case LE: in unsigned_condition()
669 case LE: in signed_condition()
679 return LE; 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.c504 return LE; in reverse_condition()
509 case LE: in reverse_condition()
556 case LE: in reverse_condition_maybe_unordered()
569 return LE; in reverse_condition_maybe_unordered()
599 return LE; in swap_condition()
602 case LE: in swap_condition()
649 case LE: in unsigned_condition()
669 case LE: in signed_condition()
679 return LE; 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.h80 LE = 281, /* LE */ enumerator
115 #define LE 281 macro
/netbsd-src/usr.bin/m4/
H A Dparser.y38 %left '<' LE '>' GE
69 | expr LE expr { $$ = $1 <= $3; }

12345678910>>...28