Home
last modified time | relevance | path

Searched refs:p_value (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
Dchi_square.cc112 const double p_value = 1.0 - p; in ChiSquareValue() local
113 if (dof < 1 || p_value > 1.0) { in ChiSquareValue()
123 const double z = InverseNormalSurvival(p_value); in ChiSquareValue()
132 if (p_value <= 0.0) return kChiMax; in ChiSquareValue()
137 double current = dof / std::sqrt(p_value); in ChiSquareValue()
139 if (ChiSquarePValue(current, dof) < p_value) { in ChiSquareValue()
/third_party/ffmpeg/libavutil/tests/
Dlfg.c121 double Z, p_value = -1, tot_samp = 1000; in main() local
164 p_value = flag ? 1 - Z_TABLE[x][y] : Z_TABLE[x][y]; in main()
186 samp_mean, mean, samp_stddev, stddev, Z, p_value, QH); in main()
/third_party/python/Python/
Derrors.c431 _PyErr_Fetch(PyThreadState *tstate, PyObject **p_type, PyObject **p_value, in _PyErr_Fetch() argument
435 *p_value = tstate->curexc_value; in _PyErr_Fetch()
445 PyErr_Fetch(PyObject **p_type, PyObject **p_value, PyObject **p_traceback) in PyErr_Fetch() argument
448 _PyErr_Fetch(tstate, p_type, p_value, p_traceback); in PyErr_Fetch()
469 PyObject **p_type, PyObject **p_value, PyObject **p_traceback) in _PyErr_GetExcInfo() argument
473 *p_value = exc_info->exc_value; in _PyErr_GetExcInfo()
477 Py_XINCREF(*p_value); in _PyErr_GetExcInfo()
483 PyErr_GetExcInfo(PyObject **p_type, PyObject **p_value, PyObject **p_traceback) in PyErr_GetExcInfo() argument
486 _PyErr_GetExcInfo(tstate, p_type, p_value, p_traceback); in PyErr_GetExcInfo()
490 PyErr_SetExcInfo(PyObject *p_type, PyObject *p_value, PyObject *p_traceback) in PyErr_SetExcInfo() argument
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
Ddiscrete_distribution_test.cc186 double p_value = in TEST() local
194 absl::StrAppend(&msg, kChiSquared, " p-value ", p_value, "\n"); in TEST()
Dlog_uniform_int_distribution_test.cc203 double p_value = ChiSquaredTestImpl(); in TEST_P() local
204 if (p_value < 0.005) { in TEST_P()
Duniform_int_distribution_test.cc201 double p_value = in TYPED_TEST() local
209 absl::StrAppend(&msg, kChiSquared, " p-value ", p_value, "\n"); in TYPED_TEST()
Duniform_real_distribution_test.cc282 double p_value = in TYPED_TEST() local
290 absl::StrAppend(&msg, kChiSquared, " p-value ", p_value, "\n"); in TYPED_TEST()
Dexponential_distribution_test.cc313 double p_value = in TEST_P() local
315 if (p_value < 0.005) { // 1/200 in TEST_P()
Dgaussian_distribution_test.cc337 double p_value = in TEST_P() local
339 if (p_value < 0.0025) { // 1/400 in TEST_P()
Dpoisson_distribution_test.cc469 double p_value = ChiSquaredTestImpl<absl::poisson_distribution<int32_t>>(); in TEST_P() local
470 if (p_value < 0.005) { in TEST_P()
/third_party/node/src/crypto/
Dcrypto_rsa.cc459 Local<Value> p_value; in ImportJWKRsaKey() local
465 if (!jwk->Get(env->context(), env->jwk_p_string()).ToLocal(&p_value) || in ImportJWKRsaKey()
474 if (!p_value->IsString() || in ImportJWKRsaKey()
485 ByteSource p = ByteSource::FromEncodedString(env, p_value.As<String>()); in ImportJWKRsaKey()