A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://scip.zib.de/doc/html/memory_8h_source.php below:

SCIP Doxygen Documentation: src/blockmemshell/memory.h Source File

34#ifndef __BMS_MEMORY_H__ 35#define __BMS_MEMORY_H__ 44#include "scip/config.h" 45#include "scip/scip_export.h" 52template

<

typename

T> T* docast(T*,

void

*v);

53template

<

typename

T> T* docast(T*,

void

*v) {

return reinterpret_cast<

T*

>

(v); }

56#if __cplusplus > 199711L 60template

<

typename

T1,

typename

T2> T1* docastcheck(T1* v1,

void

* v, T2* v2)

62 typedef typename

std::remove_const<T1>::type t1;

63 typedef typename

std::remove_const<T2>::type t2;

64 static_assert

(std::is_same<t1, t2>::value,

"need equal types"

);

65 return reinterpret_cast<

T1*

>

(v);

69template

<

typename

T1,

typename

T2> T1* docastcheck(T1* v1,

void

* v, T2* v2) {

return reinterpret_cast<

T1*

>

(v); }

75#define ASSIGN(pointerstarstar, voidstarfunction) (*(pointerstarstar) = docast(*(pointerstarstar), (voidstarfunction))) 76#define ASSIGNCHECK(pointerstarstar, voidstarfunction, origpointer) (*(pointerstarstar) = docastcheck(*(pointerstarstar), (voidstarfunction), (origpointer))) 80#define ASSIGN(pointerstarstar, voidstarfunction) (*(pointerstarstar) = (voidstarfunction)) 81#define ASSIGNCHECK(pointerstarstar, voidstarfunction, origpointer) (*(pointerstarstar) = (voidstarfunction)) 90#if defined(_WIN32) || defined(_WIN64) 91#define SCIP_EXPORT __declspec(dllexport) 92#elif defined(__GNUC__) && __GNUC__ >= 4 93#define SCIP_EXPORT __attribute__((__visibility__("default"

)))

