Home
last modified time | relevance | path

Searched refs:v_d (Results 1 - 7 of 7) sorted by relevance

/third_party/node/src/
H A Dutil-inl.h586 double v_d = v.As<v8::Number>()->Value(); in IsSafeJsInt() local
587 if (std::isnan(v_d)) return false; in IsSafeJsInt()
588 if (std::isinf(v_d)) return false; in IsSafeJsInt()
589 if (std::trunc(v_d) != v_d) return false; // not int in IsSafeJsInt()
590 if (std::abs(v_d) <= static_cast<double>(kMaxSafeJsInteger)) return true; in IsSafeJsInt()
/third_party/libabigail/tests/data/test-abidiff-exit/
H A Dqualifier-typedef-array-v0.c21 D v_d; member
H A Dqualifier-typedef-array-v1.c21 volatile D v_d; // +volatile member
/third_party/ffmpeg/libpostproc/
H A Dpostprocess_altivec_template.c873 vector signed short v_d = vec_sub(v_tempBlurredAss##i, \ in tempNoiseReducer_altivec()
875 v_dp = vec_msums(v_d, v_d, v_dp); \ in tempNoiseReducer_altivec()
876 v_sysdp = vec_msums(v_d, vsint16_1, v_sysdp); \ in tempNoiseReducer_altivec()
/third_party/json/tests/src/
H A Dunit-bjdata.cpp2270 std::vector<uint8_t> v_d = {'d', 0xd0, 0x0f, 0x49, 0x40}; variable
2271 CHECK(json::from_bjdata(v_d) == 3.14159f);
2278 CHECK(json::to_bjdata(json::from_bjdata(v_d)) == json::to_bjdata(3.14159f));
2425 std::vector<uint8_t> v_d = {'[', '$', 'd', '#', '[', '$', 'i', '#', 'i', 2, 2, 3, 0x00, 0x00, 0x80, 0x3F, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x40, 0x40, 0x00, 0x00, 0x80, 0x40, 0x00, 0x00, 0xA0, 0x40, 0x00, 0x00, 0xC0, 0x40}; variable
2440 CHECK(json::from_bjdata(v_d) == json({{"_ArrayData_", {1.f, 2.f, 3.f, 4.f, 5.f, 6.f}}, {"_ArraySize_", {2, 3}}, {"_ArrayType_", "single"}}));
2454 CHECK(json::to_bjdata(json::from_bjdata(v_d), true, true) == v_d); variable
H A Dunit-ubjson.cpp1689 std::vector<uint8_t> v_d = {'d', 0x40, 0x49, 0x0f, 0xd0}; variable
1690 CHECK(json::from_ubjson(v_d) == 3.14159f);
1697 CHECK(json::to_ubjson(json::from_ubjson(v_d)) == json::to_ubjson(3.14159f));
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs9451 let v_d = vec_unique[1..6].to_vec(); in test_slice()
9452 assert_eq!(v_d.len(), 5); in test_slice()
9454 assert_eq!(v_d[0], 2); in test_slice()
9455 assert_eq!(v_d[1], 3); in test_slice()
9456 assert_eq!(v_d[2], 4); in test_slice()
9457 assert_eq!(v_d[3], 5); in test_slice()
9458 assert_eq!(v_d[4], 6); in test_slice()
[all...]

Completed in 62 milliseconds