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

/external/chromium/third_party/libjingle/source/talk/site_scons/site_tools/
H A Dtalk_noops.py13 if not env.Bit('windows'):
/external/v8/src/arm/
H A Dconstants-arm.h205 BIC = 14 << 21, // Bit Clear.
319 // Bit encoding P U W.
331 // Bit encoding P U W .
364 // standard SoftwareInterrupCode. Bit 23 is reserved for the stop feature.
539 inline int Bit(int nr) const { function in class:v8::internal::Instruction
556 static inline int Bit(Instr instr, int nr) { function in class:v8::internal::Instruction
608 inline int NValue() const { return Bit(7); }
609 inline int MValue() const { return Bit(5); }
610 inline int DValue() const { return Bit(22); }
612 inline int PValue() const { return Bit(2
[all...]
H A Dconstants-arm.cc48 high16 |= (0xff * Bit(18)) << 6; // xxbbbbbb,bbxxxxxx.
49 high16 |= (Bit(18) ^ 1) << 14; // xBxxxxxx,xxxxxxxx.
50 high16 |= Bit(19) << 15; // axxxxxxx,xxxxxxxx.
H A Ddisasm-arm.cc261 shift_names[instr->Bit(6) * 2],
429 if (instr->Bit(21) == 0) {
456 if (instr->Bit(21) == 0) {
506 if ((instr->Bits(27, 25) == 0) && (instr->Bit(20) == 0) &&
507 (instr->Bits(7, 6) == 3) && (instr->Bit(4) == 1)) {
508 if (instr->Bit(5) == 1) {
618 if (instr->Bit(22) == 0) {
686 if (instr->Bit(24) == 0) {
688 if (instr->Bit(23) == 0) {
689 if (instr->Bit(2
[all...]
H A Dsimulator-arm.cc1419 if (instr->Bit(4) == 0) {
2010 if (instr->Bit(24) == 0) {
2018 if (instr->Bit(23) == 0) {
2019 if (instr->Bit(21) == 0) {
2052 if (instr->Bit(22) == 1) {
2081 if (instr->Bit(22) == 0) {
2169 if (((instr->Bits(7, 4) & 0xd) == 0xd) && (instr->Bit(20) == 0)) {
2560 if (instr->Bit(22) == 0x1) { // USAT.
2564 int32_t shift_type = instr->Bit(6);
2604 if (instr->Bit(2
[all...]
/external/chromium/third_party/libjingle/source/talk/site_scons/
H A Dtalk.py189 if env.Bit('windows'):
194 elif env.Bit('mac'):
196 elif env.Bit('linux'):
206 if env.Bit('windows'):
207 if env.Bit('debug'):
211 elif env.Bit('mac'):
213 elif env.Bit('linux'):
249 if env.Bit('windows'):
257 if env.Bit('mac'):
331 platforms[x] for x in iter(platforms) if env.Bit(
[all...]
/external/clang/test/Parser/
H A DMicrosoftExtensions.c21 void __forceinline InterlockedBitTestAndSet (long *Base, long Bit) argument
24 mov eax, Bit
/external/llvm/include/llvm/TableGen/
H A DRecord.h515 virtual Init *getBit(unsigned Bit) const = 0;
579 virtual Init *getBit(unsigned Bit) const {
607 virtual Init *getBit(unsigned Bit) const {
608 assert(Bit < 1 && "Bit index out of range!");
653 virtual Init *getBit(unsigned Bit) const {
654 assert(Bit < Bits.size() && "Bit index out of range!");
655 return Bits[Bit];
691 virtual Init *getBit(unsigned Bit) cons
1029 unsigned Bit; member in class:llvm::VarBitInit
[all...]
/external/llvm/lib/TableGen/
H A DTGLexer.h45 Bit, Bits, Class, Code, Dag, Def, Foreach, Defm, Field, In, Int, Let, List, enumerator in enum:llvm::tgtok::TokKind
H A DRecord.cpp205 if (BitInit *Bit = dynamic_cast<BitInit*>(BI->getBit(i))) {
206 Result |= Bit->getValue() << i;
472 if (Init *Bit = getBit(e-i-1))
473 Result += Bit->getAsString();
508 Init *Bit = CachedInit->getBit(CurBit->getBitNum()); local
509 NewBits[i] = fixBitInit(RV, CurBit, Bit);
526 Init *Bit = CurBitVar->getBit(CurBit->getBitNum()); local
527 NewBits[i] = fixBitInit(RV, CurBit, Bit);
697 Init *OpInit::getBit(unsigned Bit) const {
700 return VarBitInit::get(const_cast<OpInit*>(this), Bit);
[all...]
H A DTGParser.cpp125 unsigned Bit = BitList[i]; local
126 if (NewBits[Bit])
127 return Error(Loc, "Cannot set bit #" + utostr(Bit) + " of value '" +
129 NewBits[Bit] = BInit->getBit(i);
689 case tgtok::Bit: Lex.Lex(); return BitRecTy::get();
1256 Init *Bit = Vals[i]->convertInitializerTo(BitRecTy::get()); local
1257 if (Bit == 0) {
1262 NewBits[Vals.size()-i-1] = Bit;
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp770 unsigned Bit = 0; local
776 REX |= 1 << Bit; // set REX.B (Bit=0) and REX.X (Bit=1)
777 Bit++;
792 unsigned Bit = 0; local
797 REX |= 1 << Bit; // REX.B (Bit=0) and REX.X (Bit=1)
798 Bit
[all...]
/external/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp349 if (BitInit *Bit = dynamic_cast<BitInit*>(TSF->getBit(i)))
350 Value |= uint64_t(Bit->getValue()) << i;
/external/chromium/third_party/libjingle/source/talk/
H A Dmain.scons68 DeclareBit('platform_arch_64bit', 'Host Platform is 64 Bit')
175 if win_env.Bit('test_signing'):
449 if win_env.Bit('vsproj'):
/external/llvm/include/llvm/Support/
H A DCommandLine.h1428 static unsigned Bit(const T &V) { function in class:llvm::cl::bits_storage
1449 *Location |= Bit(V);
1456 return (*Location & Bit(V)) != 0;
1469 static unsigned Bit(const T &V) {
1479 Bits |= Bit(V);
1486 return (Bits & Bit(V)) != 0;
/external/llvm/lib/Target/X86/
H A DX86CodeEmitter.cpp204 unsigned Bit = 0; local
210 REX |= 1 << Bit;
211 Bit++;
225 unsigned Bit = 0; local
230 REX |= 1 << Bit;
231 Bit++;
/external/llvm/lib/MC/
H A DMCAsmStreamer.cpp1217 unsigned Bit = (Code[i] >> j) & 1;
1226 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1229 OS << Bit;
/external/v8/src/mips/
H A Dconstants-mips.h613 inline int Bit(int nr) const {
H A Dsimulator-mips.cc2245 if (instr->Bit(16)) { // Read Tf bit.
/external/zlib/src/as400/
H A Dzlib.inc378 D bits 10I 0 value Bit count
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas450 procedure GrowToInclude(const Bit: Integer);
1736 class function WordNumber(const Bit: Integer): Integer; static;
1747 procedure GrowToInclude(const Bit: Integer); virtual;
3542 procedure TBitSet.GrowToInclude(const Bit: Integer);
3546 NewSize := Max(Length(FBits) shl 1,NumWordsToHold(Bit));
3609 I, Bit: Integer;
3618 for Bit := BITS - 1 downto 0 do
3620 if ((W and (UInt64(1) shl Bit)) <> 0) then
3683 class function TBitSet.WordNumber(const Bit: Integer): Integer;
3685 Result := Bit sh
[all...]

Completed in 644 milliseconds