Searched refs:isnan (Results 1 - 25 of 49) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/
H A Disnanf-nolibm.h18 /* Get declaration of isnan macro or (older) isnanf function. */
21 /* GCC 4.0 and newer provides three built-ins for isnan. */
24 # elif defined isnan
26 # define isnanf(x) isnan ((float)(x))
H A Disnanl-nolibm.h18 /* Get declaration of isnan macro or (older) isnanl function. */
21 /* GCC 4.0 and newer provides three built-ins for isnan. */
24 # elif defined isnan
26 # define isnanl(x) isnan ((long double)(x))
H A Disnand-nolibm.h18 /* Get declaration of isnan macro. */
21 /* GCC 4.0 and newer provides three built-ins for isnan. */
26 # define isnand(x) isnan ((double)(x))
H A Dmath.in.h589 /* The original <math.h> included above provides a declaration of isnan macro
592 /* GCC 4.0 and newer provides three built-ins for isnan. */
595 # elif defined isnan
597 # define isnanf(x) isnan ((float)(x))
609 This function is a gnulib extension, unlike isnan() which applied only
612 /* The original <math.h> included above provides a declaration of isnan macro. */
614 /* GCC 4.0 and newer provides three built-ins for isnan. */
619 # define isnand(x) isnan ((double)(x))
632 /* The original <math.h> included above provides a declaration of isnan macro or (older) isnanl function. */
634 /* GCC 4.0 and newer provides three built-ins for isnan
674 # undef isnan macro
675 # define isnan macro
682 _GL_WARN_REAL_FLOATING_DECL (isnan); variable
683 # undef isnan macro
684 # define isnan macro
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/include/
H A Dwin32config.h56 #ifndef isnan
57 #define isnan(d) (_isnan(d)) macro
77 #ifndef isnan
78 static int isnan (double d) { function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/include/
H A Dwin32config.h56 #ifndef isnan
57 #define isnan(d) (_isnan(d)) macro
77 #ifndef isnan
78 static int isnan (double d) { function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_setpts.c99 #define D2TS(d) (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d))
108 if (isnan(setpts->var_values[VAR_STARTPTS]))
H A Dvf_select.c178 #define D2TS(d) (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d))
187 if (isnan(select->var_values[VAR_START_PTS]))
189 if (isnan(select->var_values[VAR_START_T]))
H A Dvf_crop.c140 if (isnan(d)) {
H A Dvf_hqdn3d.c240 if (LumSpac < 0 || ChromSpac < 0 || isnan(ChromTmp)) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dmath.h74 #define wxIsNaN(x) isnan(x)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dsetpts.c138 #define D2TS(d) (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d))
146 if (isnan(v)) snprintf(buf, BUF_SIZE, "nan");
159 if (isnan(setpts->var_values[VAR_STARTPTS])) {
H A Df_select.c293 #define D2TS(d) (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d))
302 if (isnan(select->var_values[VAR_START_PTS]))
304 if (isnan(select->var_values[VAR_START_T]))
360 } else if (isnan(res) || res < 0) {
H A Daf_volume.c254 if (isnan(vol->volume)) {
329 #define D2TS(d) (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d))
382 if (isnan(vol->var_values[VAR_STARTPTS])) {
H A Dvf_crop.c123 if (isnan(d)) {
H A Dvf_lut.c248 if (isnan(res)) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Deval.c179 case e_isnan: return e->value * !!isnan(eval_expr(p, e->param[0]));
203 uint64_t r= isnan(p->var[idx]) ? 0 : p->var[idx];
263 if (isnan(v)) {
294 case e_bitand: return isnan(d) || isnan(d2) ? NAN : e->value * ((long int)d & (long int)d2);
295 case e_bitor: return isnan(d) || isnan(d2) ? NAN : e->value * ((long int)d | (long int)d2);
418 else if (strmatch(next, "isnan" )) d->type = e_isnan;
718 return isnan(*d) ? AVERROR(EINVAL) : 0;
788 "isnan(
[all...]
H A Dlibm.h97 static av_always_inline av_const int isnan(float x) function
H A Drational.c111 if (isnan(d))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/
H A Dtrionan.c375 #if (defined(TRIO_COMPILER_SUPPORTS_C99) && defined(isnan)) \
378 * C99 defines isnan() as a macro. UNIX95 defines isnan() as a
383 return isnan(number);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/
H A Dtrionan.c375 #if (defined(TRIO_COMPILER_SUPPORTS_C99) && defined(isnan)) \
378 * C99 defines isnan() as a macro. UNIX95 defines isnan() as a
383 return isnan(number);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dthp.c56 if (d < 0.1 || d > 1000 || isnan(d))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Drational.c112 if (isnan(d))
H A Deval.c149 case e_isnan: return e->value * !!isnan(eval_expr(p, e->param[0]));
283 else if (strmatch(next, "isnan" )) d->type = e_isnan;
539 return isnan(*d) ? AVERROR(EINVAL) : 0;
601 "isnan(1)",
602 "isnan(NAN)",
611 "isnan(sqrt(-1))",
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/
H A Dffplay.c1186 if (!isnan(slave_clock) && (isnan(clock) || fabs(clock - slave_clock) > AV_NOSYNC_THRESHOLD))
1295 if (!isnan(diff) && fabs(diff) < is->max_frame_duration) {
1314 if (isnan(duration) || duration <= 0 || duration > is->max_frame_duration)
1423 if (!redisplay && !isnan(vp->pts))
1720 if (!isnan(diff) && fabs(diff) < AV_NOSYNC_THRESHOLD &&
2157 if (!isnan(diff) && fabs(diff) < AV_NOSYNC_THRESHOLD) {
2453 if (!isnan(is->audio_clock)) {
3361 if (isnan(pos))

Completed in 231 milliseconds

12