Home
last modified time | relevance | path

Searched refs:total_allocated_size (Results 1 – 3 of 3) sorted by relevance

/TwlSDK-5.1.0/build/demos.TWL/crypto/rsa-1/src/
Dmain.c42 static u32 total_allocated_size = 0; variable
132 total_allocated_size += size; in MyAlloc()
133 OS_TPrintf("Allocate %d bytes from %p: total %d bytes\n", size, ptr, total_allocated_size); in MyAlloc()
151 total_allocated_size -= size; in MyFree()
152 OS_TPrintf("Free %d bytes from %p: total %d bytes\n", size, ptr, total_allocated_size); in MyFree()
175 total_allocated_size += new_size; in MyRealloc()
176 … OS_TPrintf("Reallocate %d bytes from %p: total %d bytes\n", new_size, ptr, total_allocated_size); in MyRealloc()
180 total_allocated_size -= size; in MyRealloc()
181 …S_TPrintf("Free(for realloc) %d bytes from %p: total %d bytes\n", size, ptr, total_allocated_size); in MyRealloc()
/TwlSDK-5.1.0/build/demos.TWL/crypto/sign-2/src/
Dmain.c45 static u32 total_allocated_size = 0; variable
99 total_allocated_size += size; in MyAlloc()
100 OS_TPrintf("Allocate %d bytes from %p: total %d bytes\n", size, ptr, total_allocated_size); in MyAlloc()
118 total_allocated_size -= size; in MyFree()
119 OS_TPrintf("Free %d bytes from %p: total %d bytes\n", size, ptr, total_allocated_size); in MyFree()
142 total_allocated_size += new_size; in MyRealloc()
143 … OS_TPrintf("Reallocate %d bytes from %p: total %d bytes\n", new_size, ptr, total_allocated_size); in MyRealloc()
147 total_allocated_size -= size; in MyRealloc()
148 …S_TPrintf("Free(for realloc) %d bytes from %p: total %d bytes\n", size, ptr, total_allocated_size); in MyRealloc()
/TwlSDK-5.1.0/build/demos/crypto/sign-1/src/
Dmain.c39 static u32 total_allocated_size = 0; variable
58 total_allocated_size += size; in MyAlloc()
59 OS_TPrintf("Allocate %d bytes from %p: total %d bytes\n", size, ptr, total_allocated_size); in MyAlloc()
77 total_allocated_size -= size; in MyFree()
78 OS_TPrintf("Free %d bytes from %p: total %d bytes\n", size, ptr, total_allocated_size); in MyFree()