Home
last modified time | relevance | path

Searched refs:temp_len (Results 1 – 6 of 6) sorted by relevance

/openbsd/gnu/usr.bin/binutils/gdb/
H A Dc-valprint.c107 unsigned int temp_len; in c_val_print() local
110 for (temp_len = 0; in c_val_print()
111 (valaddr + embedded_offset)[temp_len] in c_val_print()
112 && temp_len < len && temp_len < print_max; in c_val_print()
113 temp_len++); in c_val_print()
114 len = temp_len; in c_val_print()
H A Dp-valprint.c96 unsigned int temp_len; in pascal_val_print() local
99 for (temp_len = 0; in pascal_val_print()
100 (valaddr + embedded_offset)[temp_len] in pascal_val_print()
101 && temp_len < len && temp_len < print_max; in pascal_val_print()
102 temp_len++); in pascal_val_print()
103 len = temp_len; in pascal_val_print()
H A Dada-valprint.c818 int temp_len; in ada_val_print_1() local
821 for (temp_len = 0; in ada_val_print_1()
822 temp_len < len && temp_len < print_max in ada_val_print_1()
823 && char_at (valaddr, temp_len, eltlen) != 0; in ada_val_print_1()
824 temp_len += 1); in ada_val_print_1()
825 len = temp_len; in ada_val_print_1()
/openbsd/gnu/usr.bin/texinfo/makeinfo/
H A Dmakeinfo.c3089 int temp_len; in do_flush_right_indentation() local
3106 temp_len = strlen ((char *)output_paragraph); in do_flush_right_indentation()
3107 temp = xmalloc (temp_len + 1); in do_flush_right_indentation()
3108 memcpy (temp, (char *)output_paragraph, temp_len); in do_flush_right_indentation()
3113 memcpy ((char *)output_paragraph + i, temp, temp_len); in do_flush_right_indentation()
/openbsd/gnu/usr.bin/perl/
H A Dpp_sys.c3789 STRLEN temp_len; in PP() local
3793 temp = SvPV_nomg_const(sv, temp_len); in PP()
3795 if (!IS_SAFE_PATHNAME(temp, temp_len, OP_NAME(PL_op))) { in PP()
H A Dop.c6231 Size_t temp_len; in S_pmtrans() local
6301 t0 = t = (U8*)SvPV_const(inverted_tstr, temp_len); in S_pmtrans()
6302 tend = t0 + temp_len; in S_pmtrans()