Searched defs:CR (Results 1 - 25 of 39) sorted by relevance

12

/external/clang/test/CodeGen/
H A Dpointer-signext.c10 #define CR(Record, TYPE, Field) \ macro
30 Entry = CR (Link, MEMORY_MAP, Link);
/external/llvm/include/llvm/Support/
H A 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);
160 ConstantRange difference(const ConstantRange &CR) const;
169 ConstantRange intersectWith(const ConstantRange &CR) const;
177 ConstantRange unionWith(const ConstantRange &CR) const;
262 inline raw_ostream &operator<<(raw_ostream &OS, const ConstantRange &CR) { argument
[all...]
/external/clang/lib/Basic/
H A DConvertUTFWrapper.cpp66 ConversionResult CR = ConvertUTF32toUTF8(&SourceStart, SourceEnd, local
69 if (CR != conversionOK)
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_1/
H A Djsref.js11 var CR = "\n"; variable
131 print( string + BR + CR );
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/
H A Djsref.js11 var CR = "\n"; variable
129 print( string + BR + CR );
/external/apache-http/src/org/apache/http/protocol/
H A DHTTP.java45 public static final int CR = 13; // <US-ASCII CR, carriage return (13)> field in class:HTTP
93 return ch == SP || ch == HT || ch == CR || ch == LF;
/external/llvm/lib/Analysis/IPA/
H A DCallGraph.cpp309 CallRecord &CR = *I; local
310 if (CR.second == Callee && CR.first == 0) {
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/
H A Djsref.js16 var CR = "\n"; variable
139 print( string + BR + CR );
/external/guava/guava/src/com/google/common/base/
H A DAscii.java185 public static final byte CR = 13; field in class:Ascii
/external/icu4c/test/intltest/
H A Didnaconf.cpp135 static const UChar CR = 0x0d; local
137 // CR LF
138 if ( c == CR && curOffset + 1 < len && base[curOffset + 1] == LF){
142 // CR or LF
143 if ( c == CR || c == LF) {
/external/icu4c/tools/genrb/
H A Dread.c33 #define CR 0x000D macro
183 if(c == CR || c == LF){
196 if(c == CR || c == LF){
197 if(isNLUnescaped == FALSE && prevC!=CR){
H A Dparse.c43 #define CR 0x000D macro
374 while(c != CR && c != LF) {
390 else if (!quoted && (c == SPACE || c == TAB || c == CR || c == LF))
H A Dwrtxml.cpp280 /* Disallow C0 controls except TAB, CR, LF*/
353 #define CR 0x000A macro
371 case CR:
/external/llvm/lib/Support/
H A DConstantRange.cpp52 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
51 makeICmpRegion(unsigned Pred, const ConstantRange &CR) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp356 ConstraintRangeTy CR = state->get<ConstraintRange>(); local
359 for (ConstraintRangeTy::iterator I = CR.begin(), E = CR.end(); I != E; ++I) {
362 CR = CRFactory.remove(CR, sym);
365 return state->set<ConstraintRange>(CR);
H A DMemRegion.cpp518 os << "StaticGlobalsMemSpace{" << CR << '}'; local
626 const CodeTextRegion *CR) {
627 if (!CR) {
637 StaticGlobalSpaceRegion *&R = StaticsGlobalSpaceRegions[CR];
642 new (R) StaticGlobalSpaceRegion(this, CR);
625 getGlobalsRegion(MemRegion::Kind K, const CodeTextRegion *CR) argument
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuv_sw.c938 int CR, CB; local
1009 CB = CR = (i-128);
1010 Cr_r_tab[i] = (int) ( (0.419/0.299) * CR);
1011 Cr_g_tab[i] = (int) (-(0.299/0.419) * CR);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/
H A Djsref.js24 var CR = "\n"; variable
182 print( string + BR + CR );
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/
H A Djsref.js18 var CR = "\n"; variable
142 print( string + BR + CR );
/external/llvm/include/llvm/Analysis/
H A DScalarEvolution.h385 const ConstantRange &CR) {
387 UnsignedRanges.insert(std::make_pair(S, CR));
389 Pair.first->second = CR;
395 const ConstantRange &CR) {
397 SignedRanges.insert(std::make_pair(S, CR));
399 Pair.first->second = CR;
384 setUnsignedRange(const SCEV *S, const ConstantRange &CR) argument
394 setSignedRange(const SCEV *S, const ConstantRange &CR) argument
/external/icu4c/common/
H A Dubidiimp.h126 #define CR 0x000D macro
H A Duprops.h285 CR =0x000d, enumerator in enum:__anon5846
H A Ducnv2022.c81 #define CR 0x0D macro
1942 if(sourceChar == CR || sourceChar == LF) {
2139 case CR:
2970 if(sourceChar == CR || sourceChar == LF) {
3319 case CR:
/external/llvm/lib/Analysis/
H A DLazyValueInfo.cpp99 static LVILatticeVal getRange(ConstantRange CR) { argument
101 Res.markConstantRange(CR);
1038 ConstantRange CR = Result.getConstantRange(); local
1039 if (const APInt *SingleVal = CR.getSingleElement())
1054 ConstantRange CR = Result.getConstantRange(); local
1055 if (const APInt *SingleVal = CR.getSingleElement())
1083 ConstantRange CR = Result.getConstantRange();
1085 if (!CR.contains(CI->getValue()))
1088 if (CR.isSingleElement() && CR
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h224 const CodeTextRegion *CR; member in class:clang::ento::StaticGlobalSpaceRegion
227 : GlobalsSpaceRegion(mgr, StaticGlobalSpaceRegionKind), CR(cr) {}
234 const CodeTextRegion *getCodeRegion() const { return CR; }

Completed in 656 milliseconds

12