HomeSort by relevance Sort by last modified time
    Searched refs:kValue (Results 1 - 24 of 24) sorted by null

  /external/clang/test/SemaCXX/
ms-inline-asm.cpp 10 enum { kValue = 42 };
39 __asm mov eax, A::B::kValue
43 __asm mov eax, asdf::a_global.a3.kValue
  /external/webrtc/webrtc/modules/audio_coding/neteq/
buffer_level_filter_unittest.cc 59 const int kValue = 100;
63 filter.Update(kValue, 0 /* time_stretched_samples */,
67 // (1 - (252/256) ^ |kTimes|) * |kValue|.
75 filter.Update(kValue, 0 /* time_stretched_samples */,
79 // (1 - (253/256) ^ |kTimes|) * |kValue|.
87 filter.Update(kValue, 0 /* time_stretched_samples */,
91 // (1 - (254/256) ^ |kTimes|) * |kValue|.
103 const int kValue = 100;
110 filter.Update(kValue, kTimeStretchedSamples, 0 /* packet_len_samples */);
113 // (1 - (251/256) ^ |kTimes|) * |kValue|
    [all...]
  /system/connectivity/shill/
key_value_store_unittest.cc 38 const string kValue("baz");
40 store_.Set(kKey, brillo::Any(kValue));
42 EXPECT_EQ(kValue, store_.Get(kKey).Get<string>());
50 const bool kValue = false;
53 store_.SetBool(kKey, kValue);
58 EXPECT_EQ(static_cast<int>(kValue),
60 EXPECT_EQ(static_cast<int>(kValue),
66 const vector<vector<uint8_t>> kValue{ {1, 2, 3 } };
68 store_.SetByteArrays(kKey, kValue);
70 EXPECT_EQ(kValue, store_.GetByteArrays(kKey))
    [all...]
key_file_store_unittest.cc 162 static const char kValue[] = "true";
170 kGroupA, kKeyA, kValue,
171 kGroupB, kKeyA, kValue, kKeyB, kValue,
172 kGroupC, kKeyB, kValue));
328 static const char kValue[] = "bar";
331 kGroup, kKey, kValue));
335 EXPECT_EQ(kValue, value);
494 const uint64_t kValue = 0xFEDCBA9876543210LL;
496 ASSERT_TRUE(store_->SetUint64(kGroup, kKey, kValue));
    [all...]
property_accessor_unittest.cc 596 const string kValue = "entry_value";
603 wrapper.value_[kKey] = kValue;
605 EXPECT_EQ(kValue, accessor.Get(&error));
615 EXPECT_TRUE(accessor.Set(kValue, &error));
617 EXPECT_EQ(kValue, wrapper.value_[kKey]);
621 EXPECT_FALSE(accessor.Set(kValue, &error));
630 wrapper.value_[kKey] = kValue;
  /external/skia/src/gpu/
GrTRecorder.h 95 return &ptr[length_of<TItem>::kValue];
99 return &ptr[length_of<TItem>::kValue];
104 enum { kValue = (sizeof(TItem) + sizeof(TAlign) - 1) / sizeof(TAlign) };
119 sk_malloc_throw(sizeof(TAlign) * (length_of<MemBlock>::kValue + length)));
145 return reinterpret_cast<TAlign*>(this)[length_of<MemBlock>::kValue + i];
174 reinterpret_cast<TAlign*>(fLastItem) - length_of<Header>::kValue);
192 fLastItem = &(*fTailBlock)[fTailBlock->fBack - lastItemLength + length_of<Header>::kValue];
203 reinterpret_cast<TAlign*>(fLastItem) - length_of<Header>::kValue);
207 const int totalLength = length_of<Header>::kValue + length_of<TItem>::kValue + dataLength
    [all...]
  /external/v8/test/unittests/compiler/
