HomeSort by relevance Sort by last modified time
    Searched refs:CR (Results 1 - 25 of 280) 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/icu/icu4c/source/data/brkitr/
char.txt 15 $CR = [\p{Grapheme_Cluster_Break = CR}];
39 $CR $LF;
47 [^$Control $CR $LF] $Extend;
49 [^$Control $CR $LF] $SpacingMark;
50 # TODO: Restore if the Prepend set becomes non-empty again: $Prepend [^$Control $CR $LF];
56 $LF $CR;
63 $Extend [^$Control $CR $LF];
64 $SpacingMark [^$Control $CR $LF];
65 # TODO: Restore if the Prepend set becomes non-empty again: [^$Control $CR $LF] $Prepend
    [all...]
sent.txt 16 $CR = [\p{Sentence_Break = CR}];
52 # Rule 3 - break after separators. Keep CR/LF together.
54 $CR $LF;
60 [^$Sep $CR $LF]? ($Extend | $Format)*;
70 $NotLettersEx = [^$OLetter $Upper $Lower $Sep $CR $LF $ATerm $STerm] ($Extend | $Format)*;
77 ($STermEx | $ATermEx) $CloseEx* $SpEx* ($Sep | $CR | $LF)?;
80 [[^$STerm $ATerm $Close $Sp $Sep $LF $CR $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)* .;
81 [[^$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 16 $CR = [\p{Sentence_Break = CR}];
52 # Rule 3 - break after separators. Keep CR/LF together.
54 $CR $LF;
60 [^$Sep $CR $LF]? ($Extend | $Format)*;
70 $NotLettersEx = [^$OLetter $Upper $Lower $Sep $CR $LF $ATerm $STerm] ($Extend | $Format)*;
77 ($STermEx | $ATermEx) $CloseEx* $SpEx* ($Sep | $CR | $LF)?;
80 [[^$STerm $ATerm $Close $Sp $Sep $LF $CR $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)* .;
81 [[^$STerm $ATerm $Close $Sp $Sep $LF $CR $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)* ([$Sep $LF $CR {eof}] | $CR $LF){100}
    [all...]
word.txt 27 $CR = [\p{Word_Break = CR}];
90 # Rule 3 - CR x LF
92 $CR $LF;
99 [^$CR $LF $Newline]? ($Extend | $Format)+;
186 $LF $CR;
189 ($Format | $Extend)* [^$CR $LF $Newline]?;
word_POSIX.txt 27 $CR = [\p{Word_Break = CR}];
90 # Rule 3 - CR x LF
92 $CR $LF;
99 [^$CR $LF $Newline]? ($Extend | $Format)+;
186 $LF $CR;
189 ($Format | $Extend)* [^$CR $LF $Newline]?;
  /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/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/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/misc/platform/stm32f4xx/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 133 bool contains(const ConstantRange &CR) const;
169 bool operator==(const ConstantRange &CR) const {
170 return Lower == CR.Lower && Upper == CR.Upper;
172 bool operator!=(const ConstantRange &CR) const {
173 return !operator==(CR);
181 ConstantRange difference(const ConstantRange &CR) const;
190 ConstantRange intersectWith(const ConstantRange &CR) const;
198 ConstantRange unionWith(const ConstantRange &CR) const;
282 inline raw_ostream &operator<<(raw_ostream &OS, const ConstantRange &CR) {
    [all...]
  /external/clang/test/CodeGen/
pointer-signext.c 10 #define CR(Record, TYPE, Field) \
30 Entry = CR (Link, MEMORY_MAP, Link);
  /packages/apps/ExactCalculator/tests/src/com/android/calculator2/
BRTest.java 21 import com.hp.creals.CR;
35 private static void checkEq(BoundedRational x, CR y, String s) {
38 private static void checkWeakEq(BoundedRational x, CR y, String s) {
53 private final static CR CR_1 = CR.valueOf(1);
55 private final static CR RADIANS_PER_DEGREE = CR.PI.divide(CR.valueOf(180));
56 private final static CR DEGREES_PER_RADIAN = CR.valueOf(180).divide(CR.PI)
    [all...]
  /external/opencv3/modules/videoio/src/
cap_gphoto2.cpp 248 #define CR(GPHOTO2_FUN) do {\
332 CR(gp_abilities_list_new(&abilitiesList));
333 CR(gp_abilities_list_load(abilitiesList, context));
336 CR(gp_port_info_list_new(&capablePorts));
337 CR(gp_port_info_list_load(capablePorts));
340 CR(gp_list_new(&allDevices));
341 CR(gp_camera_autodetect(allDevices, context));
342 CR(numDevices = gp_list_count(allDevices));
388 CR(gp_abilities_list_free(abilitiesList));
390 CR(gp_port_info_list_free(capablePorts))
    [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;
  /external/llvm/lib/Support/
ConvertUTFWrapper.cpp 68 ConversionResult CR = ConvertUTF32toUTF8(&SourceStart, SourceEnd,
71 if (CR != conversionOK)
118 ConversionResult CR =
120 assert(CR != targetExhausted);
122 if (CR != conversionOK) {
156 ConversionResult CR =
158 assert(CR != targetExhausted);
160 if (CR != conversionOK) {
  /external/llvm/lib/ProfileData/
CoverageMapping.cpp 371 for (const auto &CR : Function.CountedRegions)
372 if (CR.Kind == CounterMappingRegion::ExpansionRegion &&
373 FilenameEquivalence[CR.FileID])
374 IsNotExpandedFile[CR.ExpandedFileID] = false;
384 for (const auto &CR : Function.CountedRegions)
385 if (CR.Kind == CounterMappingRegion::ExpansionRegion)
386 IsNotExpandedFile[CR.ExpandedFileID] = false;
417 for (const auto &CR : Function.CountedRegions)
418 if (FileIDs.test(CR.FileID)) {
419 Regions.push_back(CR);
    [all...]
  /device/google/contexthub/firmware/src/platform/stm32f4xx/
crc.c 27 volatile uint32_t CR;
64 mCrcRegs->CR = STM_CRC_CR_RESET;
pwr.c 25 volatile uint32_t CR;
60 volatile uint32_t CR;
237 PWR->CR |= PWR_CR_DBP;
242 uint32_t cr = PWR->CR &~ (PWR_CR_MRVLDS | PWR_CR_LPLVDS | PWR_CR_FPDS | PWR_CR_PDDS | PWR_CR_LPDS); local
253 cr |= PWR_CR_FPDS;
257 cr |= PWR_CR_FPDS | PWR_CR_LPDS;
261 cr |= PWR_CR_LPLVDS | PWR_CR_LPDS;
265 PWR->CR = cr;
    [all...]
rtc.c 36 volatile uint32_t CR; /* 0x08 */
136 RTC->CR &= ~RTC_CR_FMT;
139 RTC->CR |= RTC_CR_BYPSHAD;
229 RTC->CR &= ~RTC_CR_WUTE;
235 RTC->CR &= ~RTC_CR_WUCKSEL_MASK;
237 RTC->CR |= wakeupClock;
243 RTC->CR |= RTC_CR_WUTIE;
247 RTC->CR |= RTC_CR_WUTE;
  /external/clang/lib/StaticAnalyzer/Checkers/
StackAddrEscapeChecker.cpp 54 if (const CompoundLiteralRegion* CR = dyn_cast<CompoundLiteralRegion>(R)) {
55 const CompoundLiteralExpr *CL = CR->getLiteralExpr();
  /packages/apps/ExactCalculator/src/com/android/calculator2/
CalculatorExpr.java 20 import com.hp.creals.CR;
45 * producing both a constructive real (CR), and possibly a BoundedRational result.
48 * The write() method is used to save the current expression. Note that CR provides no
268 private static final ThreadLocal<IdentityHashMap<CR,Integer>>outMap =
269 new ThreadLocal<IdentityHashMap<CR,Integer>>();
282 outMap.set(new IdentityHashMap<CR,Integer>());
299 * The representation includes both CR and possibly BoundedRational values. In order to
305 public final CR value;
310 PreEval(CR val, BoundedRational ratVal, CalculatorExpr expr,
320 // duplicates if they have the same CR value. This avoids
    [all...]
  /external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
StrictLineReader.java 46 private static final byte CR = (byte) '\r';
140 int lineEnd = (i != pos && buf[i - 1] == CR) ? i - 1 : i;
151 int length = (count > 0 && buf[count - 1] == CR) ? count - 1 : count;

Completed in 539 milliseconds

1 2 3 4 5 6 7 8 91011>>