Home
last modified time | relevance | path

Searched refs:isDouble (Results 1 – 23 of 23) sorted by relevance

/external/valgrind/none/tests/amd64/
Dfma4.c80 void showXMM ( XMM* vec, int isDouble ) in showXMM() argument
82 if (isDouble) { in showXMM()
97 void showYMM ( YMM* vec, int isDouble ) in showYMM() argument
100 showXMM ( &vec->xmm[1], isDouble ); in showYMM()
102 showXMM ( &vec->xmm[0], isDouble ); in showYMM()
105 void showBlock ( char* msg, Block* block, int isDouble ) in showBlock() argument
108 printf("r1: "); showYMM(&block->r1, isDouble); printf("\n"); in showBlock()
109 printf("r2: "); showYMM(&block->r2, isDouble); printf("\n"); in showBlock()
110 printf("r3: "); showYMM(&block->r3, isDouble); printf("\n"); in showBlock()
111 printf("r4: "); showYMM(&block->r4, isDouble); printf("\n"); in showBlock()
[all …]
/external/icu/icu4c/source/test/intltest/
Dnmfmtrt.cpp241 if(isDouble(value)) in test()
256 if(isDouble(n)) in test()
305 if(isDouble(a)) in proportionalError()
310 if(isDouble(b)) in proportionalError()
Dnmfmtrt.h51 isDouble(const Formattable& n) in isDouble() function
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/
DAlphaISelDAGToDAG.cpp286 bool isDouble = N->getValueType(0) == MVT::f64; in Select() local
287 EVT T = isDouble ? MVT::f64 : MVT::f32; in Select()
289 return CurDAG->SelectNodeTo(N, isDouble ? Alpha::CPYST : Alpha::CPYSS, in Select()
293 return CurDAG->SelectNodeTo(N, isDouble ? Alpha::CPYSNT : Alpha::CPYSNS, in Select()
DAlphaISelLowering.cpp623 bool isDouble = Op.getValueType() == MVT::f64; in LowerOperation() local
625 SDValue FP = DAG.getNode(isDouble?AlphaISD::CVTQT_:AlphaISD::CVTQS_, dl, in LowerOperation()
626 isDouble?MVT::f64:MVT::f32, LD); in LowerOperation()
630 bool isDouble = Op.getOperand(0).getValueType() == MVT::f64; in LowerOperation() local
633 if (!isDouble) //Promote in LowerOperation()
/external/jsoncpp/src/lib_json/
Djson_reader.cpp509 bool isDouble = false; in decodeNumber() local
511 isDouble = isDouble || in(*inspect, '.', 'e', 'E', '+') || in decodeNumber()
514 if (isDouble) in decodeNumber()
Djson_value.cpp1174 bool Value::isDouble() const { return type_ == realValue || isIntegral(); } in isDouble() function in Json::Value
1176 bool Value::isNumeric() const { return isIntegral() || isDouble(); } in isNumeric()
/external/clang/test/ARCMT/
Dobjcmt-atomic-property.m215 - (BOOL)isDouble; // Not a valid property method
Dobjcmt-ns-nonatomic-iosonly.m222 - (BOOL)isDouble; // Not a valid property method
Dobjcmt-property.m218 - (BOOL)isDouble; // Not a valid property method
Dobjcmt-atomic-property.m.result190 - (BOOL)isDouble; // Not a valid property
Dobjcmt-ns-nonatomic-iosonly.m.result197 - (BOOL)isDouble; // Not a valid property
Dobjcmt-property.m.result193 - (BOOL)isDouble; // Not a valid property
/external/webrtc/webrtc/base/
Djson.cc30 } else if (in.isDouble()) { in GetStringFromJson()
/external/jsoncpp/
DNEWS.txt13 * isDouble and isFloat now return true for all numeric values, since all
/external/swiftshader/third_party/LLVM/lib/VMCore/
DAsmWriter.cpp719 bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble; in WriteConstantInternal() local
720 double Val = isDouble ? CFP->getValueAPF().convertToDouble() : in WriteConstantInternal()
747 if (!isDouble) in WriteConstantInternal()
/external/jsoncpp/include/json/
Dvalue.h283 bool isDouble() const;
/external/clang/utils/TableGen/
DNeonEmitter.cpp177 bool isDouble() const { return Float && ElementBitwidth == 64; } in isDouble() function in __anon66c363900111::Type
2276 if (T.isDouble() || (T.isPoly() && T.isLong())) in run()
2309 if (T.isDouble() || (T.isPoly() && T.isLong())) in run()
/external/protobuf/conformance/third_party/jsoncpp/
Djson.h739 bool isDouble() const;
Djsoncpp.cpp3711 bool Value::isDouble() const { return type_ == realValue || isIntegral(); } in isDouble() function in Json::Value
3713 bool Value::isNumeric() const { return isIntegral() || isDouble(); } in isNumeric()
/external/llvm/lib/IR/
DAsmWriter.cpp1150 bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble; in WriteConstantInternal() local
1154 double Val = isDouble ? CFP->getValueAPF().convertToDouble() : in WriteConstantInternal()
1181 if (!isDouble) in WriteConstantInternal()
/external/jsoncpp/src/test_lib_json/
Dmain.cpp1276 JSONTEST_ASSERT_EQUAL(check.isDouble_, value.isDouble()); in checkIs()
/external/llvm/lib/Target/Hexagon/
DHexagonInstrInfo.td4660 class TFR_CR_RS_base<RegisterClass CTRC, RegisterClass RC, bit isDouble>
4669 let Inst{24} = isDouble;