Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_testbuffer.c88 struct ndbuf;
89 typedef struct ndbuf { struct
90 struct ndbuf *next; argument
91 struct ndbuf *prev; argument
111 ndbuf_t *ndbuf; in ndbuf_new() argument
126 ndbuf = PyMem_Malloc(sizeof *ndbuf); in ndbuf_new()
127 if (ndbuf == NULL) { in ndbuf_new()
132 ndbuf->next = NULL; in ndbuf_new()
133 ndbuf->prev = NULL; in ndbuf_new()
134 ndbuf->len = len; in ndbuf_new()
[all …]