Home
last modified time | relevance | path

Searched refs:is_malloc (Results 1 – 25 of 46) sorted by relevance

12

/dports/lang/perl5.34/perl-5.34.0/regen/
H A Dembed.pl92 my $is_malloc = ( $flags =~ /a/ );
93 my $can_ignore = ( $flags !~ /R/ ) && ( $flags !~ /P/ ) && !$is_malloc;
207 if ( $is_malloc ) {
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/regen/
H A Dembed.pl92 my $is_malloc = ( $flags =~ /a/ );
93 my $can_ignore = ( $flags !~ /R/ ) && ( $flags !~ /P/ ) && !$is_malloc;
207 if ( $is_malloc ) {
/dports/lang/perl5.30/perl-5.30.3/regen/
H A Dembed.pl93 my $is_malloc = ( $flags =~ /a/ );
94 my $can_ignore = ( $flags !~ /R/ ) && ( $flags !~ /P/ ) && !$is_malloc;
174 if ( $is_malloc ) {
/dports/lang/perl5.32/perl-5.32.1/regen/
H A Dembed.pl94 my $is_malloc = ( $flags =~ /a/ );
95 my $can_ignore = ( $flags !~ /R/ ) && ( $flags !~ /P/ ) && !$is_malloc;
206 if ( $is_malloc ) {
/dports/cad/libredwg/libredwg-0.12.4/src/
H A Ddynapi.h51 const unsigned short is_malloc : 1; // for strings and dynamic arrays only, member
H A Dgen-dynapi.pl838 my $is_malloc = ($type =~ /\*$/ or $type =~ /^(T$|T[UVF]|D2T)/) ? 1 : 0;
839 my $is_indirect = ($is_malloc or $type =~ /^(struct|[23T]|H$)/) ? 1 : 0;
840 my $is_string = ($is_malloc and $type =~ /^(T[UV]?|D2T)$/) ? 1 : 0; # not TF or TFF
843 $is_malloc = 0;
864 $name, $type, $size, $tmpl, $sname, $is_indirect, $is_malloc, $is_string, $dxf;
2793 memcpy (out, &((char *)_obj)[f->offset], f->is_malloc ? sizeof(char*) : f->size);
3078 // TODO: sanity checks. is_malloc (TF)
3080 //if ((char*)old && f->is_malloc)
3082 if (f->is_malloc)
/dports/news/tin/tin-2.4.5/src/
H A Ddebug.c264 t_bool is_malloc, in debug_print_malloc() argument
279 …fprintf(fp, "%12s:%-4d %s(%6lu). Total %lu\n", xfile, line, is_malloc ? " malloc" : "realloc", (un… in debug_print_malloc()
/dports/chinese/tin/tin-2.4.5/src/
H A Ddebug.c264 t_bool is_malloc, in debug_print_malloc() argument
279 …fprintf(fp, "%12s:%-4d %s(%6lu). Total %lu\n", xfile, line, is_malloc ? " malloc" : "realloc", (un… in debug_print_malloc()
/dports/databases/mariadb105-client/mariadb-10.5.15/sql/
H A Dlog_event.cc364 char* buf, ulong buf_size, bool* is_malloc, char **dst, in query_event_uncompress() argument
381 *is_malloc = false; in query_event_uncompress()
422 *is_malloc = true; in query_event_uncompress()
430 if (*is_malloc) in query_event_uncompress()
433 *is_malloc = false; in query_event_uncompress()
453 char* buf, ulong buf_size, bool* is_malloc, char **dst, in row_log_event_uncompress() argument
533 *is_malloc = false; in row_log_event_uncompress()
544 *is_malloc = true; in row_log_event_uncompress()
553 if (*is_malloc) in row_log_event_uncompress()
H A Dlog_event_client.cc3616 bool is_malloc = false; in print() local
3619 temp_buf, UINT_MAX32, NULL, 0, &is_malloc, &new_buf, &len)) in print()
3652 bool is_malloc = false; in print() local
3655 temp_buf, UINT_MAX32, NULL, 0, &is_malloc, &new_buf, &len)) in print()
3688 bool is_malloc= false; in print() local
3691 temp_buf, UINT_MAX32, NULL, 0, &is_malloc, &new_buf, &len)) in print()
/dports/databases/mariadb105-server/mariadb-10.5.15/sql/
H A Dlog_event.cc364 char* buf, ulong buf_size, bool* is_malloc, char **dst, in query_event_uncompress() argument
381 *is_malloc = false; in query_event_uncompress()
422 *is_malloc = true; in query_event_uncompress()
430 if (*is_malloc) in query_event_uncompress()
433 *is_malloc = false; in query_event_uncompress()
453 char* buf, ulong buf_size, bool* is_malloc, char **dst, in row_log_event_uncompress() argument
533 *is_malloc = false; in row_log_event_uncompress()
544 *is_malloc = true; in row_log_event_uncompress()
553 if (*is_malloc) in row_log_event_uncompress()
H A Dlog_event_client.cc3616 bool is_malloc = false; in print() local
3619 temp_buf, UINT_MAX32, NULL, 0, &is_malloc, &new_buf, &len)) in print()
3652 bool is_malloc = false; in print() local
3655 temp_buf, UINT_MAX32, NULL, 0, &is_malloc, &new_buf, &len)) in print()
3688 bool is_malloc= false; in print() local
3691 temp_buf, UINT_MAX32, NULL, 0, &is_malloc, &new_buf, &len)) in print()
/dports/devel/valgrind-lts/valgrind-dragonfly-dragonfly/callgrind/
H A Dfn.c361 fn->is_malloc = False; in new_fn_node()
580 fn->is_malloc = (VG_(strcmp)(fn->name, "malloc")==0); in CLG_()
H A Dglobal.h406 Bool is_malloc :1; member
/dports/devel/valgrind/valgrind-dragonfly-dragonfly/callgrind/
H A Dfn.c361 fn->is_malloc = False; in new_fn_node()
580 fn->is_malloc = (VG_(strcmp)(fn->name, "malloc")==0); in CLG_()
H A Dglobal.h406 Bool is_malloc :1; member
/dports/graphics/mupdf/mupdf-1.18.0-source/source/tools/
H A Dmudraw.c1475 static void *hit_memory_limit(trace_info *info, int is_malloc, size_t oldsize, size_t size) in hit_memory_limit() argument
1477 if (is_malloc) in hit_memory_limit()
1485 static void *hit_alloc_limit(trace_info *info, int is_malloc, size_t oldsize, size_t size) in hit_alloc_limit() argument
1487 if (is_malloc) in hit_alloc_limit()
/dports/databases/mariadb104-server/mariadb-10.4.24/sql/
H A Dlog_event.cc843 char* buf, ulong buf_size, bool* is_malloc, char **dst, in query_event_uncompress() argument
860 *is_malloc = false; in query_event_uncompress()
901 *is_malloc = true; in query_event_uncompress()
909 if (*is_malloc) in query_event_uncompress()
912 *is_malloc = false; in query_event_uncompress()
1012 *is_malloc = false; in row_log_event_uncompress()
1023 *is_malloc = true; in row_log_event_uncompress()
1032 if (*is_malloc) in row_log_event_uncompress()
13816 bool is_malloc = false; in print() local
14524 bool is_malloc = false; in print() local
[all …]
/dports/databases/mariadb104-client/mariadb-10.4.24/sql/
H A Dlog_event.cc843 char* buf, ulong buf_size, bool* is_malloc, char **dst, in query_event_uncompress() argument
860 *is_malloc = false; in query_event_uncompress()
901 *is_malloc = true; in query_event_uncompress()
909 if (*is_malloc) in query_event_uncompress()
912 *is_malloc = false; in query_event_uncompress()
1012 *is_malloc = false; in row_log_event_uncompress()
1023 *is_malloc = true; in row_log_event_uncompress()
1032 if (*is_malloc) in row_log_event_uncompress()
13816 bool is_malloc = false; in print() local
14524 bool is_malloc = false; in print() local
[all …]
/dports/databases/mariadb103-client/mariadb-10.3.34/sql/
H A Dlog_event.cc849 char* buf, ulong buf_size, bool* is_malloc, char **dst, in query_event_uncompress() argument
866 *is_malloc = false; in query_event_uncompress()
907 *is_malloc = true; in query_event_uncompress()
915 if (*is_malloc) in query_event_uncompress()
918 *is_malloc = false; in query_event_uncompress()
1018 *is_malloc = false; in row_log_event_uncompress()
1029 *is_malloc = true; in row_log_event_uncompress()
1038 if (*is_malloc) in row_log_event_uncompress()
13770 bool is_malloc = false; in print() local
14478 bool is_malloc = false; in print() local
[all …]
H A Dlog_event.h5248 … const char *src, ulong src_len, char* buf, ulong buf_size, bool* is_malloc,
5252 … const char *src, ulong src_len, char* buf, ulong buf_size, bool* is_malloc,
/dports/databases/mariadb103-server/mariadb-10.3.34/sql/
H A Dlog_event.cc849 char* buf, ulong buf_size, bool* is_malloc, char **dst,
866 *is_malloc = false;
907 *is_malloc = true;
915 if (*is_malloc)
918 *is_malloc = false;
1018 *is_malloc = false;
1029 *is_malloc = true;
1038 if (*is_malloc)
13770 bool is_malloc = false;
14478 bool is_malloc = false;
[all …]
H A Dlog_event.h5248 … const char *src, ulong src_len, char* buf, ulong buf_size, bool* is_malloc,
5252 … const char *src, ulong src_len, char* buf, ulong buf_size, bool* is_malloc,
/dports/cad/libredwg/libredwg-0.12.4/test/unit-testing/
H A Ddxf_test.c457 if (fp1->is_malloc) // vector in test_object()
/dports/news/tin/tin-2.4.5/include/
H A Dproto.h183 extern void debug_print_malloc(t_bool is_malloc, const char *xfile, int line, size_t size);

12