HomeSort by relevance Sort by last modified time
    Searched refs:value_ (Results 126 - 150 of 351) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
any.h 82 ValueType* value_; member in class:google::protobuf::internal::AnyMetadata
  /external/v8/test/unittests/compiler/
instruction-sequence-unittest.h 24 VReg() : value_(kNoValue) {}
25 VReg(PhiInstruction* phi) : value_(phi->virtual_register()) {} // NOLINT
26 explicit VReg(int value) : value_(value) {}
27 int value_; member in struct:v8::internal::compiler::InstructionSequenceTest::VReg
48 TestOperand() : type_(kInvalid), vreg_(), value_(kNoValue) {}
50 : type_(type), vreg_(), value_(imm) {}
52 : type_(type), vreg_(vreg), value_(value) {}
56 int value_; member in struct:v8::internal::compiler::InstructionSequenceTest::TestOperand
move-optimizer-unittest.cc 65 CHECK_EQ(kNoValue, op.vreg_.value_);
66 CHECK_NE(kNoValue, op.value_);
69 return ConstantOperand(op.value_);
72 MachineRepresentation::kWord32, op.value_);
74 CHECK(0 <= op.value_ && op.value_ < num_general_registers());
76 MachineRepresentation::kWord32, op.value_);
78 CHECK(0 <= op.value_ && op.value_ < num_general_registers());
80 MachineRepresentation::kWord32, op.value_);
    [all...]
  /external/webp/src/utils/
huffman_encode.c 130 assert(t1->value_ != t2->value_);
131 return (t1->value_ < t2->value_) ? -1 : 1;
142 bit_depths[tree->value_] = level;
202 tree[idx].value_ = j;
231 tree[k].value_ = -1;
240 bit_depths[tree[0].value_] = 1;
bit_writer.c 57 const int32_t bits = bw->value_ >> s;
59 bw->value_ -= bits << s;
111 bw->value_ += split + 1;
119 bw->value_ <<= shift;
129 bw->value_ += split + 1;
136 bw->value_ <<= 1;
164 bw->value_ = 0;
  /external/libchrome/base/
stl_util_unittest.cc 17 explicit ComparableValue(int value) : value_(value) {}
20 return value_ == rhs.value_;
24 return value_ < rhs.value_;
28 int value_; member in class:__anon14346::ComparableValue
  /external/webrtc/webrtc/system_wrappers/source/
stl_util_unittest.cc 24 explicit ComparableValue(int value) : value_(value) {}
27 return value_ == rhs.value_;
31 return value_ < rhs.value_;
35 int value_; member in class:__anon26854::ComparableValue
  /external/v8/src/compiler/
register-allocator-verifier.cc 80 op_constraints[count].value_ = op_constraints[0].value_;
143 constraint->value_ = kMinInt;
147 constraint->value_ = ConstantOperand::cast(op)->virtual_register();
148 constraint->virtual_register_ = constraint->value_;
156 constraint->value_ = value;
164 constraint->value_ = unallocated->fixed_slot_index();
182 constraint->value_ = unallocated->fixed_register_index();
186 constraint->value_ = unallocated->fixed_register_index();
212 constraint->value_);
    [all...]
