| /NextBSD/contrib/gdb/gdb/ |
| HD | gdb-events.c | 263 struct event *event = XMALLOC (struct event); in queue_breakpoint_create() 272 struct event *event = XMALLOC (struct event); in queue_breakpoint_delete() 281 struct event *event = XMALLOC (struct event); in queue_breakpoint_modify() 290 struct event *event = XMALLOC (struct event); in queue_tracepoint_create() 299 struct event *event = XMALLOC (struct event); in queue_tracepoint_delete() 308 struct event *event = XMALLOC (struct event); in queue_tracepoint_modify() 317 struct event *event = XMALLOC (struct event); in queue_architecture_changed() 325 struct event *event = XMALLOC (struct event); in queue_target_changed() 333 struct event *event = XMALLOC (struct event); in queue_selected_frame_level_changed() 342 struct event *event = XMALLOC (struct event); in queue_selected_thread_changed()
|
| HD | reggroups.c | 43 struct reggroup *group = XMALLOC (struct reggroup); in reggroup_new() 274 add_group (&default_groups, general_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup() 275 add_group (&default_groups, float_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup() 276 add_group (&default_groups, system_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup() 277 add_group (&default_groups, vector_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup() 278 add_group (&default_groups, all_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup() 279 add_group (&default_groups, save_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup() 280 add_group (&default_groups, restore_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup()
|
| HD | observer.c | 83 struct observer_list *node = XMALLOC (struct observer_list); in xalloc_observer_list_node() 84 node->observer = XMALLOC (struct observer); in xalloc_observer_list_node()
|
| HD | ser-pipe.c | 108 state = XMALLOC (struct pipe_state); in pipe_open() 140 struct serial_ops *ops = XMALLOC (struct serial_ops); in _initialize_ser_pipe()
|
| HD | sparc64nbsd-tdep.c | 229 tdep->gregset = XMALLOC (struct regset); in sparc64nbsd_init_abi() 234 tdep->fpregset = XMALLOC (struct regset); in sparc64nbsd_init_abi()
|
| HD | complaints.c | 118 (*c) = XMALLOC (struct complaints); in get_complaints() 146 complaint = XMALLOC (struct complain); in find_complaint()
|
| HD | sparc64fbsd-tdep.c | 227 tdep->gregset = XMALLOC (struct regset); in sparc64fbsd_init_abi() 232 tdep->fpregset = XMALLOC (struct regset); in sparc64fbsd_init_abi()
|
| HD | sparcnbsd-tdep.c | 277 tdep->gregset = XMALLOC (struct regset); in sparc32nbsd_init_abi() 282 tdep->fpregset = XMALLOC (struct regset); in sparc32nbsd_init_abi()
|
| HD | ui-out.c | 433 end_cleanup_data = XMALLOC (struct ui_out_end_cleanup_data); in make_cleanup_ui_out_end() 603 tempbuf = XMALLOC (struct ui_stream); in ui_out_stream_new() 1028 temphdr = XMALLOC (struct ui_out_hdr); in append_header_to_list() 1143 struct ui_out *uiout = XMALLOC (struct ui_out); in ui_out_new()
|
| HD | amd64obsd-tdep.c | 65 tdep->gregset = XMALLOC (struct regset); in amd64obsd_regset_from_core_section()
|
| HD | sparc64obsd-tdep.c | 187 tdep->gregset = XMALLOC (struct regset); in sparc64obsd_init_abi()
|
| HD | i386nbsd-tdep.c | 88 tdep->gregset = XMALLOC (struct regset); in i386nbsd_aout_regset_from_core_section()
|
| HD | i386obsd-tdep.c | 163 tdep->gregset = XMALLOC (struct regset); in i386obsd_aout_regset_from_core_section()
|
| HD | serial.c | 202 scb = XMALLOC (struct serial); in serial_open() 254 scb = XMALLOC (struct serial); in serial_fdopen()
|
| HD | user-regs.c | 83 XMALLOC (struct user_reg)); in user_reg_add_builtin()
|
| HD | ser-tcp.c | 210 struct serial_ops *ops = XMALLOC (struct serial_ops); in _initialize_ser_tcp()
|
| HD | objfiles.c | 852 *curr = XMALLOC (struct objfile_data_registration); in register_objfile_data() 854 (*curr)->data = XMALLOC (struct objfile_data); in register_objfile_data()
|
| HD | gdbarch.sh | 1446 struct obstack *obstack = XMALLOC (struct obstack); 1842 (*curr) = XMALLOC (struct gdbarch_data_registration); 1844 (*curr)->data = XMALLOC (struct gdbarch_data); 2083 (*curr) = XMALLOC (struct gdbarch_registration);
|
| /NextBSD/gnu/usr.bin/grep/ |
| HD | xalloc.h | 64 # define XMALLOC(Type, N_items) ((Type *) xmalloc (sizeof (Type) * (N_items))) macro 70 # define NEW(Type, Var) Type *(Var) = XMALLOC (Type, 1)
|
| /NextBSD/usr.bin/fmt/ |
| HD | fmt.c | 253 #define XMALLOC(x) xrealloc(0,x) macro 280 tmp = XMALLOC((len + 1) * sizeof(wchar_t)); in main() 357 output_buffer = XMALLOC((max_length+1) * sizeof(wchar_t)); in main() 643 if (buf==NULL) { length=100; buf=XMALLOC(length * sizeof(wchar_t)); } in get_line()
|
| /NextBSD/contrib/diff/lib/ |
| HD | xalloc.h | 83 # define XMALLOC(type, n) xnmalloc (n, sizeof (type)) macro
|
| /NextBSD/contrib/gdb/gdb/cli/ |
| HD | cli-dump.c | 36 #define XMALLOC(TYPE) ((TYPE*) xmalloc (sizeof (TYPE))) macro 416 d = XMALLOC (struct dump_context); in add_dump_command() 424 d = XMALLOC (struct dump_context); in add_dump_command()
|
| /NextBSD/contrib/gdb/gdb/mi/ |
| HD | mi-console.c | 50 struct mi_console_file *mi_console = XMALLOC (struct mi_console_file); in mi_console_file_new()
|
| HD | mi-parse.c | 153 struct mi_parse *parse = XMALLOC (struct mi_parse); in mi_parse()
|
| HD | mi-interp.c | 71 struct mi_interp *mi = XMALLOC (struct mi_interp); in mi_interpreter_init()
|