Lines Matching defs:uint32max_array_t
6 typedef char uint32max_array_t[4294967295];
8 typedef char uint32max_array_t[65535];
17 uint32max_array_t *m1 = p_new(&test_pool, uint32max_array_t, 4294967297ULL);
25 test_assert(p_realloc_type(&test_pool, m1, uint32max_array_t, 4294967296ULL, 4294967297ULL) == POINTER_CAST(18446744073709551615ULL));
30 test_assert(p_realloc_type(&test_pool, m1, uint32max_array_t, 4294967297ULL, 4294967296ULL) == POINTER_CAST(18446744069414584320ULL));
34 uint32max_array_t *m1 = p_new(&test_pool, uint32max_array_t, 65537);
42 test_assert(p_realloc_type(&test_pool, m1, uint32max_array_t, 65536, 65537) == POINTER_CAST(4294967295U));
47 test_assert(p_realloc_type(&test_pool, m1, uint32max_array_t, 65537, 65536) == POINTER_CAST(4294901760U));
58 static uint32max_array_t *m1;
66 m1 = p_new(&test_pool, uint32max_array_t, 4294967298ULL);
72 m1 = p_realloc_type(&test_pool, m1, uint32max_array_t, 4294967297ULL, 4294967298ULL);
78 m1 = p_realloc_type(&test_pool, m1, uint32max_array_t, 4294967298ULL, 4294967297ULL);
88 m1 = p_new(&test_pool, uint32max_array_t, 65538);
94 m1 = p_realloc_type(&test_pool, m1, uint32max_array_t, 65537, 65538);
100 m1 = p_realloc_type(&test_pool, m1, uint32max_array_t, 65538, 65537);