Searched defs:predef (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/tasm/
H A Dtasm.c812 char *predef; local
818 predef = yasm_xmalloc(strlen("__YASM_OBJFMT__=")
820 strcpy(predef, "__YASM_OBJFMT__=");
821 strcat(predef, objfmt_keyword);
822 yasm_preproc_define_builtin(cur_preproc, predef);
823 yasm_xfree(predef);
/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
H A Dyasm.c1194 char *predef; local
1197 predef = yasm_xmalloc(strlen("__YASM_OBJFMT__=")
1199 strcpy(predef, "__YASM_OBJFMT__=");
1200 strcat(predef, objfmt_keyword);
1201 yasm_preproc_define_builtin(cur_preproc, predef);
1202 yasm_xfree(predef);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
H A Dnasm-pp.c20 * read_line gets raw text from stdmacpos, or predef, or current input file
359 static Line *predef = NULL; variable
4868 * Nasty hack: here we push the contents of `predef' on
4913 poke_predef(predef);
5191 free_llist(predef);
5194 predef = NULL;
5213 l->next = predef;
5216 predef = l;
5236 l->next = predef;
5239 predef
[all...]

Completed in 617 milliseconds