HomeSort by: relevance | last modified time | path
    Searched refs:gshared (Results 1 - 14 of 14) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
astenums.d 88 gshared = 0x4_0000_0000, /// accessible from multiple threads, but not typed as `shared`
126 STC.immutable_ | STC.shared_ | STC.wild | STC.nothrow_ | STC.nogc | STC.pure_ | STC.ref_ | STC.return_ | STC.tls | STC.gshared |
133 STC.TYPECTOR | STC.final_ | STC.tls | STC.gshared | STC.ref_ | STC.return_ | STC.property |
161 STC.gshared | STC.property | STC.live |
canthrow.d 249 else if (vd.isStatic() || vd.storage_class & (STC.extern_ | STC.gshared))
tokens.h 239 gshared, member in class:TOK
tokens.d 230 gshared,
548 TOK.gshared,
754 TOK.gshared: "__gshared",
attrib.d 249 if (stc & (STC.auto_ | STC.scope_ | STC.static_ | STC.manifest | STC.gshared))
250 scstc &= ~(STC.auto_ | STC.scope_ | STC.static_ | STC.manifest | STC.gshared);
253 if (stc & (STC.gshared | STC.shared_))
254 scstc &= ~(STC.gshared | STC.shared_);
importc.d 185 if (!(dsym.storage_class & (STC.static_ | STC.gshared)))
cparse.d 4538 stc = AST.STC.extern_ | AST.STC.gshared;
4540 stc = AST.STC.gshared | AST.STC.static_;
4542 stc = AST.STC.gshared;
4547 stc = AST.STC.extern_ | AST.STC.gshared;
4549 stc = AST.STC.gshared;
4554 stc = AST.STC.extern_ | AST.STC.gshared;
4556 stc = AST.STC.gshared;
4663 auto sfn = new AST.VarDeclaration(loc, tfn, Id.__func__, ifn, STC.gshared | STC.immutable_);
declaration.d 1250 if (!(storage_class & (STC.static_ | STC.extern_ | STC.manifest | STC.templateparameter | STC.gshared | STC.ctfe)))
1318 else if (storage_class & (STC.static_ | STC.extern_ | STC.gshared) ||
1337 bool i = isDataseg() && !(storage_class & (STC.immutable_ | STC.const_ | STC.shared_ | STC.gshared));
1941 storage_class = STC.static_ | STC.gshared;
dsymbolsem.d 473 if (dsym.storage_class & STC.gshared && !dsym.isMember())
712 StorageClass stc = dsym.storage_class & (STC.static_ | STC.extern_ | STC.manifest | STC.gshared);
729 if (dsym.storage_class & (STC.static_ | STC.extern_ | STC.manifest | STC.templateparameter | STC.gshared | STC.ctfe))
790 if (dsym.storage_class & (STC.static_ | STC.extern_ | STC.gshared | STC.manifest | STC.field) || dsym.isDataseg())
837 if (dsym.storage_class & (STC.field | STC.out_ | STC.ref_ | STC.static_ | STC.manifest | STC.gshared) || !fd)
867 !(dsym.storage_class & (STC.static_ | STC.extern_ | STC.gshared | STC.manifest | STC.field | STC.parameter)) &&
893 !(dsym.storage_class & (STC.static_ | STC.gshared | STC.extern_)) &&
973 if (fd && !(dsym.storage_class & (STC.manifest | STC.static_ | STC.gshared | STC.extern_)) && !dsym._init.isVoidInitializer())
1158 if (sc.func && dsym.storage_class & (STC.static_ | STC.gshared))
1455 sc.stc &= ~(STC.auto_ | STC.scope_ | STC.static_ | STC.gshared);
    [all...]
parse.d 665 case TOK.gshared:
666 stc = STC.gshared;
1239 checkConflictSTCGroup(STC.gshared | STC.shared_);
4222 case TOK.gshared:
4223 stc = STC.gshared;
5784 case TOK.gshared:
7740 case TOK.gshared:
cppmangle.d 996 if (!(d.storage_class & (STC.extern_ | STC.field | STC.gshared)))
hdrgen.d 2925 SCstring(STC.gshared, Token.toString(TOK.gshared)),
dtoh.d 970 if (vd.storage_class & (AST.STC.static_ | AST.STC.extern_ | AST.STC.gshared) ||
expression.d 1373 if (v.storage_class & STC.gshared)

Completed in 102 milliseconds