102#define SCIP_UNUSED(x) ((void) (x)) 118#define BMSallocMemory(ptr) ASSIGN((ptr), BMSallocMemory_call( sizeof(**(ptr)), __FILE__, __LINE__ )) 119#define BMSallocClearMemory(ptr) ASSIGN((ptr), BMSallocClearMemory_call((size_t)(1), sizeof(**(ptr)), __FILE__, __LINE__ )) 120#define BMSallocMemorySize(ptr,size) ASSIGN((ptr), BMSallocMemory_call( (size_t)(ptrdiff_t)(size), __FILE__, __LINE__ )) 121#define BMSallocMemoryCPP(size) BMSallocMemory_call( (size_t)(ptrdiff_t)(size), __FILE__, __LINE__ ) 122#define BMSallocClearMemorySize(ptr,size) ASSIGN((ptr), BMSallocClearMemory_call((size_t)(1), (size_t)(ptrdiff_t)(size), __FILE__, __LINE__ )) 123#define BMSallocMemoryArray(ptr,num) ASSIGN((ptr), BMSallocMemoryArray_call((size_t)(ptrdiff_t)(num), sizeof(**(ptr)), __FILE__, __LINE__ )) 124#define BMSallocMemoryArrayCPP(num,size) BMSallocMemoryArray_call( (size_t)(ptrdiff_t)(num), (size_t)(ptrdiff_t)(size), __FILE__, __LINE__ ) 125#define BMSallocClearMemoryArray(ptr,num) ASSIGN((ptr), BMSallocClearMemory_call((size_t)(ptrdiff_t)(num), sizeof(**(ptr)), __FILE__, __LINE__ )) 126#define BMSreallocMemorySize(ptr,size) ASSIGN((ptr), BMSreallocMemory_call((void*)(*(ptr)), (size_t)(ptrdiff_t)(size), __FILE__, __LINE__ )) 127#define BMSreallocMemoryArray(ptr,num) ASSIGN((ptr), BMSreallocMemoryArray_call( *(ptr), (size_t)(ptrdiff_t)(num), sizeof(**(ptr)), __FILE__, __LINE__ )) 129#define BMSclearMemory(ptr) BMSclearMemory_call( (void*)(ptr), sizeof(*(ptr)) ) 130#define BMSclearMemoryArray(ptr, num) BMSclearMemory_call( (void*)(ptr), (size_t)(ptrdiff_t)(num)*sizeof(*(ptr)) ) 131#define BMSclearMemorySize(ptr, size) BMSclearMemory_call( (void*)(ptr), (size_t)(ptrdiff_t)(size) ) 133#define BMScopyMemory(ptr, source) BMScopyMemory_call( (void*)(ptr), (const void*)(source), sizeof(*(ptr)) ) 134#define BMScopyMemoryArray(ptr, source, num) BMScopyMemory_call( (void*)(ptr), (const void*)(source), (size_t)(ptrdiff_t)(num)*sizeof(*(ptr)) ) 135#define BMScopyMemorySize(ptr, source, size) BMScopyMemory_call( (void*)(ptr), (const void*)(source), (size_t)(ptrdiff_t)(size) ) 137#define BMSmoveMemory(ptr, source) BMSmoveMemory_call( (void*)(ptr), (const void*)(source), sizeof(*(ptr)) ) 138#define BMSmoveMemoryArray(ptr, source, num) BMSmoveMemory_call( (void*)(ptr), (const void*)(source), (size_t)(ptrdiff_t)(num) * sizeof(*(ptr)) ) 139#define BMSmoveMemorySize(ptr, source, size) BMSmoveMemory_call( (void*)(ptr), (const void*)(source), (size_t)(ptrdiff_t)(size) ) 141#define BMSduplicateMemory(ptr, source) ASSIGN((ptr), BMSduplicateMemory_call( (const void*)(source), sizeof(**(ptr)), __FILE__, __LINE__ )) 142#define BMSduplicateMemorySize(ptr, source, size) ASSIGN((ptr), BMSduplicateMemory_call( (const void*)(source), (size_t)(ptrdiff_t)(size), __FILE__, __LINE__ )) 143#define BMSduplicateMemoryArray(ptr, source, num) ASSIGNCHECK((ptr), BMSduplicateMemoryArray_call( (const void*)(source), (size_t)(ptrdiff_t)(num), \ 144 sizeof(**(ptr)), __FILE__, __LINE__ ), source) 145#define BMSfreeMemory(ptr) BMSfreeMemory_call( (void**)(ptr), __FILE__, __LINE__ ) 146#define BMSfreeMemoryNull(ptr) BMSfreeMemoryNull_call( (void**)(ptr), __FILE__, __LINE__ ) 147#define BMSfreeMemoryArray(ptr) BMSfreeMemory_call( (void**)(ptr), __FILE__, __LINE__ ) 148#define BMSfreeMemoryArrayNull(ptr) BMSfreeMemoryNull_call( (void**)(ptr), __FILE__, __LINE__ ) 149#define BMSfreeMemorySize(ptr) BMSfreeMemory_call( (void**)(ptr), __FILE__, __LINE__ ) 150#define BMSfreeMemorySizeNull(ptr) BMSfreeMemoryNull_call( (void**)(ptr), __FILE__, __LINE__ ) 153#define BMSgetPointerSize(ptr) BMSgetPointerSize_call(ptr) 154#define BMSdisplayMemory() BMSdisplayMemory_call() 155#define BMScheckEmptyMemory() BMScheckEmptyMemory_call() 156#define BMSgetMemoryUsed() BMSgetMemoryUsed_call() 158#define BMSgetPointerSize(ptr) 0 159#define BMSdisplayMemory() 160#define BMScheckEmptyMemory() 161#define BMSgetMemoryUsed() 0LL 169 const char

* filename,

177 const char

* filename,

186 const char

* filename,

