potion_asm_write 102 core/asm.h #define ASMS(cstr) *asmp = potion_asm_write(P, *asmp, cstr, sizeof(cstr)-1) potion_asm_write 108 core/asm.h PNAsm *potion_asm_write(Potion *, PNAsm *, char *, size_t); potion_asm_write 270 core/syntax.y c1 = < (!q1 utf8)+ > { P->pbuf = potion_asm_write(P, P->pbuf, yytext, yyleng) } potion_asm_write 272 core/syntax.y < (q1 q1 { P->pbuf = potion_asm_write(P, P->pbuf, "'", 1) } | c1)* > potion_asm_write 276 core/syntax.y escn = esc 'n' { P->pbuf = potion_asm_write(P, P->pbuf, "\n", 1) } potion_asm_write 277 core/syntax.y escb = esc 'b' { P->pbuf = potion_asm_write(P, P->pbuf, "\b", 1) } potion_asm_write 278 core/syntax.y escf = esc 'f' { P->pbuf = potion_asm_write(P, P->pbuf, "\f", 1) } potion_asm_write 279 core/syntax.y escr = esc 'r' { P->pbuf = potion_asm_write(P, P->pbuf, "\r", 1) } potion_asm_write 280 core/syntax.y esct = esc 't' { P->pbuf = potion_asm_write(P, P->pbuf, "\t", 1) } potion_asm_write 299 core/syntax.y P->pbuf = potion_asm_write(P, P->pbuf, utfc, nbuf); potion_asm_write 326 core/syntax.y P->pbuf = potion_asm_write(P, P->pbuf, utfc, nbuf); potion_asm_write 328 core/syntax.y escc = esc < utf8 > { P->pbuf = potion_asm_write(P, P->pbuf, yytext, yyleng) } potion_asm_write 331 core/syntax.y e2 = '\\' ["] { P->pbuf = potion_asm_write(P, P->pbuf, "\"", 1) } potion_asm_write 332 core/syntax.y c2 = < (!q2 !esc utf8)+ > { P->pbuf = potion_asm_write(P, P->pbuf, yytext, yyleng) }