/external/valgrind/main/none/tests/s390x/ |
mvst.c | 4 char bigbuf[512]= variable 42 printf("CC:%d\n",mvst_full(target, bigbuf));
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/listfmts/nasm/ |
nasm-listfmt.c | 204 /*@null@*/ /*@only@*/ unsigned char *bigbuf; local 214 bigbuf = yasm_bc_tobytes(bc, buf, &size, &gap, &info, 223 origp = bigbuf ? bigbuf : buf; 264 if (bigbuf) 265 yasm_xfree(bigbuf);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/ |
rdf-objfmt.c | 301 /*@null@*/ /*@only@*/ unsigned char *bigbuf; local 307 bigbuf = yasm_bc_tobytes(bc, info->buf, &size, &gap, info, 312 if (bigbuf) 313 yasm_xfree(bigbuf); 324 /* Output buf (or bigbuf if non-NULL) to file */ 326 bigbuf ? bigbuf : info->buf, (size_t)size); 331 /* If bigbuf was allocated, free it */ 332 if (bigbuf) 333 yasm_xfree(bigbuf); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/ |
xdf-objfmt.c | 239 /*@null@*/ /*@only@*/ unsigned char *bigbuf; local 245 bigbuf = yasm_bc_tobytes(bc, info->buf, &size, &gap, info, 250 if (bigbuf) 251 yasm_xfree(bigbuf); 271 /* Output buf (or bigbuf if non-NULL) to file */ 272 fwrite(bigbuf ? bigbuf : info->buf, (size_t)size, 1, info->f); 275 /* If bigbuf was allocated, free it */ 276 if (bigbuf) 277 yasm_xfree(bigbuf); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/ |
bin-objfmt.c | 978 \/*@null@*\/ \/*@only@*\/ unsigned char *bigbuf; local 1024 \/*@null@*\/ \/*@only@*\/ unsigned char *bigbuf; local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/ |
elf-objfmt.c | 588 /*@null@*/ /*@only@*/ unsigned char *bigbuf; local 595 bigbuf = yasm_bc_tobytes(bc, buf, &size, &gap, info, 600 if (bigbuf) 601 yasm_xfree(bigbuf); 624 /* Output buf (or bigbuf if non-NULL) to file */ 625 fwrite(bigbuf ? bigbuf : buf, (size_t)size, 1, info->f); 628 /* If bigbuf was allocated, free it */ 629 if (bigbuf) 630 yasm_xfree(bigbuf); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/ |
macho-objfmt.c | 582 /*@null@*/ /*@only@*/ unsigned char *bigbuf; local 588 bigbuf = yasm_bc_tobytes(bc, info->buf, &size, &gap, info, 593 if (bigbuf) 594 yasm_xfree(bigbuf); 613 /* Output buf (or bigbuf if non-NULL) to file */ 614 fwrite(bigbuf ? bigbuf : info->buf, (size_t) size, 1, info->f); 617 /* If bigbuf was allocated, free it */ 618 if (bigbuf) 619 yasm_xfree(bigbuf); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/ |
coff-objfmt.c | 719 /*@null@*/ /*@only@*/ unsigned char *bigbuf; local 725 bigbuf = yasm_bc_tobytes(bc, info->buf, &size, &gap, info, 730 if (bigbuf) 731 yasm_xfree(bigbuf); 751 /* Output buf (or bigbuf if non-NULL) to file */ 752 fwrite(bigbuf ? bigbuf : info->buf, (size_t)size, 1, info->f); 755 /* If bigbuf was allocated, free it */ 756 if (bigbuf) 757 yasm_xfree(bigbuf); [all...] |