195 const char

* filename,

205 const char

* filename,

239 const char

* filename,

249 const char

* filename,

257 const char

* filename,

265 const char

* filename,

305#ifndef BMS_NOBLOCKMEM 307#define BMScreateChunkMemory(sz,isz,gbf) BMScreateChunkMemory_call( (sz), (isz), (gbf), __FILE__, __LINE__ ) 308#define BMSclearChunkMemory(mem) BMSclearChunkMemory_call( (mem), __FILE__, __LINE__ ) 309#define BMSdestroyChunkMemory(mem) BMSdestroyChunkMemory_call( (mem), __FILE__, __LINE__ ) 311#define BMSallocChunkMemory(mem,ptr) ASSIGN((ptr), BMSallocChunkMemory_call((mem), sizeof(**(ptr)), __FILE__, __LINE__)) 312#define BMSduplicateChunkMemory(mem, ptr, source) ASSIGN((ptr), BMSduplicateChunkMemory_call((mem), (const void*)(source), \ 313 sizeof(**(ptr)), __FILE__, __LINE__ )) 314#define BMSfreeChunkMemory(mem,ptr) BMSfreeChunkMemory_call( (mem), (void**)(ptr), sizeof(**(ptr)), __FILE__, __LINE__ ) 315#define BMSfreeChunkMemoryNull(mem,ptr) BMSfreeChunkMemoryNull_call( (mem), (void**)(ptr), sizeof(**(ptr)), __FILE__, __LINE__ ) 316#define BMSgarbagecollectChunkMemory(mem) BMSgarbagecollectChunkMemory_call(mem) 317#define BMSgetChunkMemoryUsed(mem) BMSgetChunkMemoryUsed_call(mem) 323#define BMScreateChunkMemory(sz,isz,gbf) (void*)(0x01) 324#define BMSclearChunkMemory(mem) 325#define BMSclearChunkMemoryNull(mem) 326#define BMSdestroyChunkMemory(mem) 327#define BMSdestroyChunkMemoryNull(mem) 328#define BMSallocChunkMemory(mem,ptr) BMSallocMemory(ptr) 329#define BMSduplicateChunkMemory(mem, ptr, source) BMSduplicateMemory(ptr,source) 330#define BMSfreeChunkMemory(mem,ptr) BMSfreeMemory(ptr) 331#define BMSfreeChunkMemoryNull(mem,ptr) BMSfreeMemoryNull(ptr) 332#define BMSgarbagecollectChunkMemory(mem) 333#define BMSgetChunkMemoryUsed(mem) 0LL 357 const char

* filename,

365 const char

* filename,

373 const char

* filename,

382 const char

* filename,

392 const char

* filename,

402 const char

* filename,

412 const char

* filename,

