Home
last modified time | relevance | path

Searched refs:Flags1 (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dwinbase.d1424 BYTE Flags1;
1428 …byte Type(byte f) { Flags1 = cast(BYTE) ((Flags1 & 0xE0) | f); return cast(byte)(f & 0x1F);…
1429 …byte Dpl(byte f) { Flags1 = cast(BYTE) ((Flags1 & 0x9F) | (f<<5)); return cast(byte)(f & 3…
1430 bool Pres(bool f) { Flags1 = cast(BYTE) ((Flags1 & 0x7F) | (f<<7)); return f; }
1438 byte Type() { return cast(byte) (Flags1 & 0x1F); }
1439 byte Dpl() { return cast(byte) ((Flags1 & 0x60)>>5); }
1440 bool Pres() { return cast(bool) (Flags1 & 0x80); }
1451 BYTE Flags1;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h669 MIPS_AFL_FLAGS1 Flags1; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp636 unsigned Flags1 = getUndefRegState(Cond[1].isUndef()); in insertBranch() local
641 BuildMI(&MBB, DL, get(BccOpc)).addReg(Cond[1].getReg(), Flags1). in insertBranch()
644 BuildMI(&MBB, DL, get(BccOpc)).addReg(Cond[1].getReg(), Flags1). in insertBranch()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Delf2yaml.cpp1533 S->Flags1 = Flags->flags1; in dumpMipsABIFlags()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1423 IO.mapOptional("Flags1", Section.Flags1, ELFYAML::MIPS_AFL_FLAGS1(0)); in sectionMapping()
H A DELFEmitter.cpp1601 Flags.flags1 = Section.Flags1; in writeSectionContent()