Searched refs:isnan (Results 1 - 25 of 111) sorted by path

12345

/macosx-10.9.5/CF-855.17/
H A DCFNumber.c37 #define isnan(A) _isnan(A) macro
562 if (isnan(d)) {
596 if (isnan(f)) {
817 if (isnan(d)) {
866 if (isnan(d)) {
1058 if (isnan(f)) cached = kCFNumberNaN;
1062 if (isnan(d)) cached = kCFNumberNaN;
1241 if (isnan(d1) && isnan(d2)) return kCFCompareEqualTo;
1242 if (isnan(d
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSValueRef.cpp299 if (std::isnan(value))
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/tests/
H A Dtestapi.c56 using std::isnan; member in class:std
80 // FIXME <rdar://4668451> - On i386 the isnan(double) macro tries to map to the isnan(float) function,
83 if (number != expectedValue && !(isnan((float)number) && isnan((float)expectedValue))) {
1404 // FIXME <rdar://4668451> - On i386 the isnan(double) macro tries to map to the isnan(float) function,
1407 ASSERT(isnan((float)JSValueToNumber(context, jsObjectNoProto, &exception)));
/macosx-10.9.5/JavaScriptCore-7537.78.1/
H A DJSCTypedArrayStubs.h177 if (std::isnan((double)result))\
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecompiler/
H A DBytecodeGenerator.cpp1123 if (std::isnan(number) || number == HashTraits<double>::emptyValue() || HashTraits<double>::isDeletedValue(number))
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGByteCodeParser.cpp668 ASSERT(std::isnan(m_codeBlock->getConstant(FirstConstantRegisterIndex + m_constantNaN).asDouble()));
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DDateConstructor.cpp202 if (std::isnan(doubleArguments[0])
203 || std::isnan(doubleArguments[1])
204 || (n >= 3 && std::isnan(doubleArguments[2]))
205 || (n >= 4 && std::isnan(doubleArguments[3]))
206 || (n >= 5 && std::isnan(doubleArguments[4]))
207 || (n >= 6 && std::isnan(doubleArguments[5]))
208 || (n >= 7 && std::isnan(doubleArguments[6])))
H A DDateInstance.cpp64 if (std::isnan(milli))
80 if (std::isnan(milli))
H A DDatePrototype.cpp836 if (std::isnan(milli))
852 if (std::isnan(milli))
897 if (!exec->argumentCount() || std::isnan(milli)) {
942 if (numArgsToUse == 3 && std::isnan(milli))
1066 if (std::isnan(milli))
H A DJSCJSValue.cpp49 return std::isnan(d) ? 0.0 : trunc(d);
H A DJSDateMath.cpp231 if (std::isnan(ms))
246 if (std::isnan(value))
H A DJSGlobalObjectFunctions.cpp563 return JSValue::encode(jsBoolean(std::isnan(exec->argument(0).toNumber(exec))));
H A DMathObject.cpp179 if (std::isnan(val)) {
195 if (std::isnan(val)) {
249 if (std::isnan(arg2))
H A DPropertyDescriptor.cpp179 if (std::isnan(x))
180 return std::isnan(y);
/macosx-10.9.5/OpenAL-52.1/Source/OpenAL/
H A DoalContext.cpp837 if (isnan(posX) || isnan(posY) || isnan(posZ))
889 if (isnan(forwardX) || isnan(forwardY) || isnan(forwardZ) || isnan(upX) || isnan(upY) || isnan(upZ))
H A DoalSource.cpp80 if (isnan(inValue) || (inValue == 0.0))
584 if (isnan(inX) || isnan(inY) || isnan(inZ))
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediasource/
H A DMediaSource.cpp97 if (duration < 0.0 || std::isnan(duration)) {
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DAudioBufferSourceNode.cpp452 bool isTotalRateValid = !std::isnan(totalRate) && !std::isinf(totalRate);
H A DAudioParam.cpp61 if (!std::isnan(value) && !std::isinf(value))
H A DAudioParamTimeline.cpp68 return !std::isnan(x) && !std::isinf(x);
H A DPannerNode.cpp47 if (std::isnan(x) || std::isinf(x))
/macosx-10.9.5/WebCore-7537.78.1/
H A DWebCorePrefix.h143 #define isnan _isnan
149 #undef isnan
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DIDBBindingUtilities.cpp115 if (value.isNumber() && !std::isnan(value.toNumber(exec)))
119 if (value.inherits(&DateInstance::s_info) && !std::isnan(valueToDate(exec, value)))
H A DJSDOMBinding.cpp300 if (std::isnan(x) || std::isinf(x)) {
335 if (std::isnan(x) || std::isinf(x) || !x)
366 if (std::isnan(x) || std::isinf(x) || !x)
H A DJSDataViewCustom.cpp84 result = std::isnan(value) ? jsNaN() : jsNumber(value);

Completed in 553 milliseconds

12345