Home
last modified time | relevance | path

Searched refs:v_d (Results 1 – 3 of 3) sorted by relevance

/third_party/node/src/
Dutil-inl.h524 double v_d = v.As<v8::Number>()->Value(); in IsSafeJsInt() local
525 if (std::isnan(v_d)) return false; in IsSafeJsInt()
526 if (std::isinf(v_d)) return false; in IsSafeJsInt()
527 if (std::trunc(v_d) != v_d) return false; // not int in IsSafeJsInt()
528 if (std::abs(v_d) <= static_cast<double>(kMaxSafeJsInteger)) return true; in IsSafeJsInt()
/third_party/ffmpeg/libpostproc/
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/test/src/
Dunit-ubjson.cpp1711 std::vector<uint8_t> v_d = {'d', 0x40, 0x49, 0x0f, 0xd0}; variable
1712 CHECK(json::from_ubjson(v_d) == 3.14159f);
1719 CHECK(json::to_ubjson(json::from_ubjson(v_d)) == json::to_ubjson(3.14159f));