HomeSort by: relevance | last modified time | path
    Searched refs:LDOUBLE (Results 1 - 25 of 72) sorted by relevancy

1 2 3

  /src/external/bsd/pcc/dist/pcc/arch/powerpc/
local2.c 401 else if (p->n_op == PLUS && p->n_type == LDOUBLE) ch = "addtf3";
405 else if (p->n_op == MINUS && p->n_type == LDOUBLE) ch = "subtf3";
409 else if (p->n_op == MUL && p->n_type == LDOUBLE) ch = "multf3";
413 else if (p->n_op == DIV && p->n_type == LDOUBLE) ch = "divtf3";
417 else if (p->n_op == UMINUS && p->n_type == LDOUBLE) ch = "negtf2";
421 else if (p->n_op == EQ && l->n_type == LDOUBLE) ch = "eqtf2";
425 else if (p->n_op == NE && l->n_type == LDOUBLE) ch = "netf2";
429 else if (p->n_op == GE && l->n_type == LDOUBLE) ch = "getf2";
433 else if (p->n_op == LE && l->n_type == LDOUBLE) ch = "letf2";
437 else if (p->n_op == GT && l->n_type == LDOUBLE) ch = "gttf2"
    [all...]
  /src/external/bsd/pcc/dist/pcc/arch/arm/
local2.c 498 else if (p->n_op == PLUS && p->n_type == LDOUBLE) ch = "adddf3";
502 else if (p->n_op == MINUS && p->n_type == LDOUBLE) ch = "subdf3";
506 else if (p->n_op == MUL && p->n_type == LDOUBLE) ch = "muldf3";
510 else if (p->n_op == DIV && p->n_type == LDOUBLE) ch = "divdf3";
514 else if (p->n_op == UMINUS && p->n_type == LDOUBLE) ch = "negdf2";
518 else if (p->n_op == EQ && l->n_type == LDOUBLE) ch = "eqdf2";
522 else if (p->n_op == NE && l->n_type == LDOUBLE) ch = "nedf2";
526 else if (p->n_op == GE && l->n_type == LDOUBLE) ch = "gedf2";
530 else if (p->n_op == LE && l->n_type == LDOUBLE) ch = "ledf2";
534 else if (p->n_op == GT && l->n_type == LDOUBLE) ch = "gtdf2"
    [all...]
local.c 173 l->n_type != LDOUBLE && p->n_type != LDOUBLE) {
219 case LDOUBLE:
244 l->n_type == LDOUBLE)) {
333 if (t == FLOAT || t == DOUBLE || t == LDOUBLE)
417 case LDOUBLE:
  /src/external/bsd/pcc/dist/pcc/arch/mips/
local2.c 424 else if (p->n_op == PLUS && p->n_type == LDOUBLE) ch = "addtf3";
428 else if (p->n_op == MINUS && p->n_type == LDOUBLE) ch = "subtf3";
432 else if (p->n_op == MUL && p->n_type == LDOUBLE) ch = "multf3";
436 else if (p->n_op == DIV && p->n_type == LDOUBLE) ch = "divtf3";
440 else if (p->n_op == UMINUS && p->n_type == LDOUBLE) ch = "negtf2";
444 else if (p->n_op == EQ && l->n_type == LDOUBLE) ch = "eqtf2";
448 else if (p->n_op == NE && l->n_type == LDOUBLE) ch = "netf2";
452 else if (p->n_op == GE && l->n_type == LDOUBLE) ch = "getf2";
456 else if (p->n_op == LE && l->n_type == LDOUBLE) ch = "letf2";
460 else if (p->n_op == GT && l->n_type == LDOUBLE) ch = "gttf2"
    [all...]
macdefs.h 132 #define szty(t) (((t) == DOUBLE || (t) == LDOUBLE || \
229 (x) == DOUBLE || (x) == LDOUBLE || (x) == FLOAT ? \
local.c 149 if (r->n_type >= FLOAT && r->n_type <= LDOUBLE)
219 l->n_type != LDOUBLE && p->n_type != LDOUBLE) {
247 l->n_type == LDOUBLE)) {
255 p->n_type == LDOUBLE) && (DEUNSIGN(l->n_type) == CHAR ||
303 case LDOUBLE:
497 case LDOUBLE:
  /src/usr.bin/xlint/common/
inittyp.c 102 typeinfo("long double", LDOUBLE, LDOUBLE, LDOUBLE_SIZE, 3, 'f'),
lint.h 82 LDOUBLE, /* long double */
  /src/external/bsd/ntp/dist/libntp/
snprintf.c 404 #ifndef LDOUBLE
406 #define LDOUBLE long double
408 #define LDOUBLE double
410 #endif /* !defined(LDOUBLE) */
542 static void fmtflt(char *, size_t *, size_t, LDOUBLE, int, int, int, int *);
545 static int getexponent(LDOUBLE);
547 static UINTMAX_T cast(LDOUBLE);
548 static UINTMAX_T myround(LDOUBLE);
549 static LDOUBLE mypow10(int);
557 LDOUBLE fvalue
    [all...]
  /src/external/bsd/pcc/dist/pcc/arch/pdp11/
local.c 177 if (t == FLOAT || t == DOUBLE || t == LDOUBLE ||
276 case LDOUBLE:
286 case LDOUBLE:
335 case LDOUBLE:
  /src/external/bsd/pcc/dist/pcc/cc/ccom/
builtins.c 621 if ((t1 >= FLOAT && t1 <= LDOUBLE) ||
622 (t2 >= FLOAT && t2 <= LDOUBLE))
749 builtin_huge_vall(const struct bitable *bt, P1ND *a) VALX(long double,LDOUBLE)
840 static TWORD fmaxlt[] = { LDOUBLE, LDOUBLE };
843 static TWORD scalbnlt[] = { LDOUBLE, INT };
853 { "creall", builtin_cir, BTNOPROTO, 1, 0, LDOUBLE },
856 { "cimagl", builtin_cir, BTNOPROTO, 1, 0, LDOUBLE },
904 { "__builtin_copysignl", builtin_unimp, 0, 2, fmaxlt, LDOUBLE },
912 { "__builtin_fabsl", builtin_unimp, 0, 1, fmaxlt, LDOUBLE },
    [all...]
  /src/external/bsd/pcc/dist/pcc/arch/amd64/
macdefs.h 142 #define szty(t) (t < LONG || t == FLOAT ? 1 : t == LDOUBLE ? 4 : 2)
217 p->n_type == LDOUBLE ? SCREG : SAREG)
230 x == LDOUBLE ? 32 : RAX)
local.c 382 p->n_type == LDOUBLE) {
401 l->n_type != LDOUBLE && p->n_type != LDOUBLE) {
472 case LDOUBLE:
504 l->n_type == LDOUBLE)) {
573 sps.stype = LDOUBLE;
659 if (t == LDOUBLE)
705 case LDOUBLE:
  /src/external/bsd/pcc/dist/pcc/arch/m68k/
macdefs.h 124 #define szty(t) ((t) == LDOUBLE ? 3 : \
224 p->n_type == LDOUBLE ? SDREG : p->n_type == LONGLONG || \
237 #define RETREG(x) ((x) == FLOAT || (x) == DOUBLE || (x) == LDOUBLE ? FP0 : \
local2.c 217 t == LDOUBLE ? "x" : "l");
553 else if (lt == LDOUBLE)
561 else if (lt == LDOUBLE)
576 case LDOUBLE:
713 if (t == FLOAT || t == DOUBLE || t == LDOUBLE)
727 if (t == LDOUBLE)
  /src/external/bsd/pcc/dist/pcc/arch/sparc64/