439#ifndef BMS_NOBLOCKMEM 447#define BMScreateBlockMemory(csz,gbf) BMScreateBlockMemory_call( (csz), (gbf), __FILE__, __LINE__ ) 448#define BMSclearBlockMemory(mem) BMSclearBlockMemory_call( (mem), __FILE__, __LINE__ ) 449#define BMSdestroyBlockMemory(mem) BMSdestroyBlockMemory_call( (mem), __FILE__, __LINE__ ) 451#define BMSallocBlockMemory(mem,ptr) ASSIGN((ptr), BMSallocBlockMemory_call((mem), sizeof(**(ptr)), __FILE__, __LINE__)) 452#define BMSallocClearBlockMemory(mem,ptr) ASSIGN((ptr), BMSallocClearBlockMemory_call((mem), sizeof(**(ptr)), __FILE__, __LINE__)) 453#define BMSallocBlockMemorySize(mem,ptr,size) ASSIGN((ptr), BMSallocBlockMemory_call((mem), (size_t)(ptrdiff_t)(size), __FILE__, __LINE__)) 454#define BMSallocBlockMemoryArray(mem,ptr,num) ASSIGN((ptr), BMSallocBlockMemoryArray_call((mem), (size_t)(ptrdiff_t)(num), sizeof(**(ptr)), __FILE__, __LINE__)) 455#define BMSallocClearBlockMemoryArray(mem,ptr,num) ASSIGN((ptr), BMSallocClearBlockMemoryArray_call((mem), (size_t)(ptrdiff_t)(num), sizeof(**(ptr)), __FILE__, __LINE__)) 456#define BMSreallocBlockMemorySize(mem,ptr,oldsize,newsize) ASSIGN((ptr), BMSreallocBlockMemory_call((mem), (void*)(*(ptr)), \ 457 (size_t)(ptrdiff_t)(oldsize), (size_t)(ptrdiff_t)(newsize), __FILE__, __LINE__)) 458#define BMSreallocBlockMemoryArray(mem,ptr,oldnum,newnum) ASSIGN((ptr), BMSreallocBlockMemoryArray_call((mem), (void*)(*(ptr)), \ 459 (size_t)(ptrdiff_t)(oldnum), (size_t)(ptrdiff_t)(newnum), sizeof(**(ptr)), __FILE__, __LINE__)) 460#define BMSduplicateBlockMemory(mem, ptr, source) ASSIGN((ptr), BMSduplicateBlockMemory_call((mem), (const void*)(source), \ 461 sizeof(**(ptr)), __FILE__, __LINE__ )) 462#define BMSduplicateBlockMemoryArray(mem, ptr, source, num) ASSIGNCHECK((ptr), BMSduplicateBlockMemoryArray_call( (mem), (const void*)(source), \ 463 (size_t)(ptrdiff_t)(num), sizeof(**(ptr)), __FILE__, __LINE__ ), source) 465#define BMSfreeBlockMemory(mem,ptr) BMSfreeBlockMemory_call( (mem), (void**)(ptr), sizeof(**(ptr)), __FILE__, __LINE__ ) 466#define BMSfreeBlockMemoryNull(mem,ptr) BMSfreeBlockMemoryNull_call( (mem), (void**)(ptr), sizeof(**(ptr)), __FILE__, __LINE__ ) 467#define BMSfreeBlockMemoryArray(mem,ptr,num) BMSfreeBlockMemory_call( (mem), (void**)(ptr), (num)*sizeof(**(ptr)), __FILE__, __LINE__ ) 468#define BMSfreeBlockMemoryArrayNull(mem,ptr,num) BMSfreeBlockMemoryNull_call( (mem), (void**)(ptr), (num)*sizeof(**(ptr)), __FILE__, __LINE__ ) 469#define BMSfreeBlockMemorySize(mem,ptr,size) BMSfreeBlockMemory_call( (mem), (void**)(ptr), (size_t)(ptrdiff_t)(size), __FILE__, __LINE__ ) 470#define BMSfreeBlockMemorySizeNull(mem,ptr,size) BMSfreeBlockMemory_call( (mem), (void**)(ptr), (size_t)(ptrdiff_t)(size), __FILE__, __LINE__ ) 472#define BMSgarbagecollectBlockMemory(mem) BMSgarbagecollectBlockMemory_call(mem) 473#define BMSgetBlockMemoryAllocated(mem) BMSgetBlockMemoryAllocated_call(mem) 474#define BMSgetBlockMemoryUsed(mem) BMSgetBlockMemoryUsed_call(mem) 475#define BMSgetBlockMemoryUnused(mem) BMSgetBlockMemoryUnused_call(mem) 476#define BMSgetBlockMemoryUsedMax(mem) BMSgetBlockMemoryUsedMax_call(mem) 477#define BMSgetBlockMemoryUnusedMax(mem) BMSgetBlockMemoryUnusedMax_call(mem) 478#define BMSgetBlockMemoryAllocatedMax(mem) BMSgetBlockMemoryAllocatedMax_call(mem) 479#define BMSgetBlockPointerSize(mem,ptr) BMSgetBlockPointerSize_call((mem), (ptr)) 480#define BMSdisplayBlockMemory(mem) BMSdisplayBlockMemory_call(mem) 481#define BMSblockMemoryCheckEmpty(mem) BMScheckEmptyBlockMemory_call(mem) 487#define BMScreateBlockMemory(csz,gbf) (SCIP_UNUSED(csz), SCIP_UNUSED(gbf), (void*)(0x01)) 488#define BMSclearBlockMemory(mem) SCIP_UNUSED(mem) 489#define BMSclearBlockMemoryNull(mem) SCIP_UNUSED(mem) 490#define BMSdestroyBlockMemory(mem) SCIP_UNUSED(mem) 491#define BMSdestroyBlockMemoryNull(mem) SCIP_UNUSED(mem) 492#define BMSallocBlockMemory(mem,ptr) (SCIP_UNUSED(mem), BMSallocMemory(ptr)) 493#define BMSallocClearBlockMemory(mem,ptr) (SCIP_UNUSED(mem), BMSallocClearMemory(ptr)) 494#define BMSallocBlockMemoryArray(mem,ptr,num) (SCIP_UNUSED(mem), BMSallocMemoryArray(ptr,num)) 495#define BMSallocClearBlockMemoryArray(mem,ptr,num) (SCIP_UNUSED(mem), BMSallocClearMemoryArray(ptr,num)) 496#define BMSallocBlockMemorySize(mem,ptr,size) (SCIP_UNUSED(mem), BMSallocMemorySize(ptr,size)) 497#define BMSreallocBlockMemoryArray(mem,ptr,oldnum,newnum) (SCIP_UNUSED(mem), SCIP_UNUSED(oldnum), BMSreallocMemoryArray(ptr,newnum)) 498#define BMSreallocBlockMemorySize(mem,ptr,oldsize,newsize) (SCIP_UNUSED(mem), SCIP_UNUSED(oldsize), BMSreallocMemorySize(ptr,newsize)) 499#define BMSduplicateBlockMemory(mem, ptr, source) (SCIP_UNUSED(mem), BMSduplicateMemory(ptr,source)) 500#define BMSduplicateBlockMemoryArray(mem, ptr, source, num) (SCIP_UNUSED(mem), BMSduplicateMemoryArray(ptr,source,num)) 501#define BMSfreeBlockMemory(mem,ptr) (SCIP_UNUSED(mem), BMSfreeMemory(ptr)) 502#define BMSfreeBlockMemoryNull(mem,ptr) (SCIP_UNUSED(mem), BMSfreeMemoryNull(ptr)) 503#define BMSfreeBlockMemoryArray(mem,ptr,num) (SCIP_UNUSED(mem), SCIP_UNUSED(num), BMSfreeMemoryArray(ptr)) 504#define BMSfreeBlockMemoryArrayNull(mem,ptr,num) (SCIP_UNUSED(mem), SCIP_UNUSED(num), BMSfreeMemoryArrayNull(ptr)) 505#define BMSfreeBlockMemorySize(mem,ptr,size) (SCIP_UNUSED(mem), SCIP_UNUSED(size), BMSfreeMemory(ptr)) 506#define BMSfreeBlockMemorySizeNull(mem,ptr,size) (SCIP_UNUSED(mem), SCIP_UNUSED(size), BMSfreeMemoryNull(ptr)) 507#define BMSgarbagecollectBlockMemory(mem) SCIP_UNUSED(mem) 508#define BMSgetBlockMemoryAllocated(mem) (SCIP_UNUSED(mem), 0LL) 509#define BMSgetBlockMemoryUsed(mem) (SCIP_UNUSED(mem), 0LL) 510#define BMSgetBlockMemoryUnused(mem) (SCIP_UNUSED(mem), 0LL) 511#define BMSgetBlockMemoryUsedMax(mem) (SCIP_UNUSED(mem), 0LL) 512#define BMSgetBlockMemoryUnusedMax(mem) (SCIP_UNUSED(mem), 0LL) 513#define BMSgetBlockMemoryAllocatedMax(mem) (SCIP_UNUSED(mem), 0LL) 514#define BMSgetBlockPointerSize(mem,ptr) (SCIP_UNUSED(mem), SCIP_UNUSED(ptr), 0) 515#define BMSdisplayBlockMemory(mem) SCIP_UNUSED(mem) 516#define BMSblockMemoryCheckEmpty(mem) (SCIP_UNUSED(mem), 0LL) 527 const char

