HomeSort by: relevance | last modified time | path
    Searched refs:LE (Results 1 - 25 of 372) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/tools/m4/bootstrap/
parser.h 7 #define LE 263
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
LineEntry.h 31 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);
LineTable.h 187 void push(const LineEntry &LE) {
188 Lines.push_back(LE);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFCompileUnit.h 23 const DWARFSection *AOS, const DWARFSection &LS, bool LE,
26 LS, LE, IsDWO, UnitVector) {}
DWARFTypeUnit.h 31 const DWARFSection &LS, bool LE, bool IsDWO,
34 LS, LE, IsDWO, UnitVector) {}
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Utils/
ARMBaseInfo.h 44 LE, // Less than or equal <, ==, or unordered
63 case GT: return LE;
64 case LE: return GT;
80 case ARMCC::GE: return ARMCC::LE;
83 case ARMCC::LE: return ARMCC::GE;
161 case ARMCC::LE: return "le";
184 .Case("le", ARMCC::LE)
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/MCTargetDesc/
ARCInfo.h 37 LE = 0xc,
  /src/external/bsd/kyua-cli/dist/utils/logging/
macros.hpp 50 #define LE(message) utils::logging::log(utils::logging::level_error, \
  /src/external/bsd/pcc/dist/pcc/f77/fcom/
scjdefs.h 27 #define P2LE LE
  /src/external/lgpl3/gmp/dist/demos/calc/
calc.h 80 LE = 281, /* LE */
115 #define LE 281
calclex.l 76 "<=" { return LE; }
  /src/usr.bin/m4/
parser.y 42 %left '<' LE '>' GE
75 | expr LE expr { $$ = $1 <= $3; }
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
EvaluatedExprVisitor.h 92 void VisitLambdaExpr(PTR(LambdaExpr) LE) {
94 for (LambdaExpr::const_capture_init_iterator I = LE->capture_init_begin(),
95 E = LE->capture_init_end();
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 186 static std::string swapFPIntParams(FPParamVariant PV, Module *M, bool LE,
203 if (LE) {
213 if (LE) {
223 if (LE) {
237 if (LE) {
262 bool LE = TM.isLittleEndian();
285 AsmText += swapFPIntParams(PV, M, LE, true);
300 if (LE) {
310 if (LE) {
320 if (LE) {
    [all...]
MipsAsmPrinter.h 101 unsigned FPReg2, bool LE);
104 Mips16HardFloatInfo::FPParamVariant, bool LE,
108 Mips16HardFloatInfo::FPReturnVariant, bool LE);
MipsAsmPrinter.cpp 908 unsigned FPReg2, bool LE) {
909 if (!LE) {
920 bool LE, bool ToFP) {
929 EmitMovFPIntPair(STI, MovOpc, Mips::A0, Mips::A1, Mips::F12, Mips::F14, LE);
933 EmitMovFPIntPair(STI, MovOpc, Mips::A2, Mips::A3, Mips::F14, Mips::F15, LE);
936 EmitMovFPIntPair(STI, MovOpc, Mips::A0, Mips::A1, Mips::F12, Mips::F13, LE);
939 EmitMovFPIntPair(STI, MovOpc, Mips::A0, Mips::A1, Mips::F12, Mips::F13, LE);
940 EmitMovFPIntPair(STI, MovOpc, Mips::A2, Mips::A3, Mips::F14, Mips::F15, LE);
943 EmitMovFPIntPair(STI, MovOpc, Mips::A0, Mips::A1, Mips::F12, Mips::F13, LE);
953 bool LE) {
    [all...]
  /src/external/gpl3/gdb/dist/sim/testsuite/bfin/
c_dsp32alu_search.s 20 ( R4 , R5 ) = SEARCH R0 (LE);
39 ( R2 , R1 ) = SEARCH R3 (LE);
63 ( R2 , R5 ) = SEARCH R4 (LE);
  /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/
c_dsp32alu_search.s 20 ( R4 , R5 ) = SEARCH R0 (LE);
39 ( R2 , R1 ) = SEARCH R3 (LE);
63 ( R2 , R5 ) = SEARCH R4 (LE);
  /src/external/apache2/llvm/dist/clang/tools/clang-repl/
ClangRepl.cpp 81 llvm::LineEditor LE("clang-repl");
82 // FIXME: Add LE.setListCompleter
83 while (llvm::Optional<std::string> Line = LE.readLine()) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
ErlangGCPrinter.cpp 110 LE = MD.live_end(PI);
111 LI != LE; ++LI) {
  /src/sys/external/isc/libsodium/dist/src/libsodium/sodium/
codecs.c 114 #define LE(x, y) GE(y, x)
129 (GE(c, 'A') & LE(c, 'Z') & (c - 'A')) |
130 (GE(c, 'a') & LE(c, 'z') & (c - ('a' - 26))) |
131 (GE(c, '0') & LE(c, '9') & (c - ('0' - 52))) | (EQ(c, '+') & 62) |
150 (GE(c, 'A') & LE(c, 'Z') & (c - 'A')) |
151 (GE(c, 'a') & LE(c, 'z') & (c - ('a' - 26))) |
152 (GE(c, '0') & LE(c, '9') & (c - ('0' - 52))) | (EQ(c, '-') & 62) |
  /src/external/bsd/pcc/dist/pcc/cc/cpp/
cpy.y 86 %term EQ NE LE GE LS RS
100 %binary '<' '>' LE GE
138 | e LE e
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTX.h 31 LE,
153 LE,
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
InstrProfWriter.cpp 51 : IsFDOStream(true), OS(FD), LE(FD, support::little) {}
53 : IsFDOStream(false), OS(STR), LE(STR, support::little) {}
56 void write(uint64_t V) { LE.write<uint64_t>(V); }
88 support::endian::Writer LE;
116 endian::Writer LE(Out, little);
119 LE.write<offset_type>(N);
131 LE.write<offset_type>(M);
143 endian::Writer LE(Out, little);
151 LE.write<uint64_t>(ProfileData.first); // Function hash
152 LE.write<uint64_t>(ProfRecord.Counts.size())
    [all...]
  /src/usr.bin/xlint/lint1/
op.h 87 LE,

Completed in 28 milliseconds

1 2 3 4 5 6 7 8 91011>>