local.c 77 l->n_type != DOUBLE && p->n_type != LDOUBLE) {
88 if ((l->n_type == FLOAT || l->n_type == DOUBLE || l->n_type == LDOUBLE)
120 case LDOUBLE:
  /src/include/
tgmath.h 109 #define __TG_FN1(fn, a) __TG_GFN1(fn, a, FLOAT, LDOUBLE)
110 #define __TG_FN1x(fn, a, b) __TG_GFN1x(fn, a, b, FLOAT, LDOUBLE)
111 #define __TG_FN2(fn, a, b) __TG_GFN2(fn, a, b, FLOAT, LDOUBLE)
112 #define __TG_FN2x(fn, a, b, c) __TG_GFN2x(fn, a, b, c, FLOAT, LDOUBLE)
113 #define __TG_FN3(fn, a, b, c) __TG_GFN3(fn, a, b, c, FLOAT, LDOUBLE)
  /src/external/bsd/pcc/dist/pcc/arch/nova/
local.c 184 if (r->n_type >= FLOAT && r->n_type <= LDOUBLE)
238 l->n_type != LDOUBLE && p->n_type != LDOUBLE) {
291 case LDOUBLE:
313 l->n_type == LDOUBLE)) {
507 case LDOUBLE:
macdefs.h 117 #define szty(t) ((t) == DOUBLE || (t) == LDOUBLE || \
  /src/external/bsd/pcc/dist/pcc/arch/i86/
macdefs.h 137 (t) == LONG || t == ULONG || (t) == LONGLONG || (t) == ULONGLONG) ? 2 : (t) == LDOUBLE ? 3 : 1)
266 (p->n_type >= FLOAT && p->n_type <= LDOUBLE ? SDREG : SAREG)))
280 x == FLOAT || x == DOUBLE || x == LDOUBLE ? 31 : AX)
local.c 210 l->n_type != LDOUBLE && p->n_type != LDOUBLE) {
253 l->n_type == LDOUBLE)) {
344 if (t == FLOAT || t == DOUBLE || t == LDOUBLE)
398 case LDOUBLE:
  /src/external/bsd/pcc/dist/pcc/arch/hppa/
macdefs.h 115 (t) == LDOUBLE ? 2 : 1)
443 (p->n_type == DOUBLE || p->n_type == LDOUBLE ? SDREG : SAREG)))
448 #define PERMTYPE(x) ((x) < 32? INT : ((x) < 64? LONGLONG : ((x) < 93? LDOUBLE : FLOAT)))
457 x == DOUBLE || x == LDOUBLE ? FR4 : RET0)
local.c 86 case LDOUBLE:
171 if (r->n_type >= FLOAT && r->n_type <= LDOUBLE)
230 l->n_type != LDOUBLE && p->n_type != LDOUBLE) {
288 case LDOUBLE:
319 l->n_type == LDOUBLE)) {
669 case LDOUBLE:
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
sqltypes.d 27 alias double SDOUBLE, LDOUBLE;
  /src/usr.bin/xlint/lint2/
chk.c 700 sz = LDOUBLE;
728 if (alt || sz == LDOUBLE) {
748 if ((alt && fc == 'u') || sz == LDOUBLE)
778 if (sz != DOUBLE && sz != LDOUBLE)
800 if (fwidth || prec || alt || zero || sz == LDOUBLE)
872 sz = LDOUBLE;
895 if (sz == LDOUBLE)
912 if (sz == LDOUBLE)
963 if (sz != NO_TSPEC && sz != LONG && sz != LDOUBLE)
972 } else if (sz != LDOUBLE) {
    [all...]

Completed in 151 milliseconds

1 2 3