node-matchers.h 52 : NodeMatcher(node), value_(), has_value_(opcode() == kOpcode) {
54 value_ = OpParameter<T>(node);
61 return value_;
65 T value_; member in struct:v8::internal::compiler::ValueMatcher
74 value_(),
77 value_ = static_cast<uint32_t>(OpParameter<int32_t>(node));
84 : NodeMatcher(node), value_(), has_value_(false) {
86 value_ = OpParameter<int32_t>(node);
89 value_ = OpParameter<int64_t>(node);
98 : NodeMatcher(node), value_(), has_value_(false)
    [all...]
  /external/v8/src/crankshaft/
lithium-allocator.h 48 return value_;
55 return value_ / kStep;
61 return (value_ & (kStep - 1)) == 0;
68 return LifetimePosition(value_ & ~(kStep - 1));
88 DCHECK(value_ > 1);
94 LifetimePosition() : value_(-1) {}
98 bool IsValid() const { return value_ != -1; }
114 explicit LifetimePosition(int value) : value_(value) { }
116 int value_; member in class:v8::internal::LifetimePosition
  /art/compiler/optimizing/
intrinsics.h 132 : value_(invoke->GetIntrinsicOptimizations()) {}
134 : value_(invoke.GetIntrinsicOptimizations()) {}
143 return (*value_ & (1 << bit)) != 0u;
148 *(const_cast<uint32_t* const>(value_)) |= (1 << bit);
152 const uint32_t* const value_; member in class:art::IntrinsicOptimizations
  /external/icu/icu4c/source/common/
bytestrieiterator.cpp 28 str_(NULL), maxLength_(maxStringLength), value_(0), stack_(NULL) {
50 str_(NULL), maxLength_(maxStringLength), value_(0), stack_(NULL) {
136 value_=readValue(pos, node>>1);
174 value_=-1; // no real value for str
203 value_=value;
ucharstrieiterator.cpp 28 maxLength_(maxStringLength), value_(0), stack_(NULL) {
50 maxLength_(maxStringLength), value_(0), stack_(NULL) {
141 value_=readValue(pos, node&0x7fff);
143 value_=readNodeValue(pos, node);
206 value_=value;
  /external/opencv3/3rdparty/libwebp/utils/
bit_reader.c 37 br->value_ = 0;
81 br->value_ |= (bit_t)(*br->buf_++) << ((BITS) - 8 - br->bits_);
83 br->value_ = (bit_t)(*br->buf_++) | (br->value_ << 8);
90 br->value_ <<= 8;
  /external/webrtc/webrtc/libjingle/xmllite/
xmlelement.h 95 const std::string& Value() const { return value_; }
103 value_(value) {
108 value_(att.value_) {
113 std::string value_; member in class:buzz::XmlAttr
  /external/libchrome/base/synchronization/
lock_unittest.cc 153 MutexLockTestThread(Lock* lock, int* value) : lock_(lock), value_(value) {}
166 void ThreadMain() override { DoStuff(lock_, value_); }
170 int* value_; member in class:base::MutexLockTestThread
  /external/sfntly/cpp/src/test/
lock_test.cc 165 MutexLockTestThread(Lock* lock, int* value) : lock_(lock), value_(value) {}
179 DoStuff(lock_, value_);
184 int* value_; member in class:sfntly::MutexLockTestThread
  /external/v8/include/
v8-util.h 250 PersistentValueReference() : value_(kPersistentContainerNotFound) { }
252 : value_(other.value_) { }
255 return Local<V>::New(isolate, FromVal(value_));
258 return value_ == kPersistentContainerNotFound;
262 return SetReturnValueFromVal(&returnValue, value_);
265 value_ = kPersistentContainerNotFound;
268 value_ = other.value_;
277 : value_(value) {
283 PersistentContainerValue value_; member in class:v8::PersistentValueMapBase::PersistentValueReference
    [all...]
  /external/libchrome/sandbox/linux/bpf_dsl/
bpf_dsl.cc 106 ConstBoolExprImpl(bool value) : value_(value) {}
111 return value_ ? then_node : else_node;
117 bool value_; member in class:sandbox::bpf_dsl::__anon14497::ConstBoolExprImpl
128 : argno_(argno), width_(width), mask_(mask), value_(value) {}
133 return pc->MaskedEqual(argno_, width_, mask_, value_, then_node, else_node);
142 uint64_t value_; member in class:sandbox::bpf_dsl::__anon14497::MaskedEqualBoolExprImpl
  /external/deqp/framework/opengl/
gluCallLogWrapper.cpp 83 FboParamPtrFmt (deUint32 param_, const int* value_) : param(param_), value(value_) {}
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest-typed-test.h 51 T value_;
70 TypeParam n = this->value_;
  /external/gtest/include/gtest/
gtest-typed-test.h 51 T value_;
70 TypeParam n = this->value_;
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-typed-test.h 51 T value_;
70 TypeParam n = this->value_;
  /external/mesa3d/src/gtest/include/gtest/
gtest-typed-test.h 51 T value_;
70 TypeParam n = this->value_;
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
gtest-typed-test.h 51 T value_;
70 TypeParam n = this->value_;

Completed in 572 milliseconds

1 2 3 4 56 7 8 91011>>