* filename,

535 const char

* filename,

543 const char

* filename,

552 const char

* filename,

561 const char

* filename,

571 const char

* filename,

581 const char

* filename,

592 const char

* filename,

604 const char

* filename,

614 const char

* filename,

625 const char

* filename,

635 const char

* filename,

645 const char

* filename,

727#define BMSallocBufferMemory(mem,ptr) ASSIGN((ptr), BMSallocBufferMemory_call((mem), sizeof(**(ptr)), __FILE__, __LINE__)) 728#define BMSallocBufferMemorySize(mem,ptr,size) ASSIGN((ptr), BMSallocBufferMemory_call((mem), (size_t)(ptrdiff_t)(size), __FILE__, __LINE__)) 729#define BMSreallocBufferMemorySize(mem,ptr,size) \ 730 ASSIGN((ptr), BMSreallocBufferMemory_call((mem), (void*)(*(ptr)), (size_t)(ptrdiff_t)(size), __FILE__, __LINE__)) 731#define BMSallocBufferMemoryArray(mem,ptr,num) ASSIGN((ptr), BMSallocBufferMemoryArray_call((mem), (size_t)(ptrdiff_t)(num), sizeof(**(ptr)), __FILE__, __LINE__)) 732#define BMSallocClearBufferMemoryArray(mem,ptr,num) ASSIGN((ptr), BMSallocClearBufferMemoryArray_call((mem), (size_t)(ptrdiff_t)(num), sizeof(**(ptr)), __FILE__, __LINE__)) 733#define BMSreallocBufferMemoryArray(mem,ptr,num) ASSIGN((ptr), BMSreallocBufferMemoryArray_call((mem), (void*)(*(ptr)), (size_t)(ptrdiff_t)(num), \ 734 sizeof(**(ptr)), __FILE__, __LINE__)) 735#define BMSduplicateBufferMemory(mem,ptr,source,size) \ 736 ASSIGN((ptr), BMSduplicateBufferMemory_call((mem), (const void*)(source), (size_t)(ptrdiff_t)(size), __FILE__, __LINE__)) 737#define BMSduplicateBufferMemoryArray(mem,ptr,source,num) ASSIGNCHECK((ptr), BMSduplicateBufferMemoryArray_call((mem), \ 738 (const void*)(source), (size_t)(ptrdiff_t)(num), sizeof(**(ptr)), __FILE__, __LINE__), source) 740#define BMSfreeBufferMemory(mem,ptr) BMSfreeBufferMemory_call((mem), (void**)(ptr), __FILE__, __LINE__) 741#define BMSfreeBufferMemoryNull(mem,ptr) BMSfreeBufferMemoryNull_call((mem), (void**)(ptr), __FILE__, __LINE__) 742#define BMSfreeBufferMemoryArray(mem,ptr) BMSfreeBufferMemory_call((mem), (void**)(ptr), __FILE__, __LINE__) 743#define BMSfreeBufferMemoryArrayNull(mem,ptr) BMSfreeBufferMemoryNull_call((mem), (void**)(ptr), __FILE__, __LINE__) 744#define BMSfreeBufferMemorySize(mem,ptr) BMSfreeBufferMemory_call((mem), (void**)(ptr), __FILE__, __LINE__); 745#define BMSfreeBufferMemorySizeNull(mem,ptr) BMSfreeBufferMemoryNull_call((mem), (void**)(ptr), __FILE__, __LINE__) 747#define BMScreateBufferMemory(fac,init,clean) BMScreateBufferMemory_call((fac), (init), (clean), __FILE__, __LINE__) 748#define BMSdestroyBufferMemory(mem) BMSdestroyBufferMemory_call((mem), __FILE__, __LINE__) 757 const char

