Searched refs:EL (Results 1 - 25 of 38) sorted by relevance

12

/external/eigen/bench/
H A Dbasicbenchmark.cpp15 #define _GENERATE_HEADER(R,ARG,EL) << BOOST_PP_STRINGIZE(BOOST_PP_SEQ_HEAD(EL)) << "-" \
16 << BOOST_PP_STRINGIZE(BOOST_PP_SEQ_ELEM(1,EL)) << "x" \
17 << BOOST_PP_STRINGIZE(BOOST_PP_SEQ_ELEM(1,EL)) << " / "
23 #define _RUN_BENCH(R,ARG,EL) \
25 BOOST_PP_CAT(Matrix, BOOST_PP_SEQ_HEAD(EL)) (\
26 BOOST_PP_SEQ_ELEM(1,EL),BOOST_PP_SEQ_ELEM(1,EL)), BOOST_PP_SEQ_ELEM(2,EL), tries) \
/external/llvm/test/MC/Mips/
H A Dmicromips-trap-instructions.s2 # RUN: | FileCheck -check-prefix=CHECK-EL %s
12 # CHECK-EL: teq $8, $9 # encoding: [0x28,0x01,0x3c,0x00]
13 # CHECK-EL: tge $8, $9 # encoding: [0x28,0x01,0x3c,0x02]
14 # CHECK-EL: tgeu $8, $9 # encoding: [0x28,0x01,0x3c,0x04]
15 # CHECK-EL: tlt $8, $9 # encoding: [0x28,0x01,0x3c,0x08]
16 # CHECK-EL: tltu $8, $9 # encoding: [0x28,0x01,0x3c,0x0a]
17 # CHECK-EL: tne $8, $9 # encoding: [0x28,0x01,0x3c,0x0c]
18 # CHECK-EL: teqi $9, 17767 # encoding: [0xc9,0x41,0x67,0x45]
19 # CHECK-EL: tgei $9, 17767 # encoding: [0x29,0x41,0x67,0x45]
20 # CHECK-EL
[all...]
H A Dmicromips-alu-instructions.s1 # RUN: llvm-mc %s -triple=mipsel -show-encoding -mattr=micromips | FileCheck -check-prefix=CHECK-EL %s
10 # CHECK-EL: add $9, $6, $7 # encoding: [0xe6,0x00,0x10,0x49]
11 # CHECK-EL: addi $9, $6, 17767 # encoding: [0x26,0x11,0x67,0x45]
12 # CHECK-EL: addiu $9, $6, -15001 # encoding: [0x26,0x31,0x67,0xc5]
13 # CHECK-EL: addi $9, $6, 17767 # encoding: [0x26,0x11,0x67,0x45]
14 # CHECK-EL: addiu $9, $6, -15001 # encoding: [0x26,0x31,0x67,0xc5]
15 # CHECK-EL: addu $9, $6, $7 # encoding: [0xe6,0x00,0x50,0x49]
16 # CHECK-EL: sub $9, $6, $7 # encoding: [0xe6,0x00,0x90,0x49]
17 # CHECK-EL: subu $4, $3, $5 # encoding: [0xa3,0x00,0xd0,0x21]
18 # CHECK-EL
[all...]
H A Dmicromips-control-instructions.s2 # RUN: | FileCheck -check-prefix=CHECK-EL %s
12 # CHECK-EL: break # encoding: [0x00,0x00,0x07,0x00]
13 # CHECK-EL: break 7 # encoding: [0x07,0x00,0x07,0x00]
14 # CHECK-EL: break 7, 5 # encoding: [0x07,0x00,0x47,0x01]
15 # CHECK-EL: syscall # encoding: [0x00,0x00,0x7c,0x8b]
16 # CHECK-EL: syscall 396 # encoding: [0x8c,0x01,0x7c,0x8b]
17 # CHECK-EL: eret # encoding: [0x00,0x00,0x7c,0xf3]
18 # CHECK-EL: deret # encoding: [0x00,0x00,0x7c,0xe3]
19 # CHECK-EL: di # encoding: [0x00,0x00,0x7c,0x47]
20 # CHECK-EL
[all...]
H A Dmicromips-loadstore-instructions.s2 # RUN: | FileCheck -check-prefix=CHECK-EL %s
12 # CHECK-EL: lb $5, 8($4) # encoding: [0xa4,0x1c,0x08,0x00]
13 # CHECK-EL: lbu $6, 8($4) # encoding: [0xc4,0x14,0x08,0x00]
14 # CHECK-EL: lh $2, 8($4) # encoding: [0x44,0x3c,0x08,0x00]
15 # CHECK-EL: lhu $4, 8($2) # encoding: [0x82,0x34,0x08,0x00]
16 # CHECK-EL: lw $6, 4($5) # encoding: [0xc5,0xfc,0x04,0x00]
17 # CHECK-EL: sb $5, 8($4) # encoding: [0xa4,0x18,0x08,0x00]
18 # CHECK-EL: sh $2, 8($4) # encoding: [0x44,0x38,0x08,0x00]
19 # CHECK-EL: sw $5, 4($6) # encoding: [0xa6,0xf8,0x04,0x00]
20 # CHECK-EL
[all...]
H A Dmicromips-branch-instructions.s2 # RUN: | FileCheck %s -check-prefix=CHECK-EL
12 # CHECK-EL: b 1332 # encoding: [0x00,0x94,0x9a,0x02]
13 # CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00]
14 # CHECK-EL: beq $9, $6, 1332 # encoding: [0xc9,0x94,0x9a,0x02]
15 # CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00]
16 # CHECK-EL: bgez $6, 1332 # encoding: [0x46,0x40,0x9a,0x02]
17 # CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00]
18 # CHECK-EL: bgezal $6, 1332 # encoding: [0x66,0x40,0x9a,0x02]
19 # CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00]
20 # CHECK-EL
[all...]
H A Dmicromips-16-bit-instructions.s2 # RUN: FileCheck -check-prefix=CHECK-EL %s
12 # CHECK-EL: mfhi $9 # encoding: [0x09,0x46]
13 # CHECK-EL: mflo $9 # encoding: [0x49,0x46]
14 # CHECK-EL: move $25, $1 # encoding: [0x21,0x0f]
15 # CHECK-EL: jalr $9 # encoding: [0xc9,0x45]
H A Dmicromips-jump-instructions.s2 # RUN: | FileCheck %s -check-prefix=CHECK-EL
12 # CHECK-EL: j 1328 # encoding: [0x00,0xd4,0x98,0x02]
13 # CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00]
14 # CHECK-EL: jal 1328 # encoding: [0x00,0xf4,0x98,0x02]
15 # CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00]
16 # CHECK-EL: jalr $ra, $6 # encoding: [0xe6,0x03,0x3c,0x0f]
17 # CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00]
18 # CHECK-EL: jr $7 # encoding: [0x07,0x00,0x3c,0x0f]
19 # CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00]
20 # CHECK-EL
[all...]
H A Dmicromips-shift-instructions.s1 # RUN: llvm-mc %s -triple=mipsel -show-encoding -mcpu=mips32r2 -mattr=micromips | FileCheck -check-prefix=CHECK-EL %s
10 # CHECK-EL: sll $4, $3, 7 # encoding: [0x83,0x00,0x00,0x38]
11 # CHECK-EL: sllv $2, $3, $5 # encoding: [0x65,0x00,0x10,0x10]
12 # CHECK-EL: sra $4, $3, 7 # encoding: [0x83,0x00,0x80,0x38]
13 # CHECK-EL: srav $2, $3, $5 # encoding: [0x65,0x00,0x90,0x10]
14 # CHECK-EL: srl $4, $3, 7 # encoding: [0x83,0x00,0x40,0x38]
15 # CHECK-EL: srlv $2, $3, $5 # encoding: [0x65,0x00,0x50,0x10]
16 # CHECK-EL: rotr $9, $6, 7 # encoding: [0x26,0x01,0xc0,0x38]
17 # CHECK-EL: rotrv $9, $6, $7 # encoding: [0xc7,0x00,0xd0,0x48]
H A Dmicromips-fpu-instructions.s2 # RUN: -mcpu=mips32r2 | FileCheck -check-prefix=CHECK-EL %s
12 # CHECK-EL: add.s $f4, $f6, $f8 # encoding: [0x06,0x55,0x30,0x20]
13 # CHECK-EL: add.d $f4, $f6, $f8 # encoding: [0x06,0x55,0x30,0x21]
14 # CHECK-EL: div.s $f4, $f6, $f8 # encoding: [0x06,0x55,0xf0,0x20]
15 # CHECK-EL: div.d $f4, $f6, $f8 # encoding: [0x06,0x55,0xf0,0x21]
16 # CHECK-EL: mul.s $f4, $f6, $f8 # encoding: [0x06,0x55,0xb0,0x20]
17 # CHECK-EL: mul.d $f4, $f6, $f8 # encoding: [0x06,0x55,0xb0,0x21]
18 # CHECK-EL: sub.s $f4, $f6, $f8 # encoding: [0x06,0x55,0x70,0x20]
19 # CHECK-EL: sub.d $f4, $f6, $f8 # encoding: [0x06,0x55,0x70,0x21]
20 # CHECK-EL
[all...]
H A Dmicromips-loadstore-unaligned.s2 # RUN: -mattr=micromips | FileCheck -check-prefix=CHECK-EL %s
12 # CHECK-EL: lwl $4, 16($5) # encoding: [0x85,0x60,0x10,0x00]
13 # CHECK-EL: lwr $4, 16($5) # encoding: [0x85,0x60,0x10,0x10]
14 # CHECK-EL: swl $4, 16($5) # encoding: [0x85,0x60,0x10,0x80]
15 # CHECK-EL: swr $4, 16($5) # encoding: [0x85,0x60,0x10,0x90]
H A Dmicromips-movcond-instructions.s2 # RUN: | FileCheck -check-prefix=CHECK-EL %s
12 # CHECK-EL: movz $9, $6, $7 # encoding: [0xe6,0x00,0x58,0x48]
13 # CHECK-EL: movn $9, $6, $7 # encoding: [0xe6,0x00,0x18,0x48]
14 # CHECK-EL: movt $9, $6, $fcc0 # encoding: [0x26,0x55,0x7b,0x09]
15 # CHECK-EL: movf $9, $6, $fcc0 # encoding: [0x26,0x55,0x7b,0x01]
H A Dmicromips-multiply-instructions.s2 # RUN: | FileCheck -check-prefix=CHECK-EL %s
12 # CHECK-EL: madd $4, $5 # encoding: [0xa4,0x00,0x3c,0xcb]
13 # CHECK-EL: maddu $4, $5 # encoding: [0xa4,0x00,0x3c,0xdb]
14 # CHECK-EL: msub $4, $5 # encoding: [0xa4,0x00,0x3c,0xeb]
15 # CHECK-EL: msubu $4, $5 # encoding: [0xa4,0x00,0x3c,0xfb]
/external/llvm/lib/LineEditor/
H A DLineEditor.cpp101 EditLine *EL; member in struct:LineEditor::InternalData
109 static const char *ElGetPromptFn(EditLine *EL) { argument
111 if (el_get(EL, EL_CLIENTDATA, &Data) == 0)
120 static unsigned char ElCompletionFn(EditLine *EL, int ch) { argument
122 if (el_get(EL, EL_CLIENTDATA, &Data) == 0) {
134 ::el_push(EL, const_cast<char *>(Prevs.c_str()));
141 const LineInfo *LI = ::el_line(EL);
147 ::el_insertstr(EL, Action.Text.c_str());
161 ::el_push(EL, const_cast<char *>("\05\t"));
206 Data->EL
[all...]
/external/sonivox/arm-fm-22k/host_src/
H A Darm-fm-22k.mak19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa $<
/external/sonivox/arm-hybrid-22k/host_src/
H A Darm-hybrid-22k.mak19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa -I lib_src --defsym CHECK_STACK=0 --defsym REVERB=0 --defsym CHORUS=0 --defsym STEREO_OUTPUT=1 --defsym SAMPLE_RATE_22050=1 --defsym SAMPLES_8_BIT=1 --defsym FILTER_ENABLED=1 $<
/external/sonivox/arm-wt-22k/host_src/
H A Darm-wt-22k.mak19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa -I lib_src --defsym CHECK_STACK=0 --defsym REVERB=0 --defsym CHORUS=0 --defsym STEREO_OUTPUT=1 --defsym SAMPLE_RATE_22050=1 --defsym SAMPLES_8_BIT=1 --defsym FILTER_ENABLED=1 $<
/external/sonivox/arm-fm-22k/lib_src/
H A Darm-fm-22k_lib.mak19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa $<
/external/sonivox/arm-hybrid-22k/lib_src/
H A Darm-hybrid-22k_lib.mak19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa -I lib_src --defsym CHECK_STACK=0 --defsym REVERB=0 --defsym CHORUS=0 --defsym STEREO_OUTPUT=1 --defsym SAMPLE_RATE_22050=1 --defsym SAMPLES_8_BIT=1 --defsym FILTER_ENABLED=1 $<
/external/sonivox/arm-wt-22k/lib_src/
H A Darm-wt-22k_lib.mak19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa -I lib_src --defsym CHECK_STACK=0 --defsym REVERB=0 --defsym CHORUS=0 --defsym STEREO_OUTPUT=1 --defsym SAMPLE_RATE_22050=1 --defsym SAMPLES_8_BIT=1 --defsym FILTER_ENABLED=1 $<
/external/libedit/src/
H A Dcommon.c143 #define EL el->el_line macro
146 EL.buffer, EL.buffer, EL.cursor, EL.cursor, EL.lastchar,
147 EL.lastchar, EL.limit, EL.limit);
/external/tcpdump/
H A Dtelnet.h53 #define EL 248 /* erase the current line */ macro
73 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
223 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp4455 ExitLimit EL = ComputeExitLimit(L, ExitBB);
4459 if (EL.Exact == getCouldNotCompute())
4464 ExitCounts.push_back(std::make_pair(ExitBB, EL.Exact));
4480 // EL.Max of computable LoopMustExits. Otherwise, MaxBECount is
4481 // conservatively the maximum EL.Max, where CouldNotCompute is considered
4482 // greater than any computable EL.Max.
4483 if (EL.MustExit && EL.Max != getCouldNotCompute() && Latch &&
4486 MustExitMaxBECount = EL.Max;
4489 getUMinFromMismatchedTypes(MustExitMaxBECount, EL
[all...]
/external/clang/lib/Frontend/
H A DASTUnit.cpp2568 SourceLocation EL = FileLoc.getLocWithOffset((*I).second); local
2569 Ranges.push_back(CharSourceRange::getCharRange(BL, EL));
2581 SourceLocation EL = FileLoc.getLocWithOffset(I->RemoveRange.second); local
2582 FH.RemoveRange = CharSourceRange::getCharRange(BL, EL);
/external/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp57 std::map<std::vector<Record*>, unsigned> &EL,

Completed in 390 milliseconds

12