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

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/ntp/dist/tests/sandbox/
modetoa.c 11 const int MODE = 3; // Should be "client"
12 TEST_ASSERT_EQUAL_STRING("client", modetoa(MODE));
14 // EXPECT_STREQ("client", modetoa(MODE));
18 const int MODE = 100;
20 TEST_ASSERT_EQUAL_STRING("mode#1001", modetoa(MODE));
21 // EXPECT_STREQ("mode#100", modetoa(MODE));
  /src/external/bsd/ntp/dist/tests/libntp/
modetoa.c 25 const int MODE = 3; // Should be "client"
27 TEST_ASSERT_EQUAL_STRING("client", modetoa(MODE));
32 const int MODE = 100;
34 TEST_ASSERT_EQUAL_STRING("mode#100", modetoa(MODE));
  /src/external/gpl3/gcc.old/dist/gcc/config/pa/
pa32-regs.h 161 to hold something of mode MODE.
162 This is ordinarily the length in words of a value of mode MODE
169 #define PA_HARD_REGNO_NREGS(REGNO, MODE) \
172 ? COMPLEX_MODE_P (MODE) ? 2 : 1 \
173 : (GET_MODE_SIZE (MODE) + 4 - 1) / 4) \
174 : (GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
178 #define VALID_FP_MODE_P(MODE) \
179 ((MODE) == SFmode || (MODE) == DFmode
    [all...]
pa64-regs.h 36 half addressability when in wide mode. This is not a major performance
131 to hold something of mode MODE.
132 This is ordinarily the length in words of a value of mode MODE
140 #define PA_HARD_REGNO_NREGS(REGNO, MODE) \
141 ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
144 #define VALID_FP_MODE_P(MODE) \
145 ((MODE) == SFmode || (MODE) == DFmode
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/pa/
pa32-regs.h 161 to hold something of mode MODE.
162 This is ordinarily the length in words of a value of mode MODE
169 #define PA_HARD_REGNO_NREGS(REGNO, MODE) \
172 ? COMPLEX_MODE_P (MODE) ? 2 : 1 \
173 : (GET_MODE_SIZE (MODE) + 4 - 1) / 4) \
174 : (GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
178 #define VALID_FP_MODE_P(MODE) \
179 ((MODE) == SFmode || (MODE) == DFmode
    [all...]
pa64-regs.h 36 half addressability when in wide mode. This is not a major performance
131 to hold something of mode MODE.
132 This is ordinarily the length in words of a value of mode MODE
140 #define PA_HARD_REGNO_NREGS(REGNO, MODE) \
141 ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
144 #define VALID_FP_MODE_P(MODE) \
145 ((MODE) == SFmode || (MODE) == DFmode
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/i386/
i386.h 265 /* 64bit Sledgehammer mode. For libgcc2 we make sure this is a
537 /* Extra bits to force on w/ 32-bit mode. */
541 /* Extra bits to force on w/ 64-bit mode. */
577 with the rounding mode forced to 53 bits. */
666 /* Whether to allow x87 floating-point arithmetic on MODE (one of
669 #define X87_ENABLE_ARITH(MODE) \
672 || (MODE) == XFmode)
674 /* Likewise, whether to allow direct conversions from integer mode
675 IMODE (HImode, SImode or DImode) to MODE. */
676 #define X87_ENABLE_FLOAT(MODE, IMODE)
    [all...]
  /src/sys/external/bsd/drm2/include/linux/
moduleparam.h 42 mode_t mode; // 600 (rw) or 400 (r) member in struct:linux_module_param_info
56 #define module_param_named(NAME, VAR, TYPE, MODE) \
62 .mode = MODE, \
66 #define module_param(VAR, TYPE, MODE) module_param_named(VAR, VAR, TYPE, MODE)
69 #define module_param_string(VAR, TYPE, SIZE, MODE) \
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
i386.h 255 /* 64bit Sledgehammer mode. For libgcc2 we make sure this is a
517 /* Extra bits to force on w/ 32-bit mode. */
521 /* Extra bits to force on w/ 64-bit mode. */
557 with the rounding mode forced to 53 bits. */
646 /* Whether to allow x87 floating-point arithmetic on MODE (one of
649 #define X87_ENABLE_ARITH(MODE) \
652 || (MODE) == XFmode)
654 /* Likewise, whether to allow direct conversions from integer mode
655 IMODE (HImode, SImode or DImode) to MODE. */
656 #define X87_ENABLE_FLOAT(MODE, IMODE)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
machmode.h 1 /* Machine mode definitions for GCC; included by rtl.h and tree.h.
40 convert a machine_mode to a specific mode class T, and in which the
44 return typename mode_traits<T>::from_int (mode);
48 res = T (typename mode_traits<T>::from_int (mode));
53 /* Allow direct conversion of enums to specific mode classes only
67 returned T directly from the numerical value of MODE. */
87 /* Get the name of mode MODE as a string. */
90 #define GET_MODE_NAME(MODE) mode_name[MODE]
    [all...]
real.h 160 /* Default rounding mode for operations on this format. */
175 /* The target format used for each floating point mode.
177 float modes indexed by (MODE - first float mode), and entries for
178 decimal float modes indexed by (MODE - first decimal float mode) +
183 #define REAL_MODE_FORMAT(MODE) \
184 (real_format_for_mode[DECIMAL_FLOAT_MODE_P (MODE) \
185 ? (((MODE) - MIN_MODE_DECIMAL_FLOAT) \
187 : GET_MODE_CLASS (MODE) == MODE_FLOAT
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
machmode.h 1 /* Machine mode definitions for GCC; included by rtl.h and tree.h.
41 convert a machine_mode to a specific mode class T, and in which the
45 return typename mode_traits<T>::from_int (mode);
49 res = T (typename mode_traits<T>::from_int (mode));
54 /* Allow direct conversion of enums to specific mode classes only
68 returned T directly from the numerical value of MODE. */
88 /* Get the name of mode MODE as a string. */
91 #define GET_MODE_NAME(MODE) mode_name[MODE]
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/m68k/
m68kemb.h 24 #define LIBCALL_VALUE(MODE) \
25 m68k_libcall_value (MODE)
  /src/external/gpl3/gcc/dist/gcc/config/m68k/
m68kemb.h 24 #define LIBCALL_VALUE(MODE) \
25 m68k_libcall_value (MODE)
  /src/external/gpl3/binutils/dist/opcodes/
h8300-dis.c 86 if ((looking_for & MODE) == DISP)
93 switch (q->args.nib[0] & MODE)
184 else if ((x & MODE) == IMM)
186 else if ((x & MODE) == DBIT || (x & MODE) == KBIT)
188 else if ((x & MODE) == CONST_2)
190 else if ((x & MODE) == CONST_4)
192 else if ((x & MODE) == CONST_8)
194 else if ((x & MODE) == CONST_16)
196 else if ((x & MODE) == REG
    [all...]
  /src/external/gpl3/binutils.old/dist/opcodes/
h8300-dis.c 86 if ((looking_for & MODE) == DISP)
93 switch (q->args.nib[0] & MODE)
184 else if ((x & MODE) == IMM)
186 else if ((x & MODE) == DBIT || (x & MODE) == KBIT)
188 else if ((x & MODE) == CONST_2)
190 else if ((x & MODE) == CONST_4)
192 else if ((x & MODE) == CONST_8)
194 else if ((x & MODE) == CONST_16)
196 else if ((x & MODE) == REG
    [all...]
  /src/external/gpl3/gdb/dist/opcodes/
h8300-dis.c 86 if ((looking_for & MODE) == DISP)
93 switch (q->args.nib[0] & MODE)
184 else if ((x & MODE) == IMM)
186 else if ((x & MODE) == DBIT || (x & MODE) == KBIT)
188 else if ((x & MODE) == CONST_2)
190 else if ((x & MODE) == CONST_4)
192 else if ((x & MODE) == CONST_8)
194 else if ((x & MODE) == CONST_16)
196 else if ((x & MODE) == REG
    [all...]
  /src/external/gpl3/gdb.old/dist/opcodes/
h8300-dis.c 86 if ((looking_for & MODE) == DISP)
93 switch (q->args.nib[0] & MODE)
184 else if ((x & MODE) == IMM)
186 else if ((x & MODE) == DBIT || (x & MODE) == KBIT)
188 else if ((x & MODE) == CONST_2)
190 else if ((x & MODE) == CONST_4)
192 else if ((x & MODE) == CONST_8)
194 else if ((x & MODE) == CONST_16)
196 else if ((x & MODE) == REG
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/arm/
arm.h 382 #define NEON_ENDIAN_LANE_N(mode, n) \
383 (BYTES_BIG_ENDIAN ? GET_MODE_NUNITS (mode) - 1 - n : n)
395 Note: --with-mode is not handled here, that has a special rule
560 /* Nonzero if chip supports integer division instruction in ARM mode. */
563 /* Nonzero if chip supports integer division instruction in Thumb mode. */
642 in a wider mode than that declared by the program. In such cases,
644 type, but kept valid in the wider mode. The signedness of the
647 #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
648 if (GET_MODE_CLASS (MODE) == MODE_INT \
649 && GET_MODE_SIZE (MODE) < 4)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/epiphany/
epiphany.h 55 "%{mfp-mode=int:crtint.o%s} %{mfp-mode=truncate:crtrunc.o%s} " \
105 in a wider mode than that declared by the program. In such cases,
107 type, but kept valid in the wider mode. The signedness of the
111 #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
112 if (GET_MODE_CLASS (MODE) == MODE_INT \
113 && GET_MODE_SIZE (MODE) < 4) \
115 if (MODE == QImode) \
117 else if (MODE == HImode) \
119 (MODE) = SImode;
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/epiphany/
epiphany.h 55 "%{mfp-mode=int:crtint.o%s} %{mfp-mode=truncate:crtrunc.o%s} " \
105 in a wider mode than that declared by the program. In such cases,
107 type, but kept valid in the wider mode. The signedness of the
111 #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
112 if (GET_MODE_CLASS (MODE) == MODE_INT \
113 && GET_MODE_SIZE (MODE) < 4) \
115 if (MODE == QImode) \
117 else if (MODE == HImode) \
119 (MODE) = SImode;
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/arm/
arm.h 376 #define NEON_ENDIAN_LANE_N(mode, n) \
377 (BYTES_BIG_ENDIAN ? GET_MODE_NUNITS (mode) - 1 - n : n)
389 Note: --with-mode is not handled here, that has a special rule
550 /* Nonzero if chip supports integer division instruction in ARM mode. */
553 /* Nonzero if chip supports integer division instruction in Thumb mode. */
632 in a wider mode than that declared by the program. In such cases,
634 type, but kept valid in the wider mode. The signedness of the
637 #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
638 if (GET_MODE_CLASS (MODE) == MODE_INT \
639 && GET_MODE_SIZE (MODE) < 4)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/
aarch64.h 36 #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
37 if (GET_MODE_CLASS (MODE) == MODE_INT \
38 && GET_MODE_SIZE (MODE) < 4) \
40 if (MODE == QImode || MODE == HImode) \
42 MODE = SImode; \
858 #define LIBCALL_VALUE(MODE) \
859 gen_rtx_REG (MODE, FLOAT_MODE_P (MODE) ? V0_REGNUM : R0_REGNUM)
1049 #define BLOCK_REG_PADDING(MODE, TYPE, FIRST)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000.h 332 #define FLOAT128_IEEE_P(MODE) \
334 && ((MODE) == TFmode || (MODE) == TCmode)) \
335 || ((MODE) == KFmode) || ((MODE) == KCmode))
337 #define FLOAT128_IBM_P(MODE) \
339 && ((MODE) == TFmode || (MODE) == TCmode)) \
340 || (TARGET_HARD_FLOAT && ((MODE) == IFmode || (MODE) == ICmode))
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000.h 331 #define FLOAT128_IEEE_P(MODE) \
333 && ((MODE) == TFmode || (MODE) == TCmode)) \
334 || ((MODE) == KFmode) || ((MODE) == KCmode))
336 #define FLOAT128_IBM_P(MODE) \
338 && ((MODE) == TFmode || (MODE) == TCmode)) \
339 || (TARGET_HARD_FLOAT && ((MODE) == IFmode || (MODE) == ICmode))
    [all...]

Completed in 73 milliseconds

1 2 3 4 5 6 7 8 91011>>