* filename,

765 const char

* filename,

788 const char

* filename,

798 const char

* filename,

808 const char

* filename,

818 const char

* filename,

829 const char

* filename,

839 const char

* filename,

850 const char

* filename,

859 const char

* filename,

868 const char

* filename,

void BMSfreeChunkMemory_call(BMS_CHKMEM *chkmem, void **ptr, size_t size, const char *filename, int line)

void * BMSallocClearMemory_call(size_t num, size_t typesize, const char *filename, int line)

void * BMSduplicateBufferMemory_call(BMS_BUFMEM *buffer, const void *source, size_t size, const char *filename, int line)

void * BMSduplicateMemoryArray_call(const void *source, size_t num, size_t typesize, const char *filename, int line)

void * BMSallocMemory_call(size_t size, const char *filename, int line)

void BMSfreeBlockMemoryNull_call(BMS_BLKMEM *blkmem, void **ptr, size_t size, const char *filename, int line)

void BMSgarbagecollectChunkMemory_call(BMS_CHKMEM *chkmem)

size_t BMSgetBlockPointerSize_call(const BMS_BLKMEM *blkmem, const void *ptr)

void BMSdisplayMemory_call(void)

struct BMS_ChkMem BMS_CHKMEM

int BMSisAligned(size_t size)

