Lines Matching defs:cc
134 a 64-bit platform, this cc-field contains a pointer to a const
436 void set_cc ( Block* b, const HChar* cc )
440 *(const HChar**)&b2[0] = cc;
515 /* Make the cc+szB fields accessible. */
1371 const HChar* cc;
1394 const HChar* cc;
1438 cc = get_cc(b);
1440 cc = "(--profile-heap=yes for details)";
1442 VG_(printf)("block: inUse=%d pszB=%d cc=%s\n",
1446 vg_assert(cc);
1448 vg_assert(anCCs[k].cc);
1449 if (0 == VG_(strcmp)(cc, anCCs[k].cc))
1459 anCCs[k].cc = cc;
1477 anCCs[n_ccs].cc = "perm_malloc";
1485 anCCs[k].nBytes, anCCs[k].nBlocks, anCCs[k].cc );
1674 void* VG_(arena_malloc) ( ArenaId aid, const HChar* cc, SizeT req_pszB )
1693 vg_assert(cc);
1813 set_cc(b, cc);
1824 set_cc(b, cc);
2146 void* VG_(arena_memalign) ( ArenaId aid, const HChar* cc,
2162 vg_assert(cc);
2196 base_p = VG_(arena_malloc) ( aid, cc, base_pszB_req );
2240 set_cc(align_b, cc);
2349 void* VG_(arena_calloc) ( ArenaId aid, const HChar* cc,
2358 p = VG_(arena_malloc) ( aid, cc, size );
2367 void* VG_(arena_realloc) ( ArenaId aid, const HChar* cc,
2381 return VG_(arena_malloc)(aid, cc, req_pszB);
2399 p_new = VG_(arena_malloc) ( aid, cc, req_pszB );
2517 __inline__ HChar* VG_(arena_strdup) ( ArenaId aid, const HChar* cc,
2528 res = VG_(arena_malloc) (aid, cc, len);
2573 void* VG_(malloc) ( const HChar* cc, SizeT nbytes )
2575 return VG_(arena_malloc) ( VG_AR_CORE, cc, nbytes );
2583 void* VG_(calloc) ( const HChar* cc, SizeT nmemb, SizeT bytes_per_memb )
2585 return VG_(arena_calloc) ( VG_AR_CORE, cc, nmemb, bytes_per_memb );
2588 void* VG_(realloc) ( const HChar* cc, void* ptr, SizeT size )
2590 return VG_(arena_realloc) ( VG_AR_CORE, cc, ptr, size );
2598 HChar* VG_(strdup) ( const HChar* cc, const HChar* s )
2600 return VG_(arena_strdup) ( VG_AR_CORE, cc, s );