Home
last modified time | relevance | path

Searched refs:ptr (Results 1 – 6 of 6) sorted by relevance

/mbedtls-3.4.0/tests/suites/
Dtest_suite_debug.function9 char *ptr;
15 char *p = buffer->ptr;
42 buffer->ptr = p;
62 buffer.ptr = buffer.buf;
97 buffer.ptr = buffer.buf;
129 buffer.ptr = buffer.buf;
163 buffer.ptr = buffer.buf;
199 buffer.ptr = buffer.buf;
/mbedtls-3.4.0/tests/include/test/
Dconstant_flow.h77 #define TEST_CF_SECRET(ptr, size) argument
78 #define TEST_CF_PUBLIC(ptr, size) argument
/mbedtls-3.4.0/library/
Dplatform.c48 static void platform_free_uninit( void *ptr ) in platform_free_uninit() argument
50 ((void) ptr); in platform_free_uninit()
64 void mbedtls_free( void * ptr ) in mbedtls_free() argument
66 (*mbedtls_free_func)( ptr ); in mbedtls_free()
Dmemory_buffer_alloc.c375 static void buffer_alloc_free( void *ptr ) in buffer_alloc_free() argument
378 unsigned char *p = (unsigned char *) ptr; in buffer_alloc_free()
380 if( ptr == NULL || heap.buf == NULL || heap.first == NULL ) in buffer_alloc_free()
562 static void buffer_alloc_free_mutexed( void *ptr ) in buffer_alloc_free_mutexed() argument
568 buffer_alloc_free( ptr ); in buffer_alloc_free_mutexed()
/mbedtls-3.4.0/programs/ssl/
Dssl_context_info.c445 void *ptr; in read_next_b64_code() local
449 ptr = realloc( *b64, new_size ); in read_next_b64_code()
450 if( NULL == ptr ) in read_next_b64_code()
455 *b64 = ptr; in read_next_b64_code()
1068 void *ptr = realloc( ssl_buf, ssl_required_len ); in main() local
1069 if( NULL == ptr ) in main()
1076 ssl_buf = ptr; in main()
/mbedtls-3.4.0/include/mbedtls/
Dplatform.h148 extern void mbedtls_free( void *ptr );