Home
last modified time | relevance | path

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

/scripts/
Dasn1_compiler.c350 unsigned tix, lineno; in tokenise() local
360 tix = 0; in tokenise()
407 tokens[tix].line = lineno; in tokenise()
420 tokens[tix].size = q - p; in tokenise()
423 tokens[tix].content = malloc(tokens[tix].size + 1); in tokenise()
424 if (!tokens[tix].content) { in tokenise()
428 memcpy(tokens[tix].content, start, tokens[tix].size); in tokenise()
429 tokens[tix].content[tokens[tix].size] = 0; in tokenise()
434 if (islower(tokens[tix].content[0])) { in tokenise()
435 tokens[tix++].token_type = TOKEN_ELEMENT_NAME; in tokenise()
[all …]