Home
last modified time | relevance | path

Searched refs:ALLOC_WC (Results 1 – 13 of 13) sorted by relevance

/illumos-gate/usr/src/cmd/make/lib/mksh/
H A Dmacro.cc489 left_tail = ALLOC_WC(left_tail_len + 1); in expand_macro()
501 right_tail = ALLOC_WC(tmp_len); in expand_macro()
511 right_tail = ALLOC_WC(wcslen(eq) + 1); in expand_macro()
533 left_head = ALLOC_WC(tmp_len); in expand_macro()
549 left_tail = ALLOC_WC(tmp_len); in expand_macro()
563 right_hand[0] = ALLOC_WC(wcslen(eq) + 1); in expand_macro()
569 right_hand[i] = ALLOC_WC(percent-eq+1); in expand_macro()
587 right_hand[i] = ALLOC_WC(wcslen(eq) + 1); in expand_macro()
1313 new_value = ALLOC_WC(length); in setvar_daemon()
H A Dmisc.cc700 wchar_t * wcbuf = ALLOC_WC(strlen(from) + 1); in get_wstring()
747 ALLOC_WC(length); in expand_string()
763 p = ALLOC_WC(length); in expand_string()
/illumos-gate/usr/src/cmd/make/bin/
H A Drep.cc100 line = ALLOC_WC(line_size); in report_recursive_init()
108 bigger_line = ALLOC_WC(2 * line_size); in report_recursive_init()
H A Ddosys.cc109 q = ALLOC_WC(length + 1); in dosys()
H A Dpmake.cc182 make_machines_list = ALLOC_WC(strlen(make_machines_list_mb) + 1); in read_make_machines()
H A Dar.cc398 name_string = ALLOC_WC((int) (library->hash.length + in read_archive_dir()
643 member_string = ALLOC_WC((int) ((int) ar_member_name_len * 2)); in translate_entry()
H A Dread2.cc340 wchar_t *string = ALLOC_WC(length + 1); in normalize_name()
402 ALLOC_WC((length = wcslen(name_string)) + 1); in normalize_name()
697 namep = ALLOC_WC((int) (target->hash.length + 10)); in enter_dependencies()
H A Dmain.cc2573 tmp_wcs_buffer = ALLOC_WC(length + 1); in enter_argv_values()
2612 tmp_wcs_buffer = ALLOC_WC(length + 1); in enter_argv_values()
2705 tmp_wcs_buffer = ALLOC_WC(length + 1); in read_environment()
H A Dread.cc317 ALLOC_WC((int) (makefile_name->stat.size + 2)); in read_simple_file()
398 source->string.text.p = ALLOC_WC(num_mb_chars + 1); in read_simple_file()
H A Dparallel.cc1806 tmp_wcs_buffer = ALLOC_WC(length + 1); in run_rule_commands()
H A Dimplicit.cc168 sourcename = ALLOC_WC(src_len); in find_suffix_rule()
H A Ddoname.cc1655 wchar_t *to = string = ALLOC_WC(len); in run_command()
/illumos-gate/usr/src/cmd/make/include/mksh/
H A Ddefs.h154 #define ALLOC_WC(x) ((wchar_t *)getmem((x) * SIZEOFWCHAR_T)) macro