Home
last modified time | relevance | path

Searched refs:RN (Results 1 – 25 of 32) sorted by relevance

12

/external/v8/test/cctest/
Dtest-assembler-arm.cc508 TestRoundingMode(s32_f64, RN, 0, 0);
509 TestRoundingMode(s32_f64, RN, 0.5, 0);
510 TestRoundingMode(s32_f64, RN, -0.5, 0);
511 TestRoundingMode(s32_f64, RN, 1.5, 2);
512 TestRoundingMode(s32_f64, RN, -1.5, -2);
513 TestRoundingMode(s32_f64, RN, 123.7, 124);
514 TestRoundingMode(s32_f64, RN, -123.7, -124);
515 TestRoundingMode(s32_f64, RN, 123456.2, 123456);
516 TestRoundingMode(s32_f64, RN, -123456.2, -123456);
517 TestRoundingMode(s32_f64, RN, static_cast<double>(kMaxInt), kMaxInt);
[all …]
/external/valgrind/main/none/tests/arm/
Dvfp.c77 #define TESTINSN_vmov_core_single(instruction, RN, SD, SDval) \ argument
83 "mov " #RN ", #0\n\t" \
86 "str " #RN ", [%0]\n\t" \
89 : #SD, #RN, "memory" \
91 printf("%s :: "#RN" 0x%08x\n", \
95 #define TESTINSN_vmov_single_core(instruction, SD, RN, RNval) \ argument
99 printf(#RN" 0x%08x\t", RNval); \
101 "mov " #RN ", %1\n\t" \
107 : #SD, #RN, "memory" \
134 #define TESTINSN_vmov_2single_2core(instruction, SD1, SD2, RN, RM, RNval, RMval) \ argument
[all …]
Dv6intARM.c41 #define TESTINST3(instruction, RMval, RNval, RD, RM, RN, carryin) \ argument
51 "mov " #RN ",%3;" \
57 : #RD, #RM, #RN, "cc", "memory" \
70 #define TESTINST4(instruction, RMval, RNval, RSval, RD, RM, RN, RS, carryin) \ argument
80 "mov " #RN ",%3;" \
87 : #RD, #RM, #RN, #RS, "cc", "memory" \
Dv6media.c50 #define TESTINST3(instruction, RMval, RNval, RD, RM, RN, carryin) \ argument
58 "mov " #RN ",%3;" \
64 : #RD, #RM, #RN, "cc", "memory" \
79 #define TESTINST4(instruction, RMval, RNval, RSval, RD, RM, RN, RS, carryin) \ argument
87 "mov " #RN ",%3;" \
94 : #RD, #RM, #RN, #RS, "cc", "memory" \
Dv6intThumb.c135 #define TESTINST3(instruction, RMval, RNval, RD, RM, RN, cvin) \ argument
143 "mov " #RN ",%3;" \
149 : #RD, #RM, #RN, "cc", "memory" \
162 #define TESTINST4(instruction, RMval, RNval, RSval, RD, RM, RN, RS, cvin) \ argument
170 "mov " #RN ",%3;" \
177 : #RD, #RM, #RN, #RS, "cc", "memory" \
/external/llvm/lib/Analysis/
DScalarEvolutionNormalization.cpp186 const SCEV *RN = TransformSubExpr(RO, User, OperandValToReplace); in TransformImpl() local
187 if (LO != LN || RO != RN) in TransformImpl()
188 return SE.getUDivExpr(LN, RN); in TransformImpl()
/external/webkit/Source/JavaScriptCore/assembler/
DARMAssembler.h262 m_buffer.putInt(op | RN(rn) | RD(rd) | op2); in emitInst()
437 m_buffer.putInt(static_cast<ARMWord>(cc) | MUL | RN(rd) | RS(rn) | RM(rm));
442 m_buffer.putInt(static_cast<ARMWord>(cc) | MUL | SET_CC | RN(rd) | RS(rn) | RM(rm));
447 … m_buffer.putInt(static_cast<ARMWord>(cc) | MULL | RN(rdhi) | RD(rdlo) | RS(rn) | RM(rm));
482 …m_buffer.putIntWithConstantInt(static_cast<ARMWord>(cc) | DTR | DT_LOAD | DT_UP | RN(ARMRegisters:…
487 …m_buffer.putIntWithConstantInt(static_cast<ARMWord>(cc) | DTR | DT_LOAD | DT_UP | RN(ARMRegisters:…
545 m_buffer.putInt(cc | DTR | DT_WB | RN(ARMRegisters::sp) | RD(reg) | 0x4);
551 … m_buffer.putInt(cc | (DTR ^ DT_PRE) | DT_LOAD | DT_UP | RN(ARMRegisters::sp) | RD(reg) | 0x4);
920 ARMWord RN(int reg) in RN() function
/external/llvm/utils/TableGen/
DCodeGenDAGPatterns.h627 Record *getResult(unsigned RN) const { in getResult() argument
628 assert(RN < Results.size()); in getResult()
629 return Results[RN]; in getResult()
637 Record *getImpResult(unsigned RN) const { in getImpResult() argument
638 assert(RN < ImpResults.size()); in getImpResult()
639 return ImpResults[RN]; in getImpResult()
/external/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp110 buildExtractionBlockSet(const RegionNode &RN) { in buildExtractionBlockSet() argument
111 if (!RN.isSubRegion()) in buildExtractionBlockSet()
113 return buildExtractionBlockSet(RN.getNodeAs<BasicBlock>()); in buildExtractionBlockSet()
115 const Region &R = *RN.getNodeAs<Region>(); in buildExtractionBlockSet()
133 CodeExtractor::CodeExtractor(DominatorTree &DT, const RegionNode &RN, in CodeExtractor() argument
136 Blocks(buildExtractionBlockSet(RN)), NumExitBlocks(~0U) {} in CodeExtractor()
/external/llvm/include/llvm/Transforms/Utils/
DCodeExtractor.h82 CodeExtractor(DominatorTree &DT, const RegionNode &RN,
/external/clang/lib/AST/
DDeclarationName.cpp99 unsigned LN = LHSSelector.getNumArgs(), RN = RHSSelector.getNumArgs(); in compare() local
100 for (unsigned I = 0, N = std::min(LN, RN); I != N; ++I) { in compare()
109 return compareInt(LN, RN); in compare()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGDumper.cpp571 if (unsigned RN = N->getOperand(i).getResNo()) in DumpNodesr() local
572 OS << ":" << RN; in DumpNodesr()
641 if (unsigned RN = getOperand(i).getResNo()) in print() local
642 OS << ":" << RN; in print()
DInstrEmitter.cpp71 if (RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Node->getOperand(I - 1))) in countOperands() local
72 if (TargetRegisterInfo::isPhysicalRegister(RN->getReg())) in countOperands()
/external/v8/src/arm/
Dconstants-arm.h408 RN = 0 << 22, // Round to Nearest. enumerator
414 kRoundToNearest = RN,
Dsimulator-arm.cc2967 ASSERT((mode == RN) || (mode == RM) || (mode == RZ)); in get_inv_op_vfp_flag()
2980 case RN: in get_inv_op_vfp_flag()
3046 ASSERT((mode == RM) || (mode == RZ) || (mode == RN)); in DecodeVCVTBetweenFloatingPointAndInteger()
3069 case RN: { in DecodeVCVTBetweenFloatingPointAndInteger()
/external/libvpx/libvpx/vp8/common/arm/armv6/
Dsimpleloopfilter_v6.asm49 src RN r0
50 pstep RN r1
Dloopfilter_v6.asm50 src RN r0
51 pstep RN r1
52 count RN r5
/external/v8/src/mips/
Dconstants-mips.h527 RN = 0 << 0, // Round to Nearest. enumerator
533 kRoundToNearest = RN,
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/it-IT/
Dit-IT_cm0_kdt_lfz3.pkb82 …0�I/����U���{v"/̞���������(W�s���������?�%Ć�4�|+ �C�}�����t��\O���^RNSe#`ȅ��T��.a����~+…
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/
Des-ES_kdt_posp.pkb179 …��)�d��w7AUg�&K�sQ��4��8,V�����DV��N����/m� �6��@e��C7%�s%� [�����L�RNШ`� � �0�;���#�m�…
/external/timezonepicker-support/
Dzone.tab47 AR -2447-06525 America/Argentina/Salta (SA, LP, NQ, RN)
91 BR -0343-03830 America/Fortaleza NE Brazil (MA, PI, CE, RN, PB)
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-US/
Den-US_kdt_posd.pkb291 t� ��Ҟ�GlĢ|$#i��(��� �&�p� �����6DZz@�DZzA�&� B!bG� HhR$z��H�H�H�IRI�JnJ�NVA7-8Xۀ��RN
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/
Dde-DE_gl0_kdt_dur.pkb490 …Q.�w.؇RN�{BY�,-�������aԝ8gU�q��Z�j��;}���p0-���;�� d�t�!K���;w�, �������Bt@u�͝�$�.��…
/external/icu4c/test/testdata/
Dregextst.txt2268 …es|ES|go|GO|ma|MA|mg|MG|ms|MS|mt|MT|pa|PA|pb|PB|pe|PE|pi|PI|pr|PR|rj|RJ|rn|RN|ro|RO|rr|RR|rs|RS|sc…
2269 …es|ES|go|GO|ma|MA|mg|MG|ms|MS|mt|MT|pa|PA|pb|PB|pe|PE|pi|PI|pr|PR|rj|RJ|rn|RN|ro|RO|rr|RR|rs|RS|sc…
2270 …es|ES|go|GO|ma|MA|mg|MG|ms|MS|mt|MT|pa|PA|pb|PB|pe|PE|pi|PI|pr|PR|rj|RJ|rn|RN|ro|RO|rr|RR|rs|RS|sc…
2271 …es|ES|go|GO|ma|MA|mg|MG|ms|MS|mt|MT|pa|PA|pb|PB|pe|PE|pi|PI|pr|PR|rj|RJ|rn|RN|ro|RO|rr|RR|rs|RS|sc…
2272 …es|ES|go|GO|ma|MA|mg|MG|ms|MS|mt|MT|pa|PA|pb|PB|pe|PE|pi|PI|pr|PR|rj|RJ|rn|RN|ro|RO|rr|RR|rs|RS|sc…
2273 …es|ES|go|GO|ma|MA|mg|MG|ms|MS|mt|MT|pa|PA|pb|PB|pe|PE|pi|PI|pr|PR|rj|RJ|rn|RN|ro|RO|rr|RR|rs|RS|sc…
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-GB/
Den-GB_kdt_g2p.pkb207 � ���@�?��s>*�K�5f��A��=�$u�@*I5&ng�5u�RN�>f+JO�(�$�T�[���r�j �����2�~��$������B

12