Lines Matching defs:value

293   return std::is_scalar<T>::value || std::is_void<T>::value;
310 static const bool value = AllScalar<Result, Args...>();
315 static const bool value = AllScalar<Result, Args...>();
322 STATIC_ASSERT(IsValidExternalReferenceType<decltype(&Target)>::value); \
328 STATIC_ASSERT(IsValidExternalReferenceType<decltype(&Target)>::value); \
865 void* libc_memset(void* dest, int value, size_t n) {
866 DCHECK_EQ(static_cast<byte>(value), value);
867 return memset(dest, value, n);
1150 int64_t value =
1152 std::atomic_store(reinterpret_cast<std::atomic<int64_t>*>(address), value);
1161 int64_t value =
1164 value);
1173 int64_t value =
1176 value);
1185 int64_t value =
1188 value);
1196 int64_t value =
1199 value);
1208 int64_t value =
1211 value);
1220 int64_t value =
1223 value);
1250 // address, with the same value. This is done in order for TSAN to see these
1252 // Note that {value} is an int64_t irrespective of the store size. This is on
1255 void tsan_relaxed_store_8_bits(Address addr, int64_t value) {
1258 static_cast<base::Atomic8>(value));
1264 void tsan_relaxed_store_16_bits(Address addr, int64_t value) {
1267 static_cast<base::Atomic16>(value));
1273 void tsan_relaxed_store_32_bits(Address addr, int64_t value) {
1276 static_cast<base::Atomic32>(value));
1282 void tsan_relaxed_store_64_bits(Address addr, int64_t value) {
1285 static_cast<base::Atomic64>(value));
1292 void tsan_seq_cst_store_8_bits(Address addr, int64_t value) {
1295 static_cast<base::Atomic8>(value));
1301 void tsan_seq_cst_store_16_bits(Address addr, int64_t value) {
1304 static_cast<base::Atomic16>(value));
1310 void tsan_seq_cst_store_32_bits(Address addr, int64_t value) {
1313 static_cast<base::Atomic32>(value));
1319 void tsan_seq_cst_store_64_bits(Address addr, int64_t value) {
1322 static_cast<base::Atomic64>(value));
1329 base::Atomic32 tsan_relaxed_load_32_bits(Address addr, int64_t value) {
1337 base::Atomic64 tsan_relaxed_load_64_bits(Address addr, int64_t value) {