/external/llvm/tools/llvm-cov/ |
CoverageSummaryInfo.cpp | 24 for (auto &CR : Function.CountedRegions) { 25 if (CR.Kind != CounterMappingRegion::CodeRegion) 28 if (CR.ExecutionCount != 0) 40 for (auto &CR : Function.CountedRegions) { 41 if (CR.FileID != FileID) 43 LineStart = std::min(LineStart, CR.LineStart); 44 LineEnd = std::max(LineEnd, CR.LineEnd); 51 for (auto &CR : Function.CountedRegions) { 52 if (CR.FileID != FileID) 55 auto ExecutionCount = CR.ExecutionCount [all...] |
/external/crcalc/src/com/hp/creals/ |
UnaryCRFunction.java | 40 // 5/2015 Added support for direct asin() implementation in CR. 55 abstract public CR execute(CR x); 64 * The function object corresponding to the <TT>negate</tt> method of CR. 70 * The function object corresponding to the <TT>inverse</tt> method of CR. 76 * The function object corresponding to the <TT>abs</tt> method of CR. 82 * The function object corresponding to the <TT>exp</tt> method of CR. 88 * The function object corresponding to the <TT>cos</tt> method of CR. 94 * The function object corresponding to the <TT>sin</tt> method of CR. 113 // CR half_pi = CR.PI.divide(CR.valueOf(2)) [all...] |
CR.java | 153 * and <TT>get_appr</tt>. Such applications will treat <TT>CR</tt> as 155 * <TT>java.math.BigInteger</tt>. No subclasses of <TT>CR</tt> 163 * The requires the construction of a subclass of <TT>CR</tt> with 171 * cannot be used for this purpose, since CR inherits from <TT>Number</tt>.) 179 public abstract class CR extends Number { 180 // CR is the basic representation of a number. 232 * Must be defined in subclasses of <TT>CR</tt>. 234 * not ever need to define a <TT>CR</tt> subclass. 241 * Called only with the lock on the <TT>CR</tt> object 279 public static CR valueOf(BigInteger n) [all...] |
/external/swiftshader/third_party/LLVM/lib/Support/ |
ConstantRange.cpp | 52 const ConstantRange &CR) { 53 if (CR.isEmptySet()) 54 return CR; 56 uint32_t W = CR.getBitWidth(); 60 return CR; 62 if (CR.isSingleElement()) 63 return ConstantRange(CR.getUpper(), CR.getLower()); 66 APInt UMax(CR.getUnsignedMax()); 72 APInt SMax(CR.getSignedMax()) [all...] |
/external/crcalc/tests/src/com/hp/creals/ |
SlowCRTest.java | 36 private static void checkEq(CR x, CR y, String s) { 44 private static boolean isApprInt(CR x) { 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() [all...] |
CRTest.java | 57 private static void check_eq(CR x, CR y, String s) { 69 CR zero = CR.valueOf(0); 70 CR one = CR.valueOf(1); 71 CR two = CR.valueOf(2); 84 CR three = two.add(one); 85 CR four = two.add(two) [all...] |
ConversionTest.java | 31 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); 44 CR crValue = CR.valueOf(f);
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
ConstantRange.h | 106 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) [all...] |
/external/icu/icu4c/source/data/brkitr/rules/ |
char.txt | 20 $CR = [\p{Grapheme_Cluster_Break = CR}]; 50 $CR $LF; 57 [^$Control $CR $LF] ($Extend | $ZWJ); 60 [^$Control $CR $LF] $SpacingMark; 63 $Prepend [^$Control $CR $LF];
|
/external/llvm/lib/IR/ |
ConstantRange.cpp | 55 const ConstantRange &CR) { 56 if (CR.isEmptySet()) 57 return CR; 59 uint32_t W = CR.getBitWidth(); 64 return CR; 66 if (CR.isSingleElement()) 67 return ConstantRange(CR.getUpper(), CR.getLower()); 70 APInt UMax(CR.getUnsignedMax()); 76 APInt SMax(CR.getSignedMax()) [all...] |
/device/google/contexthub/firmware/os/platform/stm32/flash_script/ |
tool.c | 25 volatile uint32_t CR; 46 while (FLASH->CR & 0x80000000) { 60 FLASH->CR = 0x00010004; //erase it all 70 FLASH->CR = 0x201; //program word at a time
|
/external/llvm/include/llvm/IR/ |
ConstantRange.h | 159 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) { [all...] |
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Common/Pei/ |
UsbPei.h | 39 CR(a, IOH_OHCI_DEVICE, UsbControllerPpi, PEI_IOH_OHCI_SIGNATURE)
42 CR (a, IOH_EHCI_DEVICE, UsbControllerPpi, PEI_IOH_EHCI_SIGNATURE)
|
/external/clang/test/CodeGen/ |
pointer-signext.c | 10 #define CR(Record, TYPE, Field) \ 30 Entry = CR (Link, MEMORY_MAP, Link);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/break_rules/ |
grapheme.txt | 17 CR = [\p{Grapheme_Cluster_Break = CR}]; 40 GB3: CR LF; 41 GB4: (Control | CR | LF) ÷; 42 GB5: . ÷ (Control | CR | LF);
|
sentence.txt | 11 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/ |
grapheme.txt | 17 CR = [\p{Grapheme_Cluster_Break = CR}]; 40 GB3: CR LF; 41 GB4: (Control | CR | LF) ÷; 42 GB5: . ÷ (Control | CR | LF);
|
sentence.txt | 11 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/ |
grapheme.txt | 17 CR = [\p{Grapheme_Cluster_Break = CR}]; 40 GB3: CR LF; 41 GB4: (Control | CR | LF) ÷; 42 GB5: . ÷ (Control | CR | LF);
|
sentence.txt | 11 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/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
ConstantRange.cpp | 58 const ConstantRange &CR) { 59 if (CR.isEmptySet()) 60 return CR; 62 uint32_t W = CR.getBitWidth(); 67 return CR; 69 if (CR.isSingleElement()) 70 return ConstantRange(CR.getUpper(), CR.getLower()); 73 APInt UMax(CR.getUnsignedMax()); 79 APInt SMax(CR.getSignedMax()) [all...] |
/device/google/contexthub/firmware/os/platform/stm32/ |
wdt.c | 23 volatile uint32_t CR; 29 volatile uint16_t CR; 95 WWDG->CR = WWDG_CR_ENABLE | WWDG_TCNT_HIGH | (WWDG_WINDOW_SIZE & WWDG_TCNT_MASK); 102 WWDG->CR = (WWDG->CR & ~WWDG_TCNT_MASK) | WWDG_TCNT_HIGH | (WWDG_WINDOW_SIZE & WWDG_TCNT_MASK);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
ConstantRange.h | 153 bool contains(const ConstantRange &CR) const; 176 /// Compare set size of this range with the range CR. 177 bool isSizeStrictlySmallerThan(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; 215 ConstantRange intersectWith(const ConstantRange &CR) const [all...] |
/external/swiftshader/third_party/subzero/src/ |
IceFixups.cpp | 28 if (const auto *CR = llvm::dyn_cast<ConstantRelocatable>(ConstValue)) 29 return CR->getOffset() + addend_; 38 if (const auto *CR = llvm::dyn_cast<ConstantRelocatable>(C)) { 39 return CR->getName(); 60 if (const auto *CR = llvm::dyn_cast<ConstantRelocatable>(ConstValue)) { 62 CR->getName().toString() != GlobalOffsetTable) {
|
/external/apache-http/src/org/apache/http/protocol/ |
HTTP.java | 50 public static final int CR = 13; // <US-ASCII CR, carriage return (13)> 98 return ch == SP || ch == HT || ch == CR || ch == LF;
|