source: src/tests/vector/vector_int.c@ a7d151f

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since a7d151f was 9a4e996, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

Update vector_test to remove lvalue keyword

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[86bd7c1f]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[eab39cd]7// vector_int.c --
[86bd7c1f]8//
9// Author : Richard C. Bilson
10// Created On : Wed May 27 17:56:53 2015
[ed0e67a]11// Last Modified By : Peter A. Buhr
12// Last Modified On : Tue Jul 5 21:00:56 2016
13// Update Count : 4
[86bd7c1f]14//
[51b73452]15
16#include "vector_int.h"
17#include <stdlib.h>
18#include <assert.h>
19
20#define DEFAULT_CAPACITY 20
21
[2afec66]22void ?{}( vector_int & vec ) {
[eab39cd]23 vec { DEFAULT_CAPACITY };
[51b73452]24}
25
[2afec66]26void ?{}( vector_int & vec, int reserve ) {
27 vec.last = -1;
28 vec.capacity = reserve;
29 vec.data = malloc( sizeof( int ) * reserve );
[51b73452]30}
31
[2afec66]32void ?{}( vector_int & vec, vector_int other ) {
33 vec.last = other.last;
34 vec.capacity = other.capacity;
35 vec.data = malloc( sizeof( int ) * other.capacity );
36 for (int i = 0; i < vec.last; i++) {
37 vec.data[i] = other.data[i];
[1ad1c99e]38 }
39}
40
[2afec66]41void ^?{}( vector_int & vec ) {
[00e80b6]42 free( vec.data );
[51b73452]43}
44
[134b86a]45void reserve( vector_int *vec, int reserve ) {
[86bd7c1f]46 if ( reserve > vec->capacity ) {
47 vec->data = realloc( vec->data, sizeof( int ) * reserve );
48 vec->capacity = reserve;
49 }
[51b73452]50}
51
[134b86a]52void append( vector_int *vec, int element ) {
[86bd7c1f]53 vec->last++;
54 if ( vec->last == vec->capacity ) {
55 vec->capacity *= 2;
56 vec->data = realloc( vec->data, sizeof( int ) * vec->capacity );
57 }
58 vec->data[ vec->last ] = element;
[51b73452]59}
60
61// implement bounded_array
62
[9a4e996]63int & ?[?]( vector_int * vec, int index ) {
[1ad1c99e]64 return vec->data[ index ];
[51b73452]65}
66
[1ad1c99e]67int last( vector_int * vec ) {
68 return vec->last;
[51b73452]69}
70
[86bd7c1f]71
72// Local Variables: //
73// tab-width: 4 //
74// compile-command: "cfa vector_int.c" //
75// End: //
Note: See TracBrowser for help on using the repository browser.