Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dchkformat.d147 const c_longsize = target.c.longsize; in checkPrintfFormat() local
174 if (!(t.isintegral() && t.size() == c_longsize)) in checkPrintfFormat()
177 errorMsg(null, e, (c_longsize == 4 ? "uint" : "ulong"), t); in checkPrintfFormat()
179 errorMsg(null, e, (c_longsize == 4 ? "int" : "long"), t); in checkPrintfFormat()
233 if (!(t.ty == Tpointer && tnext.isintegral() && tnext.size() == c_longsize)) in checkPrintfFormat()
234 errorMsg(null, e, (c_longsize == 4 ? "int*" : "long*"), t); in checkPrintfFormat()
386 const c_longsize = target.c.longsize; in checkScanfFormat() local
411 …if (!(t.ty == Tpointer && tnext.isintegral() && !tnext.isunsigned() && tnext.size() == c_longsize)) in checkScanfFormat()
412 errorMsg(null, e, (c_longsize == 4 ? "int*" : "long*"), t); in checkScanfFormat()
455 … if (!(t.ty == Tpointer && tnext.isintegral() && tnext.isunsigned() && tnext.size() == c_longsize)) in checkScanfFormat()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A Dd-target.cc47 int Target::c_longsize; member in Target
173 Target::c_longsize = int_size_in_bytes (long_integer_type_node); in _init()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dtarget.h35 static int c_longsize; // size of a C 'long' or 'unsigned long' type member
H A Dcppmangle.c865 c = (Target::c_longsize == 8 ? 'l' : 'x'); in visit()
868 c = (Target::c_longsize == 8 ? 'm' : 'y'); in visit()