Home
last modified time | relevance | path

Searched refs:CR (Results 1 – 25 of 661) sorted by relevance

12345678910>>...27

/external/valgrind/none/tests/ppc64/
Dtest_isa_2_06_part2-div.stdout.exp-LE-ISA3_02 #0: divde: 0x0000000000000004 / 0xfffffffffffffffc = 0x0000000000000000; CR=0; XER=0
3 #1: divde: 0x0000000000000004 / 0xfffffffffffffffd = 0x0000000000000000; CR=0; XER=0
4 #2: divde: 0x0000000000000004 / 0x0000000000000004 = 0x0000000000000000; CR=0; XER=0
5 #3: divde: 0x0000000000000004 / 0xfffffffffffffffb = 0x0000000000000000; CR=0; XER=0
6 #4: divde: 0x0000000000000003 / 0x0000000000000008 = 0x6000000000000000; CR=0; XER=0
7 #5: divde: 0x8000000000000000 / 0x000000000000000a = 0x0000000000000000; CR=0; XER=0
8 #6: divde: 0x000000000000050c / 0xffffffffffffffff = 0x0000000000000000; CR=0; XER=0
9 #7: divde: 0x000000000000050c / 0xfffffffffffff000 = 0xaf40000000000000; CR=0; XER=0
10 #8: divde: 0x000000001234fedc / 0x000000008000a873 = 0x2469cdcc6ad4ce20; CR=0; XER=0
11 #9: divde: 0xabcd87651234fedc / 0x00000000a123b893 = 0x0000000000000000; CR=0; XER=0
[all …]
Dtest_isa_2_06_part3-div.stdout.exp-LE-ISA3_02 #0: divdeu: 0x00000000000000040000000000000000 / 0xfffffffffffffffc = 0x0000000000000004; CR=0; XER…
3 #1: divdeu: 0x00000000000000040000000000000000 / 0xfffffffffffffffd = 0x0000000000000004; CR=0; XER…
4 #2: divdeu: 0x00000000000000040000000000000000 / 0x0000000000000004 = 0x0000000000000000; CR=0; XER…
5 #3: divdeu: 0x00000000000000040000000000000000 / 0xfffffffffffffffb = 0x0000000000000004; CR=0; XER…
6 #4: divdeu: 0x00000000000000030000000000000000 / 0x0000000000000008 = 0x6000000000000000; CR=0; XER…
7 #5: divdeu: 0x80000000000000000000000000000000 / 0x000000000000000a = 0x0000000000000000; CR=0; XER…
8 #6: divdeu: 0x000000000000050c0000000000000000 / 0xffffffffffffffff = 0x000000000000050c; CR=0; XER…
9 #7: divdeu: 0x000000000000050c0000000000000000 / 0xfffffffffffff000 = 0x000000000000050c; CR=0; XER…
10 #8: divdeu: 0x000000001234fedc0000000000000000 / 0x000000008000a873 = 0x2469cdcc6ad4ce20; CR=0; XER…
11 #9: divdeu: 0xabcd87651234fedc0000000000000000 / 0x00000000a123b893 = 0x0000000000000000; CR=0; XER…
[all …]
Djm_int_isa_2_07.stdout.exp-LE11 stbcx. abefcd0145236789,1155337744226688 => 0000000000000089,0000000000000001; CR=20000000
13 sthcx. abefcd0145236789,1155337744226688 => 0000000000006789,0000000000000001; CR=20000000
15 stqcx. abefcd0145236789,1155337744226688 => 1155337744226688,abefcd0145236789; CR=20000000
/external/crcalc/src/com/hp/creals/
DUnaryCRFunction.java55 abstract public CR execute(CR x); in execute()
158 public UnaryCRFunction inverseMonotone(CR low, CR high) { in inverseMonotone()
169 public UnaryCRFunction monotoneDerivative(CR low, CR high) { in monotoneDerivative()
177 public CR execute(CR x) { in execute()
183 public CR execute(CR x) { in execute()
189 public CR execute(CR x) { in execute()
195 public CR execute(CR x) { in execute()
201 public CR execute(CR x) { in execute()
211 CR one = CR.valueOf(1);
212 public CR execute(CR x) { in execute()
[all …]
DCR.java173 public abstract class CR extends Number { class
273 public static CR valueOf(BigInteger n) { in valueOf()
281 public static CR valueOf(int n) { in valueOf()
289 public static CR valueOf(long n) { in valueOf()
298 public static CR valueOf(double n) { in valueOf()
313 CR result = valueOf(mantissa).shiftLeft(exp); in valueOf()
323 public static CR valueOf(float n) { in valueOf()
327 public static CR ZERO = valueOf(0);
328 public static CR ONE = valueOf(1);
440 CR simple_ln() { in simple_ln()
[all …]
/external/crcalc/tests/src/com/hp/creals/
DSlowCRTest.java36 private static void checkEq(CR x, CR y, String s) { in checkEq()
44 private static boolean isApprInt(CR x) { in isApprInt()
49 final static CR ZERO = CR.valueOf(0);
50 final static CR ONE = CR.valueOf(1);
51 final static CR TWO = CR.valueOf(2);
52 final static CR BIG = CR.valueOf(200).exp();
53 final static CR SMALL = BIG.inverse();
54 final static CR HALF_PI = CR.PI.divide(CR.valueOf(2));
59 .monotoneDerivative(ZERO, CR.PI);
66 private static void checkTrig(CR x) { in checkTrig()
[all …]
DCRTest.java57 private static void check_eq(CR x, CR y, String s) { in check_eq()
69 CR zero = CR.valueOf(0); in testCR()
70 CR one = CR.valueOf(1); in testCR()
71 CR two = CR.valueOf(2); in testCR()
84 CR three = two.add(one); in testCR()
85 CR four = two.add(two); in testCR()
86 check_eq(CR.valueOf(4), four, "2 + 2 failed"); in testCR()
87 check_eq(CR.valueOf(3), three, "2 + 1 failed"); in testCR()
93 CR thirteen = CR.valueOf(13); in testCR()
101 CR e = one.exp(); in testCR()
[all …]
DConversionTest.java31 final CR BIG = CR.valueOf(Double.MAX_VALUE);
32 final CR HUGE = BIG.multiply(BIG);
33 final CR TINY = CR.ONE.shiftRight(1078);
37 CR crValue = CR.valueOf(x); in checkDoubleConversion()
44 CR crValue = CR.valueOf(f); in checkFloatConversion()
/external/swiftshader/third_party/LLVM/lib/Support/
DConstantRange.cpp52 const ConstantRange &CR) { in makeICmpRegion() argument
53 if (CR.isEmptySet()) in makeICmpRegion()
54 return CR; in makeICmpRegion()
56 uint32_t W = CR.getBitWidth(); in makeICmpRegion()
60 return CR; in makeICmpRegion()
62 if (CR.isSingleElement()) in makeICmpRegion()
63 return ConstantRange(CR.getUpper(), CR.getLower()); in makeICmpRegion()
66 APInt UMax(CR.getUnsignedMax()); in makeICmpRegion()
72 APInt SMax(CR.getSignedMax()); in makeICmpRegion()
78 APInt UMax(CR.getUnsignedMax()); in makeICmpRegion()
[all …]
/external/llvm/lib/IR/
DConstantRange.cpp55 const ConstantRange &CR) { in makeAllowedICmpRegion() argument
56 if (CR.isEmptySet()) in makeAllowedICmpRegion()
57 return CR; in makeAllowedICmpRegion()
59 uint32_t W = CR.getBitWidth(); in makeAllowedICmpRegion()
64 return CR; in makeAllowedICmpRegion()
66 if (CR.isSingleElement()) in makeAllowedICmpRegion()
67 return ConstantRange(CR.getUpper(), CR.getLower()); in makeAllowedICmpRegion()
70 APInt UMax(CR.getUnsignedMax()); in makeAllowedICmpRegion()
76 APInt SMax(CR.getSignedMax()); in makeAllowedICmpRegion()
82 APInt UMax(CR.getUnsignedMax()); in makeAllowedICmpRegion()
[all …]
/external/llvm/tools/llvm-cov/
DCoverageSummaryInfo.cpp24 for (auto &CR : Function.CountedRegions) { in get() local
25 if (CR.Kind != CounterMappingRegion::CodeRegion) in get()
28 if (CR.ExecutionCount != 0) in get()
40 for (auto &CR : Function.CountedRegions) { in get() local
41 if (CR.FileID != FileID) in get()
43 LineStart = std::min(LineStart, CR.LineStart); in get()
44 LineEnd = std::max(LineEnd, CR.LineEnd); in get()
51 for (auto &CR : Function.CountedRegions) { in get() local
52 if (CR.FileID != FileID) in get()
55 auto ExecutionCount = CR.ExecutionCount; in get()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DConstantRange.h106 bool contains(const ConstantRange &CR) const;
147 bool operator==(const ConstantRange &CR) const {
148 return Lower == CR.Lower && Upper == CR.Upper;
150 bool operator!=(const ConstantRange &CR) const {
151 return !operator==(CR);
165 ConstantRange intersectWith(const ConstantRange &CR) const;
173 ConstantRange unionWith(const ConstantRange &CR) const;
258 inline raw_ostream &operator<<(raw_ostream &OS, const ConstantRange &CR) {
259 CR.print(OS);
/external/llvm/include/llvm/IR/
DConstantRange.h159 bool contains(const ConstantRange &CR) const;
195 bool operator==(const ConstantRange &CR) const {
196 return Lower == CR.Lower && Upper == CR.Upper;
198 bool operator!=(const ConstantRange &CR) const {
199 return !operator==(CR);
207 ConstantRange difference(const ConstantRange &CR) const;
216 ConstantRange intersectWith(const ConstantRange &CR) const;
224 ConstantRange unionWith(const ConstantRange &CR) const;
316 inline raw_ostream &operator<<(raw_ostream &OS, const ConstantRange &CR) {
317 CR.print(OS);
/external/icu/icu4c/source/data/brkitr/rules/
Dsent.txt19 $CR = [\p{Sentence_Break = CR}];
55 # Rule 3 - break after separators. Keep CR/LF together.
57 $CR $LF;
63 [^$Sep $CR $LF]? ($Extend | $Format)*;
73 $NotLettersEx = [^$OLetter $Upper $Lower $Sep $CR $LF $ATerm $STerm] ($Extend | $Format)*;
80 ($STermEx | $ATermEx) $CloseEx* $SpEx* ($Sep | $CR | $LF)?;
83 [[^$STerm $ATerm $Close $Sp $Sep $LF $CR $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)*…
84 …erm $ATerm $Close $Sp $Sep $LF $CR $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)* ([$S…
95 [{bof}] (.? | $LF $CR) [^$Sep $CR $LF]* [$Sep $CR $LF {eof}] ($SpEx_R* $CloseEx_R* ($STermEx_R | $A…
110 # (.? | $LF $CR) Match one $Sep instance. Use .? rather than $Sep because position might be
Dsent_el.txt20 $CR = [\p{Sentence_Break = CR}];
56 # Rule 3 - break after separators. Keep CR/LF together.
58 $CR $LF;
64 [^$Sep $CR $LF]? ($Extend | $Format)*;
74 $NotLettersEx = [^$OLetter $Upper $Lower $Sep $CR $LF $ATerm $STerm] ($Extend | $Format)*;
81 ($STermEx | $ATermEx) $CloseEx* $SpEx* ($Sep | $CR | $LF)?;
84 [[^$STerm $ATerm $Close $Sp $Sep $LF $CR $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)*…
85 …erm $ATerm $Close $Sp $Sep $LF $CR $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)* ([$S…
105 [{bof}] (.? | $LF $CR) [^$Sep $CR $LF]* [$Sep $CR $LF {eof}] ($SpEx_R* $CloseEx_R* ($STermEx_R | $A…
119 # (.? | $LF $CR) Match one $Sep instance. Use .? rather than $Sep because position might be
/external/icu/icu4c/source/test/testdata/
DGraphemeBreakTest.txt27 ÷ 0020 ÷ 000D ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3]
28 …0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend) ÷ [5.0] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3]
65 ÷ 000D ÷ 0020 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] SPACE (Other) ÷ [0.3]
66 ÷ 000D ÷ 0308 ÷ 0020 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] COMBINING DIAERESIS (Extend) …
67 ÷ 000D ÷ 000D ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3]
68 …000D ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] COMBINING DIAERESIS (Extend) ÷ [5.0] <CARRIA…
69 ÷ 000D × 000A ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) × [3.0] <LINE FEED (LF)> (LF) ÷ [0.3]
70 ÷ 000D ÷ 0308 ÷ 000A ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] COMBINING DIAERESIS (Extend) …
71 ÷ 000D ÷ 0001 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] <START OF HEADING> (Control) ÷ [0.3]
72 ÷ 000D ÷ 0308 ÷ 0001 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] COMBINING DIAERESIS (Extend) …
[all …]
DSentenceBreakTest.txt27 ÷ 0001 × 000D ÷ # ÷ [0.2] <START OF HEADING> (Other) × [998.0] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3]
28 …DING> (Other) × [5.0] COMBINING DIAERESIS (Extend_FE) × [998.0] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3]
55 ÷ 000D ÷ 0001 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] <START OF HEADING> (Other) ÷ [0.3]
56 ÷ 000D ÷ 0308 × 0001 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_F…
57 ÷ 000D ÷ 000D ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3]
58 …D ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_FE) × [998.0] <CARR…
59 ÷ 000D × 000A ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) × [3.0] <LINE FEED (LF)> (LF) ÷ [0.3]
60 ÷ 000D ÷ 0308 × 000A ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_F…
61 ÷ 000D ÷ 0085 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] <NEXT LINE (NEL)> (Sep) ÷ [0.3]
62 ÷ 000D ÷ 0308 × 0085 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_F…
[all …]
DWordBreakTest.txt27 ÷ 0001 ÷ 000D ÷ # ÷ [0.2] <START OF HEADING> (Other) ÷ [3.2] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3]
28 …EADING> (Other) × [4.0] COMBINING DIAERESIS (Extend_FE) ÷ [3.2] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3]
87 ÷ 000D ÷ 0001 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [3.1] <START OF HEADING> (Other) ÷ [0.3]
88 ÷ 000D ÷ 0308 ÷ 0001 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [3.1] COMBINING DIAERESIS (Extend_F…
89 ÷ 000D ÷ 000D ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [3.1] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3]
90 …0D ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [3.1] COMBINING DIAERESIS (Extend_FE) ÷ [3.2] <CARRI…
91 ÷ 000D × 000A ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) × [3.0] <LINE FEED (LF)> (LF) ÷ [0.3]
92 ÷ 000D ÷ 0308 ÷ 000A ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [3.1] COMBINING DIAERESIS (Extend_F…
93 ÷ 000D ÷ 000B ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [3.1] <LINE TABULATION> (Newline) ÷ [0.3]
94 ÷ 000D ÷ 0308 ÷ 000B ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [3.1] COMBINING DIAERESIS (Extend_F…
[all …]
/external/swiftshader/third_party/subzero/src/
DIceFixups.cpp28 if (const auto *CR = llvm::dyn_cast<ConstantRelocatable>(ConstValue)) in offset() local
29 return CR->getOffset() + addend_; in offset()
38 if (const auto *CR = llvm::dyn_cast<ConstantRelocatable>(C)) { in symbol() local
39 return CR->getName(); in symbol()
60 if (const auto *CR = llvm::dyn_cast<ConstantRelocatable>(ConstValue)) { in emit() local
62 CR->getName().toString() != GlobalOffsetTable) { in emit()
/external/llvm/lib/ProfileData/Coverage/
DCoverageMapping.cpp436 for (const auto &CR : Function.CountedRegions) in findMainViewFileID() local
437 if (CR.Kind == CounterMappingRegion::ExpansionRegion) in findMainViewFileID()
438 IsNotExpandedFile[CR.ExpandedFileID] = false; in findMainViewFileID()
466 for (const auto &CR : Function.CountedRegions) in getCoverageForFile() local
467 if (FileIDs.test(CR.FileID)) { in getCoverageForFile()
468 Regions.push_back(CR); in getCoverageForFile()
469 if (MainFileID && isExpansion(CR, *MainFileID)) in getCoverageForFile()
470 FileCoverage.Expansions.emplace_back(CR, Function); in getCoverageForFile()
508 for (const auto &CR : Function.CountedRegions) in getCoverageForFunction() local
509 if (CR.FileID == *MainFileID) { in getCoverageForFunction()
[all …]
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DConvertUTFWrapper.cpp71 ConversionResult CR = ConvertUTF32toUTF8(&SourceStart, SourceEnd, in ConvertCodePointToUTF8() local
74 if (CR != conversionOK) in ConvertCodePointToUTF8()
121 ConversionResult CR = in convertUTF16ToUTF8String() local
123 assert(CR != targetExhausted); in convertUTF16ToUTF8String()
125 if (CR != conversionOK) { in convertUTF16ToUTF8String()
166 ConversionResult CR = in convertUTF8ToUTF16String() local
168 assert(CR != targetExhausted); in convertUTF8ToUTF16String()
170 if (CR != conversionOK) { in convertUTF8ToUTF16String()
/external/llvm/lib/Support/
DConvertUTFWrapper.cpp71 ConversionResult CR = ConvertUTF32toUTF8(&SourceStart, SourceEnd, in ConvertCodePointToUTF8() local
74 if (CR != conversionOK) in ConvertCodePointToUTF8()
121 ConversionResult CR = in convertUTF16ToUTF8String() local
123 assert(CR != targetExhausted); in convertUTF16ToUTF8String()
125 if (CR != conversionOK) { in convertUTF16ToUTF8String()
166 ConversionResult CR = in convertUTF8ToUTF16String() local
168 assert(CR != targetExhausted); in convertUTF8ToUTF16String()
170 if (CR != conversionOK) { in convertUTF8ToUTF16String()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/break_rules/
Dsentence.txt11 CR = [\p{Sentence_Break = CR}];
26 ParaSep = [Sep CR LF];
36 SB3: CR LF;
46 SB9: SATerm ExtFmt* (Close ExtFmt*)* (Sp ExtFmt*)* (CR LF | ParaSep)? ÷;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/break_rules/
Dsentence.txt11 CR = [\p{Sentence_Break = CR}];
26 ParaSep = [Sep CR LF];
36 SB3: CR LF;
46 SB9: SATerm ExtFmt* (Close ExtFmt*)* (Sp ExtFmt*)* (CR LF | ParaSep)? ÷;
/external/icu/icu4c/source/test/testdata/break_rules/
Dsentence.txt11 CR = [\p{Sentence_Break = CR}];
26 ParaSep = [Sep CR LF];
36 SB3: CR LF;
46 SB9: SATerm ExtFmt* (Close ExtFmt*)* (Sp ExtFmt*)* (CR LF | ParaSep)? ÷;

12345678910>>...27