void BMSclearBlockMemory_call(BMS_BLKMEM *blkmem, const char *filename, int line)

long long BMScheckEmptyBlockMemory_call(const BMS_BLKMEM *blkmem)

void BMSfreeBufferMemory_call(BMS_BUFMEM *buffer, void **ptr, const char *filename, int line)

void BMSfreeMemory_call(void **ptr, const char *filename, int line)

size_t BMSgetPointerSize_call(const void *ptr)

void * BMSreallocBlockMemory_call(BMS_BLKMEM *blkmem, void *ptr, size_t oldsize, size_t newsize, const char *filename, int line)

void BMSfreeMemoryNull_call(void **ptr, const char *filename, int line)

void BMSsetBufferMemoryArraygrowinit(BMS_BUFMEM *buffer, int arraygrowinit)

void BMSdestroyBufferMemory_call(BMS_BUFMEM **buffer, const char *filename, int line)

void BMSclearChunkMemory_call(BMS_CHKMEM *chkmem, const char *filename, int line)

void * BMSreallocBufferMemory_call(BMS_BUFMEM *buffer, void *ptr, size_t size, const char *filename, int line)

void * BMSreallocMemoryArray_call(void *ptr, size_t num, size_t typesize, const char *filename, int line)

long long BMSgetBlockMemoryUsedMax_call(const BMS_BLKMEM *blkmem)

void * BMSallocBufferMemoryArray_call(BMS_BUFMEM *buffer, size_t num, size_t typesize, const char *filename, int line)

void BMSmoveMemory_call(void *ptr, const void *source, size_t size)

void * BMSallocBlockMemoryArray_call(BMS_BLKMEM *blkmem, size_t num, size_t typesize, const char *filename, int line)

void * BMSreallocBufferMemoryArray_call(BMS_BUFMEM *buffer, void *ptr, size_t num, size_t typesize, const char *filename, int line)

void BMSdisplayBlockMemory_call(const BMS_BLKMEM *blkmem)

long long BMSgetBlockMemoryAllocated_call(const BMS_BLKMEM *blkmem)

void BMSclearMemory_call(void *ptr, size_t size)

long long BMSgetBlockMemoryUsed_call(const BMS_BLKMEM *blkmem)

void BMSfreeBufferMemoryNull_call(BMS_BUFMEM *buffer, void **ptr, const char *filename, int line)

