/external/v8/src/ |
safepoint-table.h | 42 SafepointEntry() : info_(0), bits_(NULL) {} 44 SafepointEntry(unsigned info, uint8_t* bits) : info_(info), bits_(bits) { 48 bool is_valid() const { return bits_ != NULL; } 51 return info_ == other.info_ && bits_ == other.bits_; 56 bits_ = NULL; 81 return bits_; 110 uint8_t* bits_; member in class:v8::internal::BASE_EMBEDDED
|
lithium-allocator.h | 397 GrowableBitVector() : bits_(NULL) { } 401 return bits_->Contains(value); 406 bits_->Add(value); 413 return bits_ != NULL && bits_->length() > value; 418 int new_length = bits_ == NULL ? kInitialLength : bits_->length(); 421 if (bits_ != NULL) new_bits->CopyFrom(*bits_); 422 bits_ = new_bits 425 BitVector* bits_; member in class:v8::internal::BASE_EMBEDDED [all...] |
jsregexp.h | 237 SetRelation() : bits_(0) {} 240 void SetElementsInFirstSet() { bits_ |= kInFirst; } 241 void SetElementsInSecondSet() { bits_ |= kInSecond; } 242 void SetElementsInBothSets() { bits_ |= kInBoth; } 247 bool Disjoint() { return (bits_ & kInBoth) == 0; } 249 bool Equals() { return (bits_ & (kInFirst | kInSecond)) == 0; } 251 bool Contains() { return (bits_ & kInSecond) == 0; } 253 bool ContainedIn() { return (bits_ & kInFirst) == 0; } 255 return (bits_ == (kInFirst | kInSecond | kInBoth)); 257 int value() { return bits_; } 259 int bits_; member in class:v8::internal::BASE_EMBEDDED [all...] |
safepoint-table.cc | 46 if (bits_[i] != SafepointTable::kNoRegisters) return true; 57 return (bits_[byte_index] & (1 << bit_index)) != 0;
|
/external/valgrind/tsan/ |
ts_simple_cache.h | 51 bits_[idx / 32] |= 1U << (idx % 32); 53 bits_[idx / 32] &= ~(1U << (idx % 32)); 59 *val = (bits_[idx / 32] >> (idx % 32)) & 1; 66 uint32_t bits_[(kSize + 31) / 32]; member in class:PtrToBoolCache
|
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
stun.cc | 347 : StunAttribute(type, SIZE), bits_(0) { 352 return static_cast<bool>((bits_ >> index) & 0x1); 357 bits_ &= ~(1 << index); 358 bits_ |= value ? (1 << index) : 0; 362 if (!buf->ReadUInt32(&bits_)) 368 buf->WriteUInt32(bits_);
|
stun.h | 234 uint32 value() const { return bits_; } 236 void SetValue(uint32 bits) { bits_ = bits; } 245 uint32 bits_; member in class:cricket::StunUInt32Attribute
|
/external/chromium/sdch/open-vcdiff/src/gtest/internal/ |
gtest-internal.h | 377 fp.bits_ = bits; 389 const Bits &bits() const { return bits_; } 392 Bits exponent_bits() const { return kExponentBitMask & bits_; } 395 Bits fraction_bits() const { return kFractionBitMask & bits_; } 398 Bits sign_bit() const { return kSignBitMask & bits_; } 418 return DistanceBetweenSignAndMagnitudeNumbers(bits_, rhs.bits_) <= kMaxUlps; 458 Bits bits_; // The bits that represent the number. member in union:testing::internal::FloatingPoint::__anon3786
|
/external/gtest/include/gtest/internal/ |
gtest-internal.h | 395 fp.bits_ = bits; 407 const Bits &bits() const { return bits_; } 410 Bits exponent_bits() const { return kExponentBitMask & bits_; } 413 Bits fraction_bits() const { return kFractionBitMask & bits_; } 416 Bits sign_bit() const { return kSignBitMask & bits_; } 436 return DistanceBetweenSignAndMagnitudeNumbers(bits_, rhs.bits_) <= kMaxUlps; 476 Bits bits_; // The bits that represent the number. member in union:testing::internal::FloatingPoint::__anon5745 [all...] |
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
gtest-internal.h | 410 fp.u_.bits_ = bits; 422 const Bits &bits() const { return u_.bits_; } 425 Bits exponent_bits() const { return kExponentBitMask & u_.bits_; } 428 Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } 431 Bits sign_bit() const { return kSignBitMask & u_.bits_; } 451 return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_) 459 Bits bits_; // The bits that represent the number. member in union:testing::internal::FloatingPoint::FloatingPointUnion [all...] |
/external/protobuf/gtest/include/gtest/internal/ |
gtest-internal.h | 390 fp.u_.bits_ = bits; 402 const Bits &bits() const { return u_.bits_; } 405 Bits exponent_bits() const { return kExponentBitMask & u_.bits_; } 408 Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } 411 Bits sign_bit() const { return kSignBitMask & u_.bits_; } 431 return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_) 439 Bits bits_; // The bits that represent the number. member in union:testing::internal::FloatingPoint::FloatingPointUnion [all...] |
/external/antlr/src/org/antlr/runtime/ |
BitSet.java | 56 public BitSet(long[] bits_) { 57 bits = bits_;
|
/external/chromium/testing/gtest/include/gtest/internal/ |
gtest-internal.h | 368 fp.u_.bits_ = bits; 380 const Bits &bits() const { return u_.bits_; } 383 Bits exponent_bits() const { return kExponentBitMask & u_.bits_; } 386 Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } 389 Bits sign_bit() const { return kSignBitMask & u_.bits_; } 409 return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_) 417 Bits bits_; // The bits that represent the number. member in union:testing::internal::FloatingPoint::FloatingPointUnion [all...] |
/external/flac/libFLAC/ |
stream_encoder.c | 3971 unsigned bits_ = FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN; local [all...] |