/third_party/node/src/crypto/ |
D | crypto_rsa.cc | 426 Local<Value> d_value; in ImportJWKRsaKey() local 430 !jwk->Get(env->context(), env->jwk_d_string()).ToLocal(&d_value) || in ImportJWKRsaKey() 437 if (!d_value->IsUndefined() && !d_value->IsString()) { in ImportJWKRsaKey() 442 KeyType type = d_value->IsString() ? kKeyTypePrivate : kKeyTypePublic; in ImportJWKRsaKey() 483 ByteSource d = ByteSource::FromEncodedString(env, d_value.As<String>()); in ImportJWKRsaKey()
|
D | crypto_ec.cc | 936 Local<Value> d_value; in ImportJWKEcKey() local 940 !jwk->Get(env->context(), env->jwk_d_string()).ToLocal(&d_value)) { in ImportJWKEcKey() 946 (!d_value->IsUndefined() && !d_value->IsString())) { in ImportJWKEcKey() 951 KeyType type = d_value->IsString() ? kKeyTypePrivate : kKeyTypePublic; in ImportJWKEcKey() 971 ByteSource d = ByteSource::FromEncodedString(env, d_value.As<String>()); in ImportJWKEcKey()
|
/third_party/gn/src/gn/ |
D | input_conversion_unittest.cc | 166 const Value* d_value = c_value->scope_value()->GetValue("d"); in TEST_F() local 167 ASSERT_TRUE(d_value); in TEST_F() 168 EXPECT_EQ(true, d_value->boolean_value()); in TEST_F()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
D | glcPixelStorageModesTests.cpp | 300 const glw::GLdouble d_value = col * d_max; in writeToUnsignedChannel() local 301 const T t_value = (T)d_value; in writeToUnsignedChannel() 314 const glw::GLdouble d_value = col * d_max; in writeToSignedChannel() local 315 const T t_value = (T)d_value; in writeToSignedChannel() 378 const glw::GLdouble d_value = col * d_max; in write3Channel() local 379 const T t_value = (T)d_value; in write3Channel() 432 const glw::GLdouble d_value = col * d_max; in write4Channel() local 433 const T t_value = (T)d_value; in write4Channel() 527 const glw::GLdouble d_value = d_max * col; in setUnsignedRefcolour() local 528 const T t_value = (T)d_value; in setUnsignedRefcolour() [all …]
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cCopyImageTests.cpp | 1657 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromUnsignedChannel() local 1659 out_value = d_value / d_max; in readBaseTypeFromUnsignedChannel() 1680 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromSignedChannel() local 1682 out_value = d_value / d_max; in readBaseTypeFromSignedChannel() 1697 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromFloatChannel() local 1699 out_value = d_value; in readBaseTypeFromFloatChannel() 1715 const GLdouble d_value = val.asDouble(); in readBaseTypeFromHalfFloatChannel() local 1717 out_value = d_value; in readBaseTypeFromHalfFloatChannel() 1774 const GLdouble d_value = (GLdouble)result; in read3Channel() local 1776 out_value = d_value / d_max; in read3Channel() [all …]
|
/third_party/mesa3d/src/tool/pps/ |
D | pps_datasource.cc | 229 if (auto d_value = std::get_if<double>(&value)) { in add_samples() local 230 counter_event->set_double_value(*d_value); in add_samples()
|
/third_party/python/Objects/ |
D | exceptions.c | 150 PyObject *d_key, *d_value; in BaseException_setstate() local 158 while (PyDict_Next(state, &i, &d_key, &d_value)) { in BaseException_setstate() 159 if (PyObject_SetAttr(self, d_key, d_value) < 0) in BaseException_setstate()
|
/third_party/python/Modules/ |
D | _pickle.c | 6690 PyObject *d_key, *d_value; in load_build() local 6704 while (PyDict_Next(state, &i, &d_key, &d_value)) { in load_build() 6710 if (PyObject_SetItem(dict, d_key, d_value) < 0) { in load_build() 6721 PyObject *d_key, *d_value; in load_build() local 6731 while (PyDict_Next(slotstate, &i, &d_key, &d_value)) { in load_build() 6732 if (PyObject_SetAttr(inst, d_key, d_value) < 0) in load_build()
|
/third_party/node/deps/v8/src/codegen/ |
D | code-stub-assembler.h | 3864 double d_value = static_cast<double>(i_value); in ConstexprIntegerLiteralToFloat64() local 3865 CHECK_EQ(i_value, static_cast<int64_t>(d_value)); in ConstexprIntegerLiteralToFloat64() 3866 return d_value; in ConstexprIntegerLiteralToFloat64()
|
/third_party/mindspore/patches/ |
D | 0006-remove-lite-expression-fix-double-loadso.patch | 5838 - auto d_value = d.at(i); 5839 - if (d_value == 0) { 5843 - if ((x_value % d_value) != 0) { 5846 - auto r = x_value / d_value;
|