Searched refs:MN_FLOAT (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10/zsh-61/zsh/Src/
H A Dmath.c460 yyval.type = MN_FLOAT;
484 yyval.type = MN_FLOAT;
498 yyval.type = MN_FLOAT;
548 yyval.type = MN_FLOAT;
938 if (marg.type & MN_FLOAT) {
1030 if (a.type & MN_FLOAT) {
1034 if (b.type & MN_FLOAT) {
1050 a.type = MN_FLOAT;
1054 b.type = MN_FLOAT;
1084 if (c.type == MN_FLOAT)
[all...]
H A Dcond.c238 if (((mn1.type|mn2.type) & (MN_INTEGER|MN_FLOAT)) ==
239 (MN_INTEGER|MN_FLOAT)) {
242 mn1.type = MN_FLOAT;
246 mn2.type = MN_FLOAT;
252 return !((mn1.type & MN_FLOAT) ? (mn1.u.d == mn2.u.d) :
255 return !((mn1.type & MN_FLOAT) ? (mn1.u.d != mn2.u.d) :
258 return !((mn1.type & MN_FLOAT) ? (mn1.u.d < mn2.u.d) :
261 return !((mn1.type & MN_FLOAT) ? (mn1.u.d > mn2.u.d) :
264 return !((mn1.type & MN_FLOAT) ? (mn1.u.d <= mn2.u.d) :
267 return !((mn1.type & MN_FLOAT)
[all...]
H A Dparams.c2230 mn.type = MN_FLOAT;
2359 v->pm->gsu.f->setfn(v->pm, (mn.type & MN_FLOAT) ? mn.u.d :
2681 if (lhs.type == MN_FLOAT) {
2682 if ((rhs.type) == MN_FLOAT)
H A Dsubst.c3762 if ((v.type & MN_FLOAT) && !outputradix)
3765 if (v.type & MN_FLOAT)
H A Dzsh.h70 #define MN_FLOAT 2 /* mnumber is floating point */ macro
/macosx-10.10/zsh-61/zsh/Src/Modules/
H A Dmathfunc.c192 argi = (argv->type == MN_FLOAT) ? (zlong)argv->u.d : argv->u.l;
197 argi = (argv[1].type == MN_FLOAT) ? (zlong)argv[1].u.d :
205 ret.type = MN_FLOAT;
551 ret.type = MN_FLOAT;
H A Dexample.c125 ret.type = (f ? MN_FLOAT : MN_INTEGER);
H A Dsystem.c141 if (to_mn.type == MN_FLOAT)
167 if (to_mn.type == MN_FLOAT) {

Completed in 138 milliseconds