Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddmangle.c150 void visitWithMask(Type *t, unsigned char modMask) in visitWithMask() argument
152 if (modMask != t->mod) in visitWithMask()
207 void mangleFuncType(TypeFunction *t, TypeFunction *ta, unsigned char modMask, Type *tret) in mangleFuncType() argument
217 if (modMask != t->mod) in mangleFuncType()
H A Dhdrgen.c738 void visitWithMask(Type *t, unsigned char modMask) in visitWithMask() argument
741 if (modMask == t->mod || in visitWithMask()
749 unsigned char m = t->mod & ~(t->mod & modMask); in visitWithMask()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddmangle.d270 void visitWithMask(Type t, ubyte modMask) in visitWithMask() argument
272 if (modMask != t.mod) in visitWithMask()
326 void mangleFuncType(TypeFunction t, TypeFunction ta, ubyte modMask, Type tret) in mangleFuncType() argument
336 if (modMask != t.mod) in mangleFuncType()
H A Dhdrgen.d3351 ubyte modMask = 0)
3358 visitWithMask(t, modMask, buf, hgs);
3366 private void visitWithMask(Type t, ubyte modMask, OutBuffer* buf, HdrGenState* hgs) in visitWithMask() argument
3369 if (modMask == t.mod || t.ty == Tfunction || t.ty == Ttuple) in visitWithMask()
3375 ubyte m = t.mod & ~(t.mod & modMask); in visitWithMask()