Searched refs:ndbuf (Results 1 – 1 of 1) sorted by relevance
88 struct ndbuf;89 typedef struct ndbuf { struct90 struct ndbuf *next; argument91 struct ndbuf *prev; argument111 ndbuf_t *ndbuf; in ndbuf_new() argument126 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 …]