Home
last modified time | relevance | path

Searched refs:BJAM_CALLOC (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/tools/build/src/engine/modules/
Dorder.cpp76 int * colors = ( int * )BJAM_CALLOC( num_vertices, sizeof( int ) ); in topological_sort()
100 int * * graph = ( int * * )BJAM_CALLOC( length, sizeof( int * ) ); in order()
111 graph[ src ] = ( int * )BJAM_CALLOC( list_length( dependencies ) + 1, in order()
/third_party/boost/tools/build/src/engine/
Dmem.h52 #define BJAM_CALLOC(n,s) (profile_memory(n*s), bjam_calloc_x(n,s)) macro
63 #define BJAM_CALLOC(n,s) bjam_calloc_x(n,s) macro