File: vect.h

package info (click to toggle)
cbmc 6.6.0-4
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 153,852 kB
  • sloc: cpp: 386,459; ansic: 114,466; java: 28,405; python: 6,003; yacc: 4,552; makefile: 4,041; lex: 2,487; xml: 2,388; sh: 2,050; perl: 557; pascal: 184; javascript: 163; ada: 36
file content (48 lines) | stat: -rw-r--r-- 1,104 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include <assert.h>
#include <stdlib.h>

typedef struct vect
{
  char *arr;
  size_t size;
} vect;

void resize_vec(vect *v, size_t incr)
  // clang-format off
__CPROVER_requires(
  __CPROVER_is_fresh(v, sizeof(vect)) &&
  0 < v->size && v->size <= __CPROVER_max_malloc_size &&
  0 < incr && incr < __CPROVER_max_malloc_size - v->size &&
  __CPROVER_is_fresh(v->arr, v->size)
)
__CPROVER_assigns(v->size, v->arr, __CPROVER_object_whole(v->arr))
__CPROVER_ensures(
  v->size == __CPROVER_old(v->size) + __CPROVER_old(incr) &&
  __CPROVER_is_fresh(v->arr, v->size)
)
// clang-format on
{
  free(v->arr);
  v->size += incr;
  v->arr = malloc(v->size);
  return;
}

void resize_vec_incr10(vect *v)
  // clang-format off
__CPROVER_requires(
  __CPROVER_is_fresh(v, sizeof(vect)) &&
  0 < v->size && v->size <= __CPROVER_max_malloc_size &&
  v->size + 10 < __CPROVER_max_malloc_size &&
  __CPROVER_is_fresh(v->arr, v->size)
)
__CPROVER_assigns(v->size)
__CPROVER_ensures(
  v->size == __CPROVER_old(v->size) + 10 &&
  __CPROVER_is_fresh(v->arr, v->size)
)
// clang-format on
{
  resize_vec(v, 10);
  return;
}