Searched refs:Bit (Results 1 - 13 of 13) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMUnwindOpAsm.cpp35 for (uint32_t Bit = (1u << 5); Bit < (1u << 12); Bit <<= 1) {
36 if ((RegSave & Bit) == 0u)
39 Mask |= Bit;
75 uint32_t Bit = 1u << (i - 1); local
76 if ((VFPRegSave & Bit) == 0u) {
84 Bit >>= 1;
86 while (i > 16 && (VFPRegSave & Bit)) {
89 Bit >>
99 uint32_t Bit = 1u << (i - 1); local
[all...]
/freebsd-10.0-release/sys/contrib/dev/acpica/components/utilities/
H A Dutownerid.c192 UINT32 Bit; local
225 Bit = 1 << ACPI_MOD_32 (OwnerId);
229 if (AcpiGbl_OwnerIdMask[Index] & Bit)
231 AcpiGbl_OwnerIdMask[Index] ^= Bit;
/freebsd-10.0-release/contrib/llvm/lib/TableGen/
H A DTGLexer.h46 Bit, Bits, Class, Code, Dag, Def, Foreach, Defm, Field, In, Int, Let, List, enumerator in enum:llvm::tgtok::TokKind
H A DRecord.cpp219 if (BitInit *Bit = dyn_cast<BitInit>(BI->getBit(i))) {
220 Result |= Bit->getValue() << i;
495 if (Init *Bit = getBit(e-i-1))
496 Result += Bit->getAsString();
531 Init *Bit = CachedInit->getBit(CurBit->getBitNum()); local
532 NewBits[i] = fixBitInit(RV, CurBit, Bit);
549 Init *Bit = CurBitVar->getBit(CurBit->getBitNum()); local
550 NewBits[i] = fixBitInit(RV, CurBit, Bit);
721 Init *OpInit::getBit(unsigned Bit) const {
724 return VarBitInit::get(const_cast<OpInit*>(this), Bit);
[all...]
H A DTGParser.cpp124 unsigned Bit = BitList[i]; local
125 if (NewBits[Bit])
126 return Error(Loc, "Cannot set bit #" + utostr(Bit) + " of value '" +
128 NewBits[Bit] = BInit->getBit(i);
682 case tgtok::Bit: Lex.Lex(); return BitRecTy::get();
1254 Init *Bit = Vals[i]->convertInitializerTo(BitRecTy::get()); local
1255 if (Bit == 0) {
1260 NewBits[Vals.size()-i-1] = Bit;
/freebsd-10.0-release/contrib/llvm/include/llvm/TableGen/
H A DRecord.h538 virtual Init *getBit(unsigned Bit) const = 0;
609 virtual Init *getBit(unsigned Bit) const {
640 virtual Init *getBit(unsigned Bit) const {
641 assert(Bit < 1 && "Bit index out of range!");
690 virtual Init *getBit(unsigned Bit) const {
691 assert(Bit < Bits.size() && "Bit index out of range!");
692 return Bits[Bit];
732 virtual Init *getBit(unsigned Bit) cons
1094 unsigned Bit; member in class:llvm::VarBitInit
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp789 unsigned Bit = 0; local
795 REX |= 1 << Bit; // set REX.B (Bit=0) and REX.X (Bit=1)
796 Bit++;
811 unsigned Bit = 0; local
816 REX |= 1 << Bit; // REX.B (Bit=0) and REX.X (Bit=1)
817 Bit
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/R600/
H A DR600Packetizer.cpp204 void setIsLastBit(MachineInstr *MI, unsigned Bit) const {
206 MI->getOperand(LastOp).setImm(Bit);
/freebsd-10.0-release/contrib/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp351 if (BitInit *Bit = dyn_cast<BitInit>(TSF->getBit(i)))
352 Value |= uint64_t(Bit->getValue()) << i;
H A DCodeGenRegisters.cpp1197 unsigned Bit = 0; local
1201 Idx->LaneMask = 1u << Bit;
1209 if (Bit < 31) ++Bit;
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DCommandLine.h1454 static unsigned Bit(const T &V) { function in class:llvm::cl::bits_storage
1475 *Location |= Bit(V);
1482 return (*Location & Bit(V)) != 0;
1495 static unsigned Bit(const T &V) {
1505 Bits |= Bit(V);
1512 return (Bits & Bit(V)) != 0;
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/
H A DX86CodeEmitter.cpp212 unsigned Bit = 0; local
218 REX |= 1 << Bit;
219 Bit++;
233 unsigned Bit = 0; local
238 REX |= 1 << Bit;
239 Bit++;
/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCAsmStreamer.cpp1276 unsigned Bit = (Code[i] >> j) & 1;
1285 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1288 OS << Bit;

Completed in 217 milliseconds