void * BMSallocChunkMemory_call(BMS_CHKMEM *chkmem, size_t size, const char *filename, int line)

void * BMSreallocMemory_call(void *ptr, size_t size, const char *filename, int line)

BMS_BLKMEM * BMScreateBlockMemory_call(int initchunksize, int garbagefactor, const char *filename, int line)

void * BMSallocClearBlockMemoryArray_call(BMS_BLKMEM *blkmem, size_t num, size_t typesize, const char *filename, int line)

void * BMSduplicateBlockMemoryArray_call(BMS_BLKMEM *blkmem, const void *source, size_t num, size_t typesize, const char *filename, int line)

void * BMSduplicateMemory_call(const void *source, size_t size, const char *filename, int line)

BMS_BUFMEM * BMScreateBufferMemory_call(double arraygrowfac, int arraygrowinit, unsigned int clean, const char *filename, int line)

void BMSdestroyBlockMemory_call(BMS_BLKMEM **blkmem, const char *filename, int line)

void * BMSallocMemoryArray_call(size_t num, size_t typesize, const char *filename, int line)

long long BMSgetBlockMemoryUnused_call(const BMS_BLKMEM *blkmem)

void BMSprintBufferMemory(BMS_BUFMEM *buffer)

void * BMSduplicateChunkMemory_call(BMS_CHKMEM *chkmem, const void *source, size_t size, const char *filename, int line)

long long BMSgetMemoryUsed_call(void)

void BMScheckEmptyMemory_call(void)

void * BMSallocClearBlockMemory_call(BMS_BLKMEM *blkmem, size_t size, const char *filename, int line)

void * BMSallocBufferMemory_call(BMS_BUFMEM *buffer, size_t size, const char *filename, int line)

BMS_CHKMEM * BMScreateChunkMemory_call(size_t size, int initchunksize, int garbagefactor, const char *filename, int line)

void * BMSallocBlockMemory_call(BMS_BLKMEM *blkmem, size_t size, const char *filename, int line)

void BMScopyMemory_call(void *ptr, const void *source, size_t size)

long long BMSgetBufferMemoryUsed(const BMS_BUFMEM *bufmem)

long long BMSgetChunkMemoryUsed_call(const BMS_CHKMEM *chkmem)

void BMSfreeChunkMemoryNull_call(BMS_CHKMEM *chkmem, void **ptr, size_t size, const char *filename, int line)

void BMSsetBufferMemoryArraygrowfac(BMS_BUFMEM *buffer, double arraygrowfac)

void * BMSduplicateBufferMemoryArray_call(BMS_BUFMEM *buffer, const void *source, size_t num, size_t typesize, const char *filename, int line)

void BMSdestroyChunkMemory_call(BMS_CHKMEM **chkmem, const char *filename, int line)

struct BMS_BlkMem BMS_BLKMEM

void BMSgarbagecollectBlockMemory_call(BMS_BLKMEM *blkmem)

void BMSfreeBlockMemory_call(BMS_BLKMEM *blkmem, void **ptr, size_t size, const char *filename, int line)

void * BMSallocClearBufferMemoryArray_call(BMS_BUFMEM *buffer, size_t num, size_t typesize, const char *filename, int line)

long long BMSgetBlockMemoryUnusedMax_call(const BMS_BLKMEM *blkmem)

void * BMSduplicateBlockMemory_call(BMS_BLKMEM *blkmem, const void *source, size_t size, const char *filename, int line)

void BMSalignMemsize(size_t *size)

void * BMSreallocBlockMemoryArray_call(BMS_BLKMEM *blkmem, void *ptr, size_t oldnum, size_t newnum, size_t typesize, const char *filename, int line)

size_t BMSgetNUsedBufferMemory(BMS_BUFMEM *buffer)

long long BMSgetBlockMemoryAllocatedMax_call(const BMS_BLKMEM *blkmem)

unsigned int arraygrowinit


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4