/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 | 138 * and <TT>get_appr</tt>. Such applications will treat <TT>CR</tt> as 140 * <TT>java.math.BigInteger</tt>. No subclasses of <TT>CR</tt> 148 * The requires the construction of a subclass of <TT>CR</tt> with 156 * be used for this purpose, since CR inherits from <TT>Number</tt>.) 164 public abstract class CR extends Number { 165 // CR is the basic representation of a number. 216 * Must be defined in subclasses of <TT>CR</tt>. 218 * not ever need to define a <TT>CR</tt> subclass. 225 * Called only with the lock on the <TT>CR</tt> object 263 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...] |
/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/ |
sent.txt | 19 $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 [[^$STerm $ATerm $Close $Sp $Sep $LF $CR $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)* ([$Sep $LF $CR {eof}] | $CR $LF){100} [all...] |
sent_el.txt | 19 $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 [[^$STerm $ATerm $Close $Sp $Sep $LF $CR $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)* ([$Sep $LF $CR {eof}] | $CR $LF){100} [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 | 22 volatile uint16_t CR; 79 WWDG->CR = WWDG_CR_ENABLE | WWDG_TCNT_HIGH | (WWDG_WINDOW_SIZE & WWDG_TCNT_MASK); 86 WWDG->CR = (WWDG->CR & ~WWDG_TCNT_MASK) | WWDG_TCNT_HIGH | (WWDG_WINDOW_SIZE & WWDG_TCNT_MASK);
|
/external/icu/icu4c/source/test/testdata/break_rules/ |
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)? ÷;
|
/packages/apps/ExactCalculator/src/com/android/calculator2/ |
UnifiedReal.java | 20 import com.hp.creals.CR; 39 * exceptions produced by the underlying CR and BoundedRational packages, including 40 * CR.PrecisionOverflowException and CR.AbortedException. 45 private final CR mCrFactor; 62 private UnifiedReal(BoundedRational rat, CR cr) { 67 mCrFactor = cr; 71 public UnifiedReal(CR cr) { [all...] |
/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;
|
/device/linaro/bootloader/edk2/ArmPlatformPkg/FileSystem/BootMonFs/ |
BootMonFsInternal.h | 70 #define BOOTMON_FS_FILE_FROM_FILE_THIS(a) CR (a, BOOTMON_FS_FILE, File, BOOTMON_FS_FILE_SIGNATURE)
71 #define BOOTMON_FS_FILE_FROM_LINK_THIS(a) CR (a, BOOTMON_FS_FILE, Link, BOOTMON_FS_FILE_SIGNATURE)
95 #define BOOTMON_FS_FROM_FS_THIS(a) CR (a, BOOTMON_FS_INSTANCE, Fs, BOOTMON_FS_SIGNATURE)
96 #define BOOTMON_FS_FROM_LINK(a) CR (a, BOOTMON_FS_INSTANCE, Link, BOOTMON_FS_SIGNATURE)
|
/device/linaro/bootloader/edk2/DuetPkg/PciBusNoEnumerationDxe/ |
PciDriverOverride.h | 39 CR (a, PCI_DRIVER_OVERRIDE_LIST, Link, DRIVER_OVERRIDE_SIGNATURE)
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/DataHubDxe/ |
DataHub.h | 75 #define DATA_HUB_INSTANCE_FROM_THIS(this) CR (this, DATA_HUB_INSTANCE, DataHub, DATA_HUB_INSTANCE_SIGNATURE)
93 #define DATA_ENTRY_FROM_LINK(link) CR (link, EFI_DATA_ENTRY, Link, EFI_DATA_ENTRY_SIGNATURE)
129 #define FILTER_ENTRY_FROM_LINK(link) CR (link, DATA_HUB_FILTER_DRIVER, Link, EFI_DATA_HUB_FILTER_DRIVER_SIGNATURE)
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SmbiosDxe/ |
SmbiosDxe.h | 56 #define SMBIOS_INSTANCE_FROM_THIS(this) CR (this, SMBIOS_INSTANCE, Smbios, SMBIOS_INSTANCE_SIGNATURE)
92 #define SMBIOS_ENTRY_FROM_LINK(link) CR (link, EFI_SMBIOS_ENTRY, Link, EFI_SMBIOS_ENTRY_SIGNATURE)
109 #define SMBIOS_HANDLE_ENTRY_FROM_LINK(link) CR (link, SMBIOS_HANDLE_ENTRY, Link, SMBIOS_HANDLE_ENTRY_SIGNATURE)
|
/device/linaro/bootloader/edk2/SecurityPkg/Hash2DxeCrypto/ |
Driver.h | 43 CR ( \
64 CR ( \
72 CR ( \
|