HomeSort by relevance Sort by last modified time
    Searched refs:CR (Results 1 - 25 of 894) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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 147 * and <TT>get_appr</tt>. Such applications will treat <TT>CR</tt> as
149 * <TT>java.math.BigInteger</tt>. No subclasses of <TT>CR</tt>
157 * The requires the construction of a subclass of <TT>CR</tt> with
165 * cannot be used for this purpose, since CR inherits from <TT>Number</tt>.)
173 public abstract class CR extends Number {
174 // CR is the basic representation of a number.
226 * Must be defined in subclasses of <TT>CR</tt>.
228 * not ever need to define a <TT>CR</tt> subclass.
235 * Called only with the lock on the <TT>CR</tt> object
273 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/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);
  /prebuilts/go/darwin-x86/test/
crlf.go 18 prog = strings.Replace(prog, "CR", "\r", -1)
24 CR
28 var CR s = "hello\n" + CR
29 " world"CR
  /prebuilts/go/linux-x86/test/
crlf.go 18 prog = strings.Replace(prog, "CR", "\r", -1)
24 CR
28 var CR s = "hello\n" + CR
29 " world"CR
  /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);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
ConstantRange.h 161 bool contains(const ConstantRange &CR) const;
187 /// Compare set size of this range with the range CR.
189 bool isSizeStrictlySmallerThanOf(const ConstantRange &CR) const;
209 bool operator==(const ConstantRange &CR) const {
210 return Lower == CR.Lower && Upper == CR.Upper;
212 bool operator!=(const ConstantRange &CR) const {
213 return !operator==(CR);
221 ConstantRange difference(const ConstantRange &CR) const;
230 ConstantRange intersectWith(const ConstantRange &CR) const
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
ConstantRange.h 146 bool contains(const ConstantRange &CR) const;
169 /// Compare set size of this range with the range CR.
170 bool isSizeStrictlySmallerThan(const ConstantRange &CR) const;
188 bool operator==(const ConstantRange &CR) const {
189 return Lower == CR.Lower && Upper == CR.Upper;
191 bool operator!=(const ConstantRange &CR) const {
192 return !operator==(CR);
200 ConstantRange difference(const ConstantRange &CR) const;
208 ConstantRange intersectWith(const ConstantRange &CR) const
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/
ConstantRange.h 146 bool contains(const ConstantRange &CR) const;
169 /// Compare set size of this range with the range CR.
170 bool isSizeStrictlySmallerThan(const ConstantRange &CR) const;
188 bool operator==(const ConstantRange &CR) const {
189 return Lower == CR.Lower && Upper == CR.Upper;
191 bool operator!=(const ConstantRange &CR) const {
192 return !operator==(CR);
200 ConstantRange difference(const ConstantRange &CR) const;
208 ConstantRange intersectWith(const ConstantRange &CR) const
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/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...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/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...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/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...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/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...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
ConstantRange.h 161 bool contains(const ConstantRange &CR) const;
187 /// Compare set size of this range with the range CR.
189 bool isSizeStrictlySmallerThanOf(const ConstantRange &CR) const;
209 bool operator==(const ConstantRange &CR) const {
210 return Lower == CR.Lower && Upper == CR.Upper;
212 bool operator!=(const ConstantRange &CR) const {
213 return !operator==(CR);
221 ConstantRange difference(const ConstantRange &CR) const;
230 ConstantRange intersectWith(const ConstantRange &CR) const
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/IR/
ConstantRange.h 146 bool contains(const ConstantRange &CR) const;
169 /// Compare set size of this range with the range CR.
170 bool isSizeStrictlySmallerThan(const ConstantRange &CR) const;
188 bool operator==(const ConstantRange &CR) const {
189 return Lower == CR.Lower && Upper == CR.Upper;
191 bool operator!=(const ConstantRange &CR) const {
192 return !operator==(CR);
200 ConstantRange difference(const ConstantRange &CR) const;
208 ConstantRange intersectWith(const ConstantRange &CR) const
    [all...]

Completed in 778 milliseconds

1 2 3 4 5 6 7 8 91011>>