js-type-feedback-unittest.cc 104 const int kValue = 111;
106 SetGlobalProperty(kName, kValue);
121 const int kValue = 111;
123 SetGlobalProperty(kName, kValue);
133 // Check LoadNamed(global) => HeapConstant[kValue]
135 EXPECT_THAT(r.replacement(), IsNumberConstant(kValue));
137 EXPECT_THAT(ret, IsReturn(IsNumberConstant(kValue), graph()->start(),
147 const double kValue = -11.25;
149 SetGlobalProperty(kName, kValue);
165 const double kValue = -11.25
    [all...]
instruction-selector-unittest.cc 159 const float kValue = 4.2f;
161 m.Return(m.Float32Constant(kValue));
166 EXPECT_FLOAT_EQ(kValue, s.ToFloat32(s[0]->OutputAt(0)));
  /external/llvm/unittests/Support/
MathExtrasTest.cpp 160 static const float kValue = 5632.34f;
161 EXPECT_FLOAT_EQ(kValue, BitsToFloat(FloatToBits(kValue)));
165 static const double kValue = 87987234.983498;
166 EXPECT_FLOAT_EQ(kValue, BitsToDouble(DoubleToBits(kValue)));
  /system/update_engine/common/
prefs_unittest.cc 99 const char kValue[] = "some test value\non 2 lines";
100 EXPECT_TRUE(prefs_.SetString(kKey, kValue));
103 EXPECT_EQ(kValue, value);
113 const char kValue[] = "test value";
116 EXPECT_TRUE(prefs_.SetString(kKey, kValue));
119 EXPECT_EQ(kValue, value);
utils_unittest.cc 188 const int kValue = 50;
190 uint32_t value = utils::FuzzInt(kValue, range);
191 EXPECT_GE(value, kValue - range / 2);
192 EXPECT_LE(value, kValue + range - range / 2);
  /external/v8/test/cctest/compiler/
test-run-load-store.cc 466 const int32_t kValue = -78227234;
473 Node* val = m.Int32Constant(kValue);
482 CHECK_EQ(kValue, m.Call(offset, kLength));
485 CHECK_EQ(kValue, buffer[j]);
497 CHECK_EQ(kValue, m.Call(offset, kLength));
507 CHECK_EQ(kValue, m.Call(offset, kLength));
606 const uint32_t kValue = 897234987;
616 Node* val = m.Int32Constant(kValue);
625 CHECK_EQ(kValue, m.Call(offset, length));
628 CHECK_EQ(kValue, real_buffer[j])
    [all...]
  /system/connectivity/shill/vpn/
vpn_driver_unittest.cc 402 const string kValue = "some-value";
404 EXPECT_TRUE(store.SetStringProperty(kPINProperty, kValue, &error));
405 EXPECT_EQ(kValue, GetArgs()->GetString(kPINProperty));
408 const vector<string> kValue{ "some-value" };
410 EXPECT_TRUE(store.SetStringsProperty(kEapCaCertPemProperty, kValue,
412 EXPECT_EQ(kValue, GetArgs()->GetStrings(kEapCaCertPemProperty));
openvpn_driver_unittest.cc 144 static const char kValue[];
279 const char OpenVPNDriverTest::kValue[] = "some-property-value";
    [all...]
l2tp_ipsec_driver_unittest.cc 447 static const char kValue[] = "some-property-value";
462 SetArg(kProperty, kValue);
467 EXPECT_EQ(base::StringPrintf("%s=%s", kOption, kValue), options[0]);
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
nada_unittest.cc 42 const int kValue = 500;
46 raw_signal_[i] = kValue + kNoise * (i % 10 == 9 ? 1 : 0);
52 EXPECT_EQ(median_filtered_[i], kValue);
  /external/google-breakpad/src/testing/include/gmock/internal/
gmock-internal-utils.h 463 // Mapping from booleans to types. Similar to boost::bool_<kValue> and
464 // std::integral_constant<bool, kValue>.
465 template <bool kValue>
  /external/gmock/include/gmock/internal/
gmock-internal-utils.h 490 // Mapping from booleans to types. Similar to boost::bool_<kValue> and
491 // std::integral_constant<bool, kValue>.
492 template <bool kValue>
  /external/icu/icu4c/source/i18n/
plurrule_impl.h 169 kValue,
  /external/v8/src/js/
typedarray.js 701 var kValue = this[k];
702 array[n] = kValue;
  /external/v8/src/interpreter/
bytecode-generator.cc 453 bool IsValue() const { return kind_ == Expression::kValue; }
501 : ExpressionResultScope(generator, Expression::kValue) {}
517 : ExpressionResultScope(generator, Expression::kValue) {}
    [all...]
  /external/v8/src/crankshaft/
hydrogen.h 769 bool IsValue() const { return kind_ == Expression::kValue; }
839 : AstContext(owner, Expression::kValue), flag_(flag) {
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc 31 bool IsValue() const { return kind_ == Expression::kValue; }
87 : AstContext(owner, Expression::kValue) {}
    [all...]
  /external/v8/src/ast/
ast.h 301 kValue,
    [all...]

Completed in 613 milliseconds