| /openbsd-src/gnu/llvm/clang/include/clang/Driver/ |
| H A D | Types.def | 10 // must define the TYPE macro to make use of this information. 14 #ifndef TYPE 15 #error "Define TYPE prior to including this file!" 18 // TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, FLAGS) 38 TYPE("cpp-output", PP_C, INVALID, "i", phases::Compile, phases::… 39 TYPE("c", C, PP_C, "c", phases::Preprocess, phase… 40 TYPE("cl", CL, PP_C, "cl", phases::Preprocess, phase… 41 TYPE("clcpp", CLCXX, PP_CXX, "clcpp", phases::Preprocess, phase… 42 TYPE("cuda-cpp-output", PP_CUDA, INVALID, "cui", phases::Compile, phases::… 43 TYPE("cuda", CUDA, PP_CUDA, "cu", phases::Preprocess, phase… [all …]
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | X86RecognizableInstr.cpp | 896 #define TYPE(str, type) if (s == str) return type; macro 903 TYPE("GR32", TYPE_R32) in typeFromString() 908 TYPE("GR16", TYPE_Rv) in typeFromString() 912 TYPE("GR32", TYPE_Rv) in typeFromString() 914 TYPE("i16mem", TYPE_M) in typeFromString() 915 TYPE("i16imm", TYPE_IMM) in typeFromString() 916 TYPE("i16i8imm", TYPE_IMM) in typeFromString() 917 TYPE("GR16", TYPE_R16) in typeFromString() 918 TYPE("GR16orGR32orGR64", TYPE_R16) in typeFromString() 919 TYPE("i32mem", TYPE_M) in typeFromString() [all …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/java/ |
| H A D | parse.h | 126 #define GET_REAL_TYPE(TYPE) \ argument 127 (TREE_CODE (TYPE) == TREE_LIST ? TREE_PURPOSE (TYPE) : TYPE) 131 #define GET_TYPE_NAME(TYPE) \ argument 132 (TREE_CODE (TYPE_NAME (TYPE)) == IDENTIFIER_NODE ? \ 133 IDENTIFIER_POINTER (TYPE_NAME (TYPE)) : \ 134 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (TYPE)))) 172 #define JFLOAT_TYPE_P(TYPE) (TYPE && TREE_CODE ((TYPE)) == REAL_TYPE) argument 173 #define JINTEGRAL_TYPE_P(TYPE) ((TYPE) \ argument 174 && (TREE_CODE ((TYPE)) == INTEGER_TYPE \ 175 || TREE_CODE ((TYPE)) == CHAR_TYPE)) [all …]
|
| /openbsd-src/lib/libedit/ |
| H A D | history.c | 61 #define TYPE(type) type macro 79 #define TYPE(type) type ## W macro 92 typedef int (*history_gfun_t)(void *, TYPE(HistEvent) *); 93 typedef int (*history_efun_t)(void *, TYPE(HistEvent) *, const Char *); 94 typedef void (*history_vfun_t)(void *, TYPE(HistEvent) *); 95 typedef int (*history_sfun_t)(void *, TYPE(HistEvent) *, const int); 97 struct TYPE(history) { in TYPE() function 131 static int history_setsize(TYPE(History) *, TYPE(HistEvent) *, int); 132 static int history_getsize(TYPE(History) *, TYPE(HistEvent) *); 133 static int history_setunique(TYPE(History) *, TYPE(HistEvent) *, int); [all …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/ |
| H A D | va-arg-16.c | 3 typedef double TYPE; typedef 5 void vafunction (TYPE dummy1, TYPE dummy2, ...) in vafunction() 14 if (va_arg (ap, TYPE) != 1.) in vafunction() 16 if (va_arg (ap, TYPE) != 2.) in vafunction() 18 if (va_arg (ap, TYPE) != 3.) in vafunction() 20 if (va_arg (ap, TYPE) != 4.) in vafunction() 22 if (va_arg (ap, TYPE) != 5.) in vafunction() 24 if (va_arg (ap, TYPE) != 6.) in vafunction() 26 if (va_arg (ap, TYPE) != 7.) in vafunction() 28 if (va_arg (ap, TYPE) != 8.) in vafunction() [all …]
|
| H A D | va-arg-19.c | 3 typedef int TYPE; typedef 10 if (va_arg (ap, TYPE) != 1) in vafunction() 12 if (va_arg (ap, TYPE) != 2) in vafunction() 14 if (va_arg (ap, TYPE) != 3) in vafunction() 16 if (va_arg (ap, TYPE) != 4) in vafunction() 18 if (va_arg (ap, TYPE) != 5) in vafunction() 20 if (va_arg (ap, TYPE) != 6) in vafunction() 22 if (va_arg (ap, TYPE) != 7) in vafunction() 24 if (va_arg (ap, TYPE) != 8) in vafunction() 26 if (va_arg (ap, TYPE) != 9) in vafunction()
|
| H A D | va-arg-17.c | 3 typedef double TYPE; typedef 10 if (va_arg (ap, TYPE) != 1.) in vafunction() 12 if (va_arg (ap, TYPE) != 2.) in vafunction() 14 if (va_arg (ap, TYPE) != 3.) in vafunction() 16 if (va_arg (ap, TYPE) != 4.) in vafunction() 18 if (va_arg (ap, TYPE) != 5.) in vafunction() 20 if (va_arg (ap, TYPE) != 6.) in vafunction() 22 if (va_arg (ap, TYPE) != 7.) in vafunction() 24 if (va_arg (ap, TYPE) != 8.) in vafunction() 26 if (va_arg (ap, TYPE) != 9.) in vafunction()
|
| /openbsd-src/gnu/llvm/clang/lib/Format/ |
| H A D | FormatToken.h | 30 TYPE(ArrayInitializerLSquare) \ 31 TYPE(ArraySubscriptLSquare) \ 32 TYPE(AttributeColon) \ 33 TYPE(AttributeMacro) \ 34 TYPE(AttributeParen) \ 35 TYPE(AttributeSquare) \ 36 TYPE(BinaryOperator) \ 37 TYPE(BitFieldColon) \ 38 TYPE(BlockComment) \ 39 TYPE(BracedListLBrace) \ [all …]
|
| /openbsd-src/gnu/gcc/gcc/objc/ |
| H A D | objc-act.h | 82 #define TYPE_OBJC_INFO(TYPE) TYPE_LANG_SPECIFIC (TYPE)->objc_info argument 89 #define TYPE_HAS_OBJC_INFO(TYPE) \ argument 90 (TYPE_LANG_SPECIFIC (TYPE) && TYPE_OBJC_INFO (TYPE)) 91 #define TYPE_OBJC_INTERFACE(TYPE) TREE_VEC_ELT (TYPE_OBJC_INFO (TYPE), 0) argument 92 #define TYPE_OBJC_PROTOCOL_LIST(TYPE) TREE_VEC_ELT (TYPE_OBJC_INFO (TYPE), 1) argument 95 #define INIT_TYPE_OBJC_INFO(TYPE) \ argument 98 if (!TYPE_LANG_SPECIFIC (TYPE)) \ 99 ALLOC_OBJC_TYPE_LANG_SPECIFIC(TYPE); \ 100 if (!TYPE_OBJC_INFO (TYPE)) \ 101 TYPE_OBJC_INFO (TYPE) \ [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVInstrInfo.td | 18 def ASSIGN_TYPE: Pseudo<(outs ANYID:$dst_id), (ins ANYID:$src_id, TYPE:$src_ty)>; 19 def DECL_TYPE: Pseudo<(outs ANYID:$dst_id), (ins ANYID:$src_id, TYPE:$src_ty)>; 34 : Op<opCode, (outs ANYID:$dst), (ins TYPE:$src_ty, ANYID:$src, ANYID:$src2), 38 : Op<opCode, (outs ID:$dst), (ins TYPE:$src_ty, CID:$src, CID:$src2), 39 …ame#" $src_ty $src $src2", [(set ID:$dst, (assigntype (node CID:$src, CID:$src2), TYPE:$src_ty))]>; 42 : Op<opCode, (outs ID:$dst), (ins TYPE:$src_ty, CCond:$cond, CID:$src1, CID:$src2), 43 …src1 $src2", [(set ID:$dst, (assigntype (node CCond:$cond, CID:$src1, CID:$src2), TYPE:$src_ty))]>; 80 : Op<opCode, (outs ANYID:$dst), (ins TYPE:$type, ANYID:$src), 83 : Op<opCode, (outs ID:$dst), (ins TYPE:$src_ty, CID:$src), 84 … "$dst = "#name#" $src_ty $src", [(set ID:$dst, (assigntype (node CID:$src), TYPE:$src_ty))]>; [all …]
|
| /openbsd-src/share/snmp/ |
| H A D | OPENBSD-RELAYD-MIB.txt | 21 MODULE-IDENTITY, NOTIFICATION-TYPE, OBJECT-TYPE, 54 relaydRedirects OBJECT-TYPE 62 relaydRedirectEntry OBJECT-TYPE 85 relaydRedirectIndex OBJECT-TYPE 93 relaydRedirectStatus OBJECT-TYPE 102 relaydRedirectName OBJECT-TYPE 110 relaydRedirectCnt OBJECT-TYPE 118 relaydRedirectAvg OBJECT-TYPE 126 relaydRedirectLast OBJECT-TYPE 134 relaydRedirectAvgHour OBJECT-TYPE [all …]
|
| H A D | OPENBSD-PF-MIB.txt | 21 MODULE-IDENTITY, NOTIFICATION-TYPE, OBJECT-TYPE, 81 pfRunning OBJECT-TYPE 89 pfRuntime OBJECT-TYPE 101 pfDebug OBJECT-TYPE 118 pfHostid OBJECT-TYPE 129 pfCntMatch OBJECT-TYPE 137 pfCntBadOffset OBJECT-TYPE 145 pfCntFragment OBJECT-TYPE 153 pfCntShort OBJECT-TYPE 161 pfCntNormalize OBJECT-TYPE [all …]
|
| H A D | OPENBSD-CARP-MIB.txt | 21 MODULE-IDENTITY, NOTIFICATION-TYPE, OBJECT-TYPE, 59 carpAllow OBJECT-TYPE 67 carpPreempt OBJECT-TYPE 75 carpLog OBJECT-TYPE 86 carpIfNumber OBJECT-TYPE 94 carpIfTable OBJECT-TYPE 103 carpIfEntry OBJECT-TYPE 124 carpIfIndex OBJECT-TYPE 132 carpIfDescr OBJECT-TYPE 140 carpIfVhid OBJECT-TYPE [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/M68k/ |
| H A D | M68kInstrArithmetic.td | 89 class MxBiArOp_R_RR_EAd<string MN, SDNode NODE, MxType TYPE, bits<4> CMD> 90 : MxInst<(outs TYPE.ROp:$dst), (ins TYPE.ROp:$src, TYPE.ROp:$opd), 91 MN#"."#TYPE.Prefix#"\t$opd, $dst", 92 [(set TYPE.VT:$dst, CCR, (NODE TYPE.VT:$src, TYPE.VT:$opd))]> { 95 !cast<MxOpModeEncoding>("MxOpMode"#TYPE.Size#"_EA_"#TYPE.RLet).Value, 102 class MxBiArOp_R_RM<string MN, SDNode NODE, MxType TYPE, MxOperand OPD, ComplexPattern PAT, 104 : MxInst<(outs TYPE.ROp:$dst), (ins TYPE.ROp:$src, OPD:$opd), 105 MN#"."#TYPE.Prefix#"\t$opd, $dst", 106 [(set TYPE.VT:$dst, CCR, (NODE TYPE.VT:$src, (TYPE.Load PAT:$opd)))]> { 109 !cast<MxOpModeEncoding>("MxOpMode"#TYPE.Size#"_"#TYPE.RLet#"_EA").Value, [all …]
|
| H A D | M68kInstrData.td | 112 class MxMove_RR<MxType TYPE, string DST_REG, string SRC_REG, 114 MxOpBundle DST = !cast<MxOpBundle>("MxOp"#TYPE.Size#"AddrMode_"#DST_REG), 115 MxOpBundle SRC = !cast<MxOpBundle>("MxOp"#TYPE.Size#"AddrMode_"#SRC_REG)> 116 : MxMove<TYPE.Prefix, 122 foreach TYPE = [MxType16, MxType32] in 123 def MOV # TYPE.Size # DST_REG # SRC_REG # TYPE.Postfix 124 : MxMove_RR<TYPE, DST_REG, SRC_REG, 125 MxMoveEncoding<!cast<MxMoveSize>("MxMoveSize"#TYPE.Size), 129 foreach TYPE = [MxType8, MxType16, MxType32] in 130 def MOV # TYPE.Size # dd # TYPE.Postfix [all …]
|
| H A D | M68kInstrShiftRotate.td | 55 class MxSR_DD<string MN, MxType TYPE, SDNode NODE, bit RODI, bits<2> ROOP> 56 : MxInst<(outs TYPE.ROp:$dst), (ins TYPE.ROp:$src, TYPE.ROp:$opd), 57 MN#"."#TYPE.Prefix#"\t$opd, $dst", 58 [(set TYPE.VT:$dst, (NODE TYPE.VT:$src, TYPE.VT:$opd))]> { 60 !cast<MxNewEncSize>("MxNewEncSize"#TYPE.Size)>.Value; 64 class MxSR_DI<string MN, MxType TYPE, SDNode NODE, bit RODI, bits<2> ROOP> 65 : MxInst<(outs TYPE.ROp:$dst), 66 (ins TYPE.ROp:$src, !cast<Operand>("Mxi"#TYPE.Size#"imm"):$opd), 67 MN#"."#TYPE.Prefix#"\t$opd, $dst", 68 [(set TYPE.VT:$dst, [all …]
|
| H A D | M68kInstrBits.td | 61 class MxBTST_RR<MxType TYPE> 62 : MxInst<(outs), (ins TYPE.ROp:$dst, TYPE.ROp:$bitno), "btst\t$bitno, $dst", 63 [(set CCR, (MxBtst TYPE.VT:$dst, TYPE.VT:$bitno))]> { 67 class MxBTST_RI<MxType TYPE> 68 : MxInst<(outs), (ins TYPE.ROp:$dst, TYPE.IOp:$bitno), "btst\t$bitno, $dst", 69 [(set CCR, (MxBtst TYPE.VT:$dst, TYPE.IPat:$bitno))]> { 73 class MxBTST_MR<MxType TYPE, MxOperand MEMOpd, ComplexPattern MEMPat, 75 : MxInst<(outs), (ins MEMOpd:$dst, TYPE.ROp:$bitno), "btst\t$bitno, $dst", 76 [(set CCR, (MxBtst (TYPE.Load MEMPat:$dst), TYPE.VT:$bitno))]> { 80 class MxBTST_MI<MxType TYPE, MxOperand MEMOpd, ComplexPattern MEMPat, [all …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/arc/ |
| H A D | arc.h | 202 #define PROMOTE_MODE(MODE,UNSIGNEDP,TYPE) \ argument 254 #define DATA_ALIGNMENT(TYPE, ALIGN) \ argument 255 (TREE_CODE (TYPE) == ARRAY_TYPE \ 256 && TYPE_MODE (TREE_TYPE (TYPE)) == QImode \ 652 #define ROUND_ADVANCE_ARG(MODE, TYPE) \ argument 654 ? ROUND_ADVANCE (int_size_in_bytes (TYPE)) \ 658 #define ROUND_ADVANCE_CUM(CUM, MODE, TYPE) \ argument 659 ((((MODE) == BLKmode ? TYPE_ALIGN (TYPE) : GET_MODE_BITSIZE (MODE)) \ 669 #define PASS_IN_REG_P(CUM, MODE, TYPE) \ argument 671 && ((ROUND_ADVANCE_CUM ((CUM), (MODE), (TYPE)) \ [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | TargetBuiltins.h | 29 #define BUILTIN(ID, TYPE, ATTRS) BI##ID, argument 30 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) BI##ID, argument 41 #define BUILTIN(ID, TYPE, ATTRS) BI##ID, argument 50 #define BUILTIN(ID, TYPE, ATTRS) BI##ID, argument 63 #define BUILTIN(ID, TYPE, ATTRS) BI##ID, argument 73 #define BUILTIN(ID, TYPE, ATTRS) BI##ID, argument 83 #define BUILTIN(ID, TYPE, ATTRS) BI##ID, argument 93 #define BUILTIN(ID, TYPE, ATTRS) BI##ID, argument 103 #define BUILTIN(ID, TYPE, ATTRS) BI##ID, argument 113 #define BUILTIN(ID, TYPE, ATTRS) BI##ID, argument [all …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/fr30/ |
| H A D | fr30.h | 94 #define PROMOTE_MODE(MODE,UNSIGNEDP,TYPE) \ argument 111 #define DATA_ALIGNMENT(TYPE, ALIGN) \ argument 112 (TREE_CODE (TYPE) == ARRAY_TYPE \ 113 && TYPE_MODE (TREE_TYPE (TYPE)) == QImode \ 671 #define MUST_PASS_IN_STACK(MODE, TYPE) \ argument 673 || ((TYPE) != NULL \ 674 && TYPE_SIZE (TYPE) != NULL \ 675 && (TREE_CODE (TYPE_SIZE (TYPE)) != INTEGER_CST \ 676 || TREE_CODE (TYPE) == RECORD_TYPE \ 677 || TREE_CODE (TYPE) == UNION_TYPE \ [all …]
|
| /openbsd-src/gnu/gcc/gcc/config/arc/ |
| H A D | arc.h | 134 #define PROMOTE_MODE(MODE,UNSIGNEDP,TYPE) \ argument 179 #define DATA_ALIGNMENT(TYPE, ALIGN) \ argument 180 (TREE_CODE (TYPE) == ARRAY_TYPE \ 181 && TYPE_MODE (TREE_TYPE (TYPE)) == QImode \ 574 #define ROUND_ADVANCE_ARG(MODE, TYPE) \ argument 576 ? ROUND_ADVANCE (int_size_in_bytes (TYPE)) \ 580 #define ROUND_ADVANCE_CUM(CUM, MODE, TYPE) \ argument 581 ((((MODE) == BLKmode ? TYPE_ALIGN (TYPE) : GET_MODE_BITSIZE (MODE)) \ 591 #define PASS_IN_REG_P(CUM, MODE, TYPE) \ argument 593 && ((ROUND_ADVANCE_CUM ((CUM), (MODE), (TYPE)) \ [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | gdb_obstack.h | 29 #define OBSTACK_ZALLOC(OBSTACK,TYPE) (memset (obstack_alloc ((OBSTACK), sizeof (TYPE)), 0, sizeof (… argument 31 …BSTACK_CALLOC(OBSTACK,NUMBER,TYPE) (memset (obstack_alloc ((OBSTACK), (NUMBER) * sizeof (TYPE)), 0… argument
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/alpha/ |
| H A D | lib1funcs.asm | 63 #define TYPE SIGNED macro 74 #define TYPE UNSIGNED macro 85 #define TYPE SIGNED macro 96 #define TYPE UNSIGNED macro 107 #define TYPE SIGNED macro 118 #define TYPE UNSIGNED macro 129 #define TYPE SIGNED macro 140 #define TYPE UNSIGNED macro 205 #if TYPE == SIGNED 223 #if TYPE == SIGNED [all …]
|
| /openbsd-src/gnu/gcc/gcc/config/alpha/ |
| H A D | lib1funcs.asm | 63 #define TYPE SIGNED macro 74 #define TYPE UNSIGNED macro 85 #define TYPE SIGNED macro 96 #define TYPE UNSIGNED macro 107 #define TYPE SIGNED macro 118 #define TYPE UNSIGNED macro 129 #define TYPE SIGNED macro 140 #define TYPE UNSIGNED macro 205 #if TYPE == SIGNED 223 #if TYPE == SIGNED [all …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/stormy16/ |
| H A D | stormy16.h | 94 #define PROMOTE_MODE(MODE,UNSIGNEDP,TYPE) \ argument 116 #define DATA_ALIGNMENT(TYPE, ALIGN) \ argument 117 (TREE_CODE (TYPE) == ARRAY_TYPE \ 118 && TYPE_MODE (TREE_TYPE (TYPE)) == QImode \ 1210 #define XSTORMY16_WORD_SIZE(TYPE, MODE) \ argument 1211 ((((TYPE) ? int_size_in_bytes (TYPE) : GET_MODE_SIZE (MODE)) \ 1245 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \ argument 1247 : (CUM) + XSTORMY16_WORD_SIZE (TYPE, MODE) > NUM_ARGUMENT_REGISTERS ? 0 \ 1277 #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) 0 argument 1289 #define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED) 0 argument [all …]
|