asdl.c 661 Bytes
Newer Older
Jeremy Hylton's avatar
Jeremy Hylton committed
1 2 3 4
#include "Python.h"
#include "asdl.h"

asdl_seq *
5
asdl_seq_new(int size, PyArena *arena)
Jeremy Hylton's avatar
Jeremy Hylton committed
6 7 8 9 10
{
	asdl_seq *seq = NULL;
	size_t n = sizeof(asdl_seq) +
			(size ? (sizeof(void *) * (size - 1)) : 0);

11 12 13 14 15 16 17 18 19 20 21 22 23
	seq = (asdl_seq *)PyArena_Malloc(arena, n);
	if (!seq) {
		PyErr_NoMemory();
		return NULL;
	}
	memset(seq, 0, n);
	seq->size = size;
	return seq;
}

asdl_int_seq *
asdl_int_seq_new(int size, PyArena *arena)
{
Martin v. Löwis's avatar
Martin v. Löwis committed
24
	asdl_int_seq *seq = NULL;
25 26 27
	size_t n = sizeof(asdl_seq) +
			(size ? (sizeof(int) * (size - 1)) : 0);

Martin v. Löwis's avatar
Martin v. Löwis committed
28
	seq = (asdl_int_seq *)PyArena_Malloc(arena, n);
Jeremy Hylton's avatar
Jeremy Hylton committed
29
	if (!seq) {
Neal Norwitz's avatar
Neal Norwitz committed
30
		PyErr_NoMemory();
Jeremy Hylton's avatar
Jeremy Hylton committed
31 32 33 34 35 36
		return NULL;
	}
	memset(seq, 0, n);
	seq->size = size;
	return seq;
}