/openbsd/gnu/llvm/lldb/source/Interpreter/ |
H A D | CommandObject.cpp | 371 if (g_argument_table[i].arg_type == arg_type) in FindArgumentDataByType() 384 if (entry->arg_type != arg_type) in GetArgumentHelp() 432 if (entry->arg_type != arg_type) in GetArgumentName() 651 id_arg.arg_type = ID; in AddIDsArgumentData() 656 id_range_arg.arg_type = IDRange; in AddIDsArgumentData() 667 const lldb::CommandArgumentType arg_type) { in GetArgumentTypeAsCString() argument 668 assert(arg_type < eArgTypeLastArg && in GetArgumentTypeAsCString() 670 return g_argument_table[arg_type].arg_name; in GetArgumentTypeAsCString() 674 const lldb::CommandArgumentType arg_type) { in GetArgumentDescriptionAsCString() argument 675 assert(arg_type < eArgTypeLastArg && in GetArgumentDescriptionAsCString() [all …]
|
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | infcall.c | 90 = param_type ? check_typedef (param_type) : arg_type; in value_arg_coerce() 95 if (TYPE_CODE (arg_type) != TYPE_CODE_REF in value_arg_coerce() 96 && TYPE_CODE (arg_type) != TYPE_CODE_PTR) in value_arg_coerce() 560 if ((TYPE_CODE (arg_type) == TYPE_CODE_STRUCT in call_function_by_hand() 561 || TYPE_CODE (arg_type) == TYPE_CODE_UNION in call_function_by_hand() 562 || TYPE_CODE (arg_type) == TYPE_CODE_ARRAY in call_function_by_hand() 563 || TYPE_CODE (arg_type) == TYPE_CODE_STRING in call_function_by_hand() 565 || TYPE_CODE (arg_type) == TYPE_CODE_SET in call_function_by_hand() 566 || (TYPE_CODE (arg_type) == TYPE_CODE_FLT in call_function_by_hand() 567 && TYPE_LENGTH (arg_type) > 8) in call_function_by_hand() [all …]
|
H A D | arm-linux-tdep.c | 111 struct type *arg_type; in arm_linux_push_arguments() local 113 arg_type = check_typedef (VALUE_TYPE (args[argnum])); in arm_linux_push_arguments() 114 len = TYPE_LENGTH (arg_type); in arm_linux_push_arguments() 118 if (TYPE_CODE_FLT == TYPE_CODE (arg_type) && DEPRECATED_REGISTER_SIZE == len) in arm_linux_push_arguments() 150 struct type *arg_type, *target_type; in arm_linux_push_arguments() local 152 arg_type = check_typedef (VALUE_TYPE (args[argnum])); in arm_linux_push_arguments() 153 target_type = TYPE_TARGET_TYPE (arg_type); in arm_linux_push_arguments() 154 len = TYPE_LENGTH (arg_type); in arm_linux_push_arguments() 155 typecode = TYPE_CODE (arg_type); in arm_linux_push_arguments()
|
H A D | alpha-tdep.c | 289 switch (TYPE_CODE (arg_type)) in alpha_push_dummy_call() 296 if (TYPE_LENGTH (arg_type) == 4) in alpha_push_dummy_call() 300 arg_type = builtin_type_int32; in alpha_push_dummy_call() 301 arg = value_cast (arg_type, arg); in alpha_push_dummy_call() 305 arg_type = builtin_type_int64; in alpha_push_dummy_call() 306 arg = value_cast (arg_type, arg); in alpha_push_dummy_call() 314 && TYPE_LENGTH (arg_type) == 4) in alpha_push_dummy_call() 317 arg = value_cast (arg_type, arg); in alpha_push_dummy_call() 330 arg_type = lookup_pointer_type (arg_type); in alpha_push_dummy_call() 342 if (TYPE_LENGTH (arg_type) == 32) in alpha_push_dummy_call() [all …]
|
H A D | values.c | 886 int fieldno, struct type *arg_type) in value_primitive_field() argument 891 CHECK_TYPEDEF (arg_type); in value_primitive_field() 892 type = TYPE_FIELD_TYPE (arg_type, fieldno); in value_primitive_field() 896 if (TYPE_FIELD_BITSIZE (arg_type, fieldno)) in value_primitive_field() 899 unpack_field_as_long (arg_type, in value_primitive_field() 903 VALUE_BITPOS (v) = TYPE_FIELD_BITPOS (arg_type, fieldno) % 8; in value_primitive_field() 904 VALUE_BITSIZE (v) = TYPE_FIELD_BITSIZE (arg_type, fieldno); in value_primitive_field() 906 + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8; in value_primitive_field() 908 else if (fieldno < TYPE_N_BASECLASSES (arg_type)) in value_primitive_field() 924 TYPE_FIELD_BITPOS (arg_type, fieldno) / 8; in value_primitive_field() [all …]
|
H A D | reply_mig_hack.awk | 76 arg_type[num_args] = $1; 113 printf (", %s", arg_type[i]);
|
H A D | mips-tdep.c | 2327 && TYPE_NFIELDS (arg_type) == 1 in fp_register_arg_p() 2436 int len = TYPE_LENGTH (arg_type); in mips_eabi_push_dummy_call() 2466 && fp_register_arg_p (typecode, arg_type)) in mips_eabi_push_dummy_call() 2548 || fp_register_arg_p (typecode, arg_type)) in mips_eabi_push_dummy_call() 2564 && (TYPE_LENGTH (arg_type) in mips_eabi_push_dummy_call() 2718 int len = TYPE_LENGTH (arg_type); in mips_n32n64_push_dummy_call() 2775 || fp_register_arg_p (typecode, arg_type)) in mips_n32n64_push_dummy_call() 3058 int len = TYPE_LENGTH (arg_type); in mips_o32_push_dummy_call() 3074 && fp_register_arg_p (typecode, arg_type)) in mips_o32_push_dummy_call() 3512 int len = TYPE_LENGTH (arg_type); in mips_o64_push_dummy_call() [all …]
|
/openbsd/gnu/llvm/lldb/source/Commands/ |
H A D | CommandObjectSettings.cpp | 46 value_arg.arg_type = eArgTypeValue; in CommandObjectSettingsSet() 575 index_arg.arg_type = eArgTypeSettingIndex; in CommandObjectSettingsRemove() 579 key_arg.arg_type = eArgTypeSettingKey; in CommandObjectSettingsRemove() 671 index_arg.arg_type = eArgTypeSettingIndex; in CommandObjectSettingsReplace() 675 key_arg.arg_type = eArgTypeSettingKey; in CommandObjectSettingsReplace() 683 value_arg.arg_type = eArgTypeValue; in CommandObjectSettingsReplace() 767 index_arg.arg_type = eArgTypeSettingIndex; in CommandObjectSettingsInsertBefore() 775 value_arg.arg_type = eArgTypeValue; in CommandObjectSettingsInsertBefore() 863 index_arg.arg_type = eArgTypeSettingIndex; in CommandObjectSettingsInsertAfter() 871 value_arg.arg_type = eArgTypeValue; in CommandObjectSettingsInsertAfter() [all …]
|
H A D | CommandObjectLog.cpp | 61 channel_arg.arg_type = eArgTypeLogChannel; in CommandObjectLogEnable() 68 category_arg.arg_type = eArgTypeLogCategory; in CommandObjectLogEnable() 220 channel_arg.arg_type = eArgTypeLogChannel; in CommandObjectLogDisable() 227 category_arg.arg_type = eArgTypeLogCategory; in CommandObjectLogDisable() 283 channel_arg.arg_type = eArgTypeLogChannel; in CommandObjectLogList() 331 channel_arg.arg_type = eArgTypeLogChannel; in CommandObjectLogDump() 442 depth_arg.arg_type = eArgTypeCount; in CommandObjectLogTimerEnable() 561 bool_arg.arg_type = eArgTypeBoolean; in CommandObjectLogTimerIncrement()
|
H A D | CommandObjectHelp.cpp | 56 command_arg.arg_type = eArgTypeCommand; in CommandObjectHelp() 185 const CommandArgumentType arg_type = in DoExecute() local 187 if (arg_type != eArgTypeLastArg) { in DoExecute() 189 CommandObject::GetArgumentHelp(output_strm, arg_type, m_interpreter); in DoExecute()
|
H A D | CommandObjectCommands.cpp | 48 file_arg.arg_type = eArgTypeFilename; in CommandObjectCommandsSource() 356 alias_arg.arg_type = eArgTypeAliasName; in CommandObjectCommandsAlias() 364 cmd_arg.arg_type = eArgTypeCommandName; in CommandObjectCommandsAlias() 372 options_arg.arg_type = eArgTypeAliasOptions; in CommandObjectCommandsAlias() 632 alias_arg.arg_type = eArgTypeAliasName; in CommandObjectCommandsUnalias() 720 alias_arg.arg_type = eArgTypeCommandName; in CommandObjectCommandsDelete() 1250 cmd_arg.arg_type = eArgTypeFilename; in CommandObjectCommandsScriptImport() 1383 cmd_arg.arg_type = eArgTypeCommand; in CommandObjectCommandsScriptAdd() 1692 cmd_arg.arg_type = eArgTypeCommand; in CommandObjectCommandsScriptDelete() 1841 cmd_arg.arg_type = eArgTypeCommand; in CommandObjectCommandsContainerAdd() [all …]
|
H A D | CommandObjectRegister.cpp | 52 register_arg.arg_type = eArgTypeRegisterName; in CommandObjectRegisterRead() 311 register_arg.arg_type = eArgTypeRegisterName; in CommandObjectRegisterWrite() 319 value_arg.arg_type = eArgTypeValue; in CommandObjectRegisterWrite()
|
/openbsd/gnu/usr.bin/binutils/gdb/vx-share/ |
H A D | xdr_rdb.h | 19 enum arg_type { enum 27 typedef enum arg_type arg_type; typedef 32 arg_type type;
|
/openbsd/gnu/llvm/lldb/include/lldb/Interpreter/ |
H A D | CommandObject.h | 84 lldb::CommandArgumentType arg_type; member 94 lldb::CommandArgumentType arg_type; member 103 : arg_type(type), arg_repetition(repetition), in arg_type() function 119 GetArgumentTypeAsCString(const lldb::CommandArgumentType arg_type); 122 GetArgumentDescriptionAsCString(const lldb::CommandArgumentType arg_type); 208 FindArgumentDataByType(lldb::CommandArgumentType arg_type); 214 static void GetArgumentHelp(Stream &str, lldb::CommandArgumentType arg_type, 217 static const char *GetArgumentName(lldb::CommandArgumentType arg_type);
|
/openbsd/gnu/gcc/gcc/ |
H A D | ipa-type-escape.c | 1036 tree arg_type; in check_call() local 1047 arg_type && TREE_VALUE (arg_type) != void_type_node; in check_call() 1048 arg_type = TREE_CHAIN (arg_type)) in check_call() 1053 last_arg_type = TREE_VALUE(arg_type); in check_call() 1070 for (arg_type = DECL_ARGUMENTS (callee_t); in check_call() 1071 arg_type; in check_call() 1072 arg_type = TREE_CHAIN (arg_type)) in check_call() 1077 last_arg_type = TREE_TYPE(arg_type); in check_call() 1091 arg_type = last_arg_type; in check_call() 1097 if (arg_type) in check_call() [all …]
|
/openbsd/gnu/usr.bin/texinfo/intl/ |
H A D | printf-args.h | 75 } arg_type; typedef 80 arg_type type;
|
/openbsd/gnu/llvm/lldb/bindings/interface/ |
H A D | SBCommandInterpreter.i | 73 GetArgumentTypeAsCString (const lldb::CommandArgumentType arg_type); 76 GetArgumentDescriptionAsCString (const lldb::CommandArgumentType arg_type);
|
/openbsd/gnu/usr.bin/binutils/opcodes/ |
H A D | ip2k-desc.c | 1079 ip2k_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...) in ip2k_cgen_cpu_open() argument 1096 va_start (ap, arg_type); in ip2k_cgen_cpu_open() 1097 while (arg_type != CGEN_CPU_OPEN_END) in ip2k_cgen_cpu_open() 1099 switch (arg_type) in ip2k_cgen_cpu_open() 1121 arg_type); in ip2k_cgen_cpu_open() 1124 arg_type = va_arg (ap, enum cgen_cpu_open_arg); in ip2k_cgen_cpu_open()
|
H A D | openrisc-desc.c | 920 openrisc_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...) in openrisc_cgen_cpu_open() argument 937 va_start (ap, arg_type); in openrisc_cgen_cpu_open() 938 while (arg_type != CGEN_CPU_OPEN_END) in openrisc_cgen_cpu_open() 940 switch (arg_type) in openrisc_cgen_cpu_open() 962 arg_type); in openrisc_cgen_cpu_open() 965 arg_type = va_arg (ap, enum cgen_cpu_open_arg); in openrisc_cgen_cpu_open()
|
/openbsd/gnu/usr.bin/binutils-2.17/opcodes/ |
H A D | ip2k-desc.c | 1069 ip2k_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...) in ip2k_cgen_cpu_open() argument 1086 va_start (ap, arg_type); in ip2k_cgen_cpu_open() 1087 while (arg_type != CGEN_CPU_OPEN_END) in ip2k_cgen_cpu_open() 1089 switch (arg_type) in ip2k_cgen_cpu_open() 1111 arg_type); in ip2k_cgen_cpu_open() 1114 arg_type = va_arg (ap, enum cgen_cpu_open_arg); in ip2k_cgen_cpu_open()
|
H A D | openrisc-desc.c | 910 openrisc_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...) in openrisc_cgen_cpu_open() argument 927 va_start (ap, arg_type); in openrisc_cgen_cpu_open() 928 while (arg_type != CGEN_CPU_OPEN_END) in openrisc_cgen_cpu_open() 930 switch (arg_type) in openrisc_cgen_cpu_open() 952 arg_type); in openrisc_cgen_cpu_open() 955 arg_type = va_arg (ap, enum cgen_cpu_open_arg); in openrisc_cgen_cpu_open()
|
H A D | xstormy16-desc.c | 1371 xstormy16_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...) in xstormy16_cgen_cpu_open() argument 1388 va_start (ap, arg_type); in xstormy16_cgen_cpu_open() 1389 while (arg_type != CGEN_CPU_OPEN_END) in xstormy16_cgen_cpu_open() 1391 switch (arg_type) in xstormy16_cgen_cpu_open() 1413 arg_type); in xstormy16_cgen_cpu_open() 1416 arg_type = va_arg (ap, enum cgen_cpu_open_arg); in xstormy16_cgen_cpu_open()
|
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBCommandInterpreter.cpp | 501 const lldb::CommandArgumentType arg_type) { in GetArgumentTypeAsCString() argument 502 LLDB_INSTRUMENT_VA(arg_type); in GetArgumentTypeAsCString() 504 return CommandObject::GetArgumentTypeAsCString(arg_type); in GetArgumentTypeAsCString() 508 const lldb::CommandArgumentType arg_type) { in GetArgumentDescriptionAsCString() argument 509 LLDB_INSTRUMENT_VA(arg_type); in GetArgumentDescriptionAsCString() 511 return CommandObject::GetArgumentDescriptionAsCString(arg_type); in GetArgumentDescriptionAsCString()
|
/openbsd/lib/libcrypto/lhash/ |
H A D | lhash.h | 167 #define LHM_lh_doall_arg(type, lh, fn, arg_type, arg) \ argument 168 lh_doall_arg(CHECKED_LHASH_OF(type, lh), fn, CHECKED_PTR_OF(arg_type, arg))
|
/openbsd/gnu/llvm/lldb/include/lldb/API/ |
H A D | SBCommandInterpreter.h | 37 GetArgumentTypeAsCString(const lldb::CommandArgumentType arg_type); 40 GetArgumentDescriptionAsCString(const lldb::CommandArgumentType arg_type);
|