counter.c:1754:  dest = (mzx_string *)malloc(sizeof(mzx_string) + name_length +
counter.c:2621:  cdest = (counter *)malloc(sizeof(counter) + strlen(name));
counter.c:3378:   (counter *)malloc(sizeof(counter) + name_length);
counter.c:3395:   (mzx_string *)malloc(sizeof(mzx_string) + name_length +
counter.c:3435:  char **var_list = (char **)malloc(num_vars * sizeof(char *));
counter.c:3448:    var_list[i] = (char *)malloc(76);
counter.c:3464:  var_list[i] = (char *)malloc(76);
counter.c:3473:    var_list[i] = (char *)malloc(76);
decrypt.c:97:  file_buffer = (char *)malloc(file_length);
helpsys.c:51:  help = (char *)malloc(1024 * 64);
macro.c:96:   (ext_macro *)malloc(sizeof(ext_macro));
macro.c:100:  text_lines = (char ***)malloc(sizeof(char **) *
macro.c:103:   (macro_variable_reference **)malloc
macro.c:105:  line_variables_count = (int *)malloc(sizeof(int) *
macro.c:108:  macro_dest->name = (char *)malloc(strlen(name) + 1);
macro.c:111:  macro_dest->label = (char *)malloc(strlen(label) + 1);
macro.c:116:  macro_dest->text = (char *)malloc(strlen(line_data) + 1);
macro.c:272:           (char *)malloc(current_type->type_attributes[0] + 1);
macro.c:277:             (char *)malloc(current_type->type_attributes[0] + 1);
macro.c:319:       (macro_variable *)malloc(sizeof(macro_variable) * num_variables);
macro.c:321:       (macro_variable **)malloc(sizeof(macro_variable *) * num_variables);
macro.c:418:       (macro_variable_reference *)malloc(sizeof(macro_variable_reference) *
macro.c:424:       (char **)malloc(sizeof(char *) * (num_line_variables + 1));
macro.c:448:  macro_dest->lines = (char ***)malloc(sizeof(char **) * num_lines);
macro.c:452:   malloc(sizeof(macro_variable_reference *) * num_lines);
macro.c:455:  macro_dest->line_element_count = (int *)malloc(sizeof(int) * num_lines);
macro.c:531:     (ext_macro **)malloc(sizeof(ext_macro *));
rasm.c:1417:    param_list[0] = (void *)malloc(str_size);
rasm.c:1470:          param_list[arg_count] = (void *)malloc(str_size + 1);
rasm.c:1483:          param_list[arg_count] = (void *)malloc(str_size + 1);
rasm.c:1511:            param_list[arg_count] = (void *)malloc(2);
rasm.c:1523:          param_list[arg_count] = (void *)malloc(2);
rasm.c:1586:    buffer = (char *)malloc(1024);
render_gl1.c:91:  gl1_render_data *render_data = malloc(sizeof(gl1_render_data));
render_gl1.c:145:  render_data->pixels = malloc(sizeof(Uint32) * internal_width *
render_gl2.c:138:  gl2_render_data *render_data = malloc(sizeof(gl2_render_data));
render_gl2.c:162:  render_data->pixels = malloc(sizeof(Uint32) * GL_POWER_2_WIDTH *
render_gp2x.c:191:  gp2x_render_data *render_data = malloc(sizeof(gp2x_render_data));
render_yuv.c:62:  yuv_render_data *render_data = malloc(sizeof(yuv_render_data));
robo_ed.c:147:    robot_line *new_rline = (robot_line *)malloc(sizeof(robot_line));
robo_ed.c:150:    new_rline->line_text = (char *)malloc(1);
robo_ed.c:151:    new_rline->line_bytecode = (char *)malloc(3);
robo_ed.c:425:  robot_line *new_rline = (robot_line *)malloc(sizeof(robot_line));
robo_ed.c:778:    dest_data = (char *)malloc(copy_buffer_total_length + 1);
robo_ed.c:844:  copy_buffer = (char **)malloc(sizeof(char *) * num_lines);
robo_ed.c:850:    copy_buffer[i] = (char *)malloc(line_length);
robo_ed.c:2413:      current_rline = (robot_line *)malloc(sizeof(robot_line));
robo_ed.c:2418:      current_rline->line_text = (char *)malloc(line_text_length + 1);
robo_ed.c:2419:      current_rline->line_bytecode = (char *)malloc(line_bytecode_length);
robot.c:43:  Robot *cur_robot = (Robot *)malloc(sizeof(Robot));
robot.c:95:    cur_robot->stack = (int *)malloc(stack_size * sizeof(int));
robot.c:108:    cur_robot->stack = (int *)malloc(ROBOT_START_STACK * sizeof(int));
robot.c:113:  cur_robot->program = (char *)malloc(program_size);
robot.c:169:  cur_scroll->mesg = (char *)malloc(scroll_size);
robot.c:175:  Scroll *cur_scroll = (Scroll *)malloc(sizeof(Scroll));
robot.c:192:  Sensor *cur_sensor = (Sensor *)malloc(sizeof(Sensor));
robot.c:423:  Label **label_list = (Label **)malloc(sizeof(Label *) * 16);
robot.c:434:      current_label = (Label *)malloc(sizeof(Label));
robot.c:2515:  copy_robot->program = (char *)malloc(program_length);
robot.c:2523:    copy_robot->label_list = (Label **)malloc(num_labels * sizeof(Label *));
robot.c:2532:    copy_robot->label_list[i] = (Label *)malloc(sizeof(Label));
robot.c:2543:  copy_robot->stack = (int *)malloc(ROBOT_START_STACK * sizeof(int));
robot.c:2563:    Robot *copy_robot = (Robot *)malloc(sizeof(Robot));
robot.c:2615:  copy_scroll->mesg = (char *)malloc(mesg_size);
robot.c:2624:    Scroll *copy_scroll = (Scroll *)malloc(sizeof(Scroll));
robot.c:2645:    Sensor *copy_sensor = (Sensor *)malloc(sizeof(Sensor));
robot.c:2667:   (Robot **)malloc(sizeof(Robot *) * (num_robots + 1));
robot.c:2669:   (Scroll **)malloc(sizeof(Scroll *) * (num_scrolls + 1));
robot.c:2671:   (Sensor **)malloc(sizeof(Sensor *) * (num_sensors + 1));
robot.c:2673:   (int *)malloc(sizeof(int) * (num_robots + 1));
robot.c:2675:   (int *)malloc(sizeof(int) * (num_scrolls + 1));
robot.c:2677:   (int *)malloc(sizeof(int) * (num_sensors + 1));
robot.c:2823:  char *program = (char *)malloc(2);
robot.c:2842:  char *message = (char *)malloc(3);
runrobo2.c:867:    src_board->overlay = (char *)malloc(board_size);
runrobo2.c:868:    src_board->overlay_color = (char *)malloc(board_size);
window.c:2598:  label *src = (label *)malloc(sizeof(label));
window.c:2609:  input_box *src = (input_box *)malloc(sizeof(input_box));
window.c:2625:  check_box *src = (check_box *)malloc(sizeof(check_box));
window.c:2640:  radio_button *src = (radio_button *)malloc(sizeof(radio_button));
window.c:2655:  char_box *src = (char_box *)malloc(sizeof(char_box));
window.c:2668:  color_box *src = (color_box *)malloc(sizeof(color_box));
window.c:2682:  button *src = (button *)malloc(sizeof(button));
window.c:2696:  number_box *src = (number_box *)malloc(sizeof(number_box));
window.c:2721:  list_box *src = (list_box *)malloc(sizeof(list_box));
window.c:2763:  board_list *src = (board_list *)malloc(sizeof(board_list));
window.c:2814:   (char **)malloc((mzx_world->num_boards + 1) * sizeof(char *));
window.c:2821:    board_names[i] = (char *)malloc(BOARD_NAME_SIZE);
window.c:2832:  board_names[i] = (char *)malloc(12);
window.c:3225:    file_list = (char **)malloc(sizeof(char *) * 32);
window.c:3226:    dir_list = (char **)malloc(sizeof(char *) * 32);
window.c:3258:              dir_list[num_dirs] = (char *)malloc(file_name_length + 1);
window.c:3286:                   (char *)malloc(56 + file_name_length + 1);
window.c:3349:          dir_list[num_dirs] = (char *)malloc(3);
world.c:534:      mzx_world->update_done = (char *)malloc(max_size);
world.c:775:    mzx_world->counter_list = (counter **)malloc(sizeof(counter *) * num_counters);
world.c:790:     (mzx_string **)malloc(sizeof(mzx_string *) * num_strings);
world.c:799:    mzx_world->sprite_list = (Sprite **)malloc(sizeof(Sprite *) * 256);
world.c:803:      mzx_world->sprite_list[i] = (Sprite *)malloc(sizeof(Sprite));
world.c:806:    mzx_world->collision_list = (int *)malloc(sizeof(int) * 256);
world.c:910:    mzx_world->vlayer_chars = (char *)malloc(vlayer_size);
world.c:911:    mzx_world->vlayer_colors = (char *)malloc(vlayer_size);
world.c:947:  mzx_world->board_list = (Board **)malloc(sizeof(Board *) * num_boards);
world.c:1188:  mzx_world->sprite_list = (Sprite **)malloc(sizeof(Sprite *) * 256);
world.c:1192:    mzx_world->sprite_list[i] = (Sprite *)malloc(sizeof(Sprite));
world.c:1195:  mzx_world->collision_list = (int *)malloc(sizeof(int) * 256);
world.c:1224:  mzx_world->vlayer_chars = (char *)malloc(0x8000);
world.c:1225:  mzx_world->vlayer_colors = (char *)malloc(0x8000);
world.c:1436:  mzx_world->board_list = (Board **)malloc(sizeof(Board *));
world.c:1485:   (Board **)malloc(sizeof(Board *) * num_boards);
world.c:1487:   (int *)malloc(sizeof(int) * num_boards);
world.c:1644:     mzx_world->update_done = (char *)malloc(size);
