Home | History | Annotate | Download | only in bin

Lines Matching refs:bigbuf

978     /*@null@*/ /*@only@*/ unsigned char *bigbuf;
984 bigbuf = yasm_bc_tobytes(bc, info->buf, &size, &gap, info,
989 if (bigbuf)
990 yasm_xfree(bigbuf);
1008 /* Output buf (or bigbuf if non-NULL) to file */
1009 fwrite(bigbuf ? bigbuf : info->buf, (size_t)size, 1, info->f);
1012 /* If bigbuf was allocated, free it */
1013 if (bigbuf)
1014 yasm_xfree(bigbuf);
1024 /*@null@*/ /*@only@*/ unsigned char *bigbuf;
1030 bigbuf = yasm_bc_tobytes(bc, info->buf, &size, &gap, info,
1033 /* If bigbuf was allocated, free it */
1034 if (bigbuf)
1035 yasm_xfree(bigbuf);