Searched refs:MODE (Results 1 - 25 of 291) sorted by relevance

1234567891011>>

/netbsd-current/external/bsd/ntp/dist/tests/sandbox/
H A Dmodetoa.c11 const int MODE = 3; // Should be "client" local
12 TEST_ASSERT_EQUAL_STRING("client", modetoa(MODE));
14 // EXPECT_STREQ("client", modetoa(MODE));
18 const int MODE = 100; local
20 TEST_ASSERT_EQUAL_STRING("mode#1001", modetoa(MODE));
21 // EXPECT_STREQ("mode#100", modetoa(MODE));
/netbsd-current/external/bsd/ntp/dist/tests/libntp/
H A Dmodetoa.c25 const int MODE = 3; // Should be "client" local
27 TEST_ASSERT_EQUAL_STRING("client", modetoa(MODE));
32 const int MODE = 100; local
34 TEST_ASSERT_EQUAL_STRING("mode#100", modetoa(MODE));
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/pa/
H A Dpa32-regs.h161 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 \
180 || (MODE)
[all...]
H A Dpa64-regs.h131 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 \
146 || (MODE) == SCmode || (MODE) == DCmode \
147 || (MODE)
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/config/pa/
H A Dpa32-regs.h161 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 \
180 || (MODE)
[all...]
H A Dpa64-regs.h131 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 \
146 || (MODE) == SCmode || (MODE) == DCmode \
147 || (MODE)
[all...]
/netbsd-current/sys/external/bsd/drm2/include/linux/
H A Dmoduleparam.h56 #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) \
/netbsd-current/external/gpl3/gcc/dist/gcc/config/i386/
H A Di386.h644 /* Whether to allow x87 floating-point arithmetic on MODE (one of
647 #define X87_ENABLE_ARITH(MODE) \
650 || (MODE) == XFmode)
653 IMODE (HImode, SImode or DImode) to MODE. */
654 #define X87_ENABLE_FLOAT(MODE, IMODE) \
657 || (MODE) == XFmode \
658 || ((MODE) == DFmode && (IMODE) == SImode) \
778 /* Decide whether a variable of mode MODE should be 128 bit aligned. */
779 #define ALIGN_MODE_128(MODE) \
780 ((MODE)
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dmachmode.h67 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]
100 /* Get the general kind of object that mode MODE represents
104 #define GET_MODE_CLASS(MODE) ((enum mode_class) mode_class[MODE])
106 /* Nonzero if MODE is an integral mode. */
107 #define INTEGRAL_MODE_P(MODE) \
108 (GET_MODE_CLASS (MODE)
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dmachmode.h67 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]
100 /* Get the general kind of object that mode MODE represents
104 #define GET_MODE_CLASS(MODE) ((enum mode_class) mode_class[MODE])
106 /* Nonzero if MODE is an integral mode. */
107 #define INTEGRAL_MODE_P(MODE) \
108 (GET_MODE_CLASS (MODE)
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/m68k/
H A Dm68kemb.h24 #define LIBCALL_VALUE(MODE) \
25 m68k_libcall_value (MODE)
/netbsd-current/external/gpl3/gcc/dist/gcc/config/m68k/
H A Dm68kemb.h24 #define LIBCALL_VALUE(MODE) \
25 m68k_libcall_value (MODE)
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/i386/
H A Di386.h801 /* Whether to allow x87 floating-point arithmetic on MODE (one of
804 #define X87_ENABLE_ARITH(MODE) \
807 || (MODE) == XFmode)
810 IMODE (HImode, SImode or DImode) to MODE. */
811 #define X87_ENABLE_FLOAT(MODE, IMODE) \
814 || (MODE) == XFmode \
815 || ((MODE) == DFmode && (IMODE) == SImode) \
935 /* Decide whether a variable of mode MODE should be 128 bit aligned. */
936 #define ALIGN_MODE_128(MODE) \
937 ((MODE)
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/opcodes/
H A Dh8300-dis.c86 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)
[all...]
/netbsd-current/external/gpl3/binutils/dist/opcodes/
H A Dh8300-dis.c86 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)
[all...]
/netbsd-current/external/gpl3/gdb/dist/opcodes/
H A Dh8300-dis.c86 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)
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/opcodes/
H A Dh8300-dis.c86 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)
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/epiphany/
H A Depiphany.h111 #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; \
402 needed to represent mode MODE in a register of class CLASS. */
403 #define CLASS_MAX_NREGS(CLASS, MODE) \
404 ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
526 /* Return boolean indicating arg of type TYPE and mode MODE wil
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/config/epiphany/
H A Depiphany.h111 #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; \
402 needed to represent mode MODE in a register of class CLASS. */
403 #define CLASS_MAX_NREGS(CLASS, MODE) \
404 ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
526 /* Return boolean indicating arg of type TYPE and mode MODE wil
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/config/arm/
H A Darm.h637 #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
638 if (GET_MODE_CLASS (MODE) == MODE_INT \
639 && GET_MODE_SIZE (MODE) < 4) \
641 (MODE) = SImode; \
911 /* The number of (integer) registers required to hold a quantity of type MODE.
913 #define ARM_NUM_REGS(MODE) \
914 ARM_NUM_INTS (GET_MODE_SIZE (MODE))
916 /* The number of (integer) registers required to hold a quantity of TYPE MODE. */
917 #define ARM_NUM_REGS2(MODE, TYPE) \
918 ARM_NUM_INTS ((MODE)
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/rs6000/
H A Drs6000.h332 #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)
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/arm/
H A Darm.h634 #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
635 if (GET_MODE_CLASS (MODE) == MODE_INT \
636 && GET_MODE_SIZE (MODE) < 4) \
638 (MODE) = SImode; \
908 /* The number of (integer) registers required to hold a quantity of type MODE.
910 #define ARM_NUM_REGS(MODE) \
911 ARM_NUM_INTS (GET_MODE_SIZE (MODE))
913 /* The number of (integer) registers required to hold a quantity of TYPE MODE. */
914 #define ARM_NUM_REGS2(MODE, TYPE) \
915 ARM_NUM_INTS ((MODE)
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/aarch64/
H A Daarch64.h39 #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
40 if (GET_MODE_CLASS (MODE) == MODE_INT \
41 && GET_MODE_SIZE (MODE) < 4) \
43 if (MODE == QImode || MODE == HImode) \
45 MODE = SImode; \
807 #define LIBCALL_VALUE(MODE) \
808 gen_rtx_REG (MODE, FLOAT_MODE_P (MODE) ? V0_REGNUM : R0_REGNUM)
951 #define BLOCK_REG_PADDING(MODE, TYP
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/config/aarch64/
H A Daarch64.h36 #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, TYP
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/config/rs6000/
H A Drs6000.h332 #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)
[all...]

Completed in 407 milliseconds

1234567891011>>