Lines Matching defs:node
37 * \defgroup AST Abstract syntax tree node definitions
56 void *node;
58 node = rzalloc_size(ctx, size);
59 assert(node != NULL);
61 return node;
72 * Print an AST node in something approximating the original GLSL code
77 * Convert the AST node to the high-level intermediate representation
83 * Retrieve the source location of an AST node
85 * This function is primarily used to get the source position of an AST node
104 * Set the source location of an AST node from a parser location
116 * Source location of the AST node.
345 void *node;
347 node = rzalloc_size(ctx, size);
348 assert(node != NULL);
350 return node;