| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- ; Copyright 2005-2015 Intel Corporation. All Rights Reserved.
- ;
- ; The source code contained or described herein and all documents related
- ; to the source code ("Material") are owned by Intel Corporation or its
- ; suppliers or licensors. Title to the Material remains with Intel
- ; Corporation or its suppliers and licensors. The Material is protected
- ; by worldwide copyright laws and treaty provisions. No part of the
- ; Material may be used, copied, reproduced, modified, published, uploaded,
- ; posted, transmitted, distributed, or disclosed in any way without
- ; Intel's prior express written permission.
- ;
- ; No license under any patent, copyright, trade secret or other
- ; intellectual property right is granted to or conferred upon you by
- ; disclosure or delivery of the Materials, either expressly, by
- ; implication, inducement, estoppel or otherwise. Any license under such
- ; intellectual property rights must be express and approved by Intel in
- ; writing.
- EXPORTS
- ; frontend.cpp
- scalable_calloc
- scalable_free
- scalable_malloc
- scalable_realloc
- scalable_posix_memalign
- scalable_aligned_malloc
- scalable_aligned_realloc
- scalable_aligned_free
- scalable_msize
- scalable_allocation_mode
- scalable_allocation_command
- __TBB_malloc_safer_free
- __TBB_malloc_safer_realloc
- __TBB_malloc_safer_msize
- __TBB_malloc_safer_aligned_msize
- __TBB_malloc_safer_aligned_realloc
- ; memory pool stuff
- ?pool_create@rml@@YAPEAVMemoryPool@1@_JPEBUMemPoolPolicy@1@@Z
- ?pool_create_v1@rml@@YA?AW4MemPoolError@1@_JPEBUMemPoolPolicy@1@PEAPEAVMemoryPool@1@@Z
- ?pool_destroy@rml@@YA_NPEAVMemoryPool@1@@Z
- ?pool_malloc@rml@@YAPEAXPEAVMemoryPool@1@_K@Z
- ?pool_free@rml@@YA_NPEAVMemoryPool@1@PEAX@Z
- ?pool_reset@rml@@YA_NPEAVMemoryPool@1@@Z
- ?pool_realloc@rml@@YAPEAXPEAVMemoryPool@1@PEAX_K@Z
- ?pool_aligned_realloc@rml@@YAPEAXPEAVMemoryPool@1@PEAX_K2@Z
- ?pool_aligned_malloc@rml@@YAPEAXPEAVMemoryPool@1@_K1@Z
- ?pool_identify@rml@@YAPEAVMemoryPool@1@PEAX@Z
|