/external/python/cpython3/Modules/_sqlite/ |
D | microprotocols.c | 81 PyObject *adapter, *key, *adapted; in pysqlite_microprotocols_adapt() local 96 adapted = PyObject_CallOneArg(adapter, obj); in pysqlite_microprotocols_adapt() 98 return adapted; in pysqlite_microprotocols_adapt() 109 adapted = PyObject_CallOneArg(adapter, obj); in pysqlite_microprotocols_adapt() 112 if (adapted == Py_None) { in pysqlite_microprotocols_adapt() 113 Py_DECREF(adapted); in pysqlite_microprotocols_adapt() 115 else if (adapted || !PyErr_ExceptionMatches(PyExc_TypeError)) { in pysqlite_microprotocols_adapt() 116 return adapted; in pysqlite_microprotocols_adapt() 128 adapted = PyObject_CallOneArg(adapter, proto); in pysqlite_microprotocols_adapt() 131 if (adapted == Py_None) { in pysqlite_microprotocols_adapt() [all …]
|
D | statement.c | 238 PyObject* adapted; in pysqlite_statement_bind_parameters() local 283 adapted = current_param; in pysqlite_statement_bind_parameters() 285 …adapted = pysqlite_microprotocols_adapt(current_param, (PyObject*)pysqlite_PrepareProtocolType, cu… in pysqlite_statement_bind_parameters() 287 if (!adapted) { in pysqlite_statement_bind_parameters() 292 rc = pysqlite_statement_bind_parameter(self, i + 1, adapted); in pysqlite_statement_bind_parameters() 293 Py_DECREF(adapted); in pysqlite_statement_bind_parameters() 334 adapted = current_param; in pysqlite_statement_bind_parameters() 336 …adapted = pysqlite_microprotocols_adapt(current_param, (PyObject*)pysqlite_PrepareProtocolType, cu… in pysqlite_statement_bind_parameters() 338 if (!adapted) { in pysqlite_statement_bind_parameters() 343 rc = pysqlite_statement_bind_parameter(self, i, adapted); in pysqlite_statement_bind_parameters() [all …]
|
/external/python/cpython2/Modules/_sqlite/ |
D | microprotocols.c | 92 PyObject *adapted = PyObject_CallFunctionObjArgs(adapter, obj, NULL); in pysqlite_microprotocols_adapt() local 93 return adapted; in pysqlite_microprotocols_adapt() 98 PyObject *adapted = PyObject_CallMethod(proto, "__adapt__", "O", obj); in pysqlite_microprotocols_adapt() local 99 if (adapted) { in pysqlite_microprotocols_adapt() 100 if (adapted != Py_None) { in pysqlite_microprotocols_adapt() 101 return adapted; in pysqlite_microprotocols_adapt() 103 Py_DECREF(adapted); in pysqlite_microprotocols_adapt() 113 PyObject *adapted = PyObject_CallMethod(obj, "__conform__","O", proto); in pysqlite_microprotocols_adapt() local 114 if (adapted) { in pysqlite_microprotocols_adapt() 115 if (adapted != Py_None) { in pysqlite_microprotocols_adapt() [all …]
|
D | statement.c | 220 PyObject* adapted; in pysqlite_statement_bind_parameters() local 260 adapted = current_param; in pysqlite_statement_bind_parameters() 262 …adapted = pysqlite_microprotocols_adapt(current_param, (PyObject*)&pysqlite_PrepareProtocolType, N… in pysqlite_statement_bind_parameters() 263 if (adapted) { in pysqlite_statement_bind_parameters() 267 adapted = current_param; in pysqlite_statement_bind_parameters() 271 rc = pysqlite_statement_bind_parameter(self, i + 1, adapted, allow_8bit_chars); in pysqlite_statement_bind_parameters() 272 Py_DECREF(adapted); in pysqlite_statement_bind_parameters() 305 adapted = current_param; in pysqlite_statement_bind_parameters() 307 …adapted = pysqlite_microprotocols_adapt(current_param, (PyObject*)&pysqlite_PrepareProtocolType, N… in pysqlite_statement_bind_parameters() 308 if (adapted) { in pysqlite_statement_bind_parameters() [all …]
|
/external/licenseclassifier/v2/assets/License/Tensilica/ |
D | pristine.txt | 4 Tensilica Inc. They may be adapted and modified by bona fide 5 purchasers for internal use, but neither the original nor any adapted
|
/external/rust/crates/ring/src/arithmetic/ |
D | bigint_elem_reduced_tests.txt | 23 # Test vector adapted from the regression test for CVE-2015-3193, A is the 29 # Test vector adapted from the regression test for CVE-2017-3732. A is the 36 # These vectors were adapted from BoringSSL's "Quotient" BIGNUM tests in the
|
/external/libmonet/hct/ |
D | HctSolver.java | 558 static double inverseChromaticAdaptation(double adapted) { in inverseChromaticAdaptation() argument 559 double adaptedAbs = Math.abs(adapted); in inverseChromaticAdaptation() 561 return MathUtils.signum(adapted) * Math.pow(base, 1.0 / 0.42); in inverseChromaticAdaptation()
|
/external/apache-commons-io/src/test/java/org/apache/commons/io/function/ |
D | IOSpliteratorTest.java | 103 …final IOSpliterator<Path> adapted = IOSpliterator.adapt(new TreeSet<>(newPathList()).stream().sort… in testGetComparator() local 104 final IOComparator<? super Path> comparator = adapted.getComparator(); in testGetComparator()
|
/external/speex/tmv/ |
D | mdf_tm.h | 981 register int adapted = st->adapted; in mdf_adapt() local 988 adapted = mux( !adapted && sum_adapt > QCONST32(M,15) && in mdf_adapt() 989 MULT16_32_Q15(leake,Syy) > MULT16_32_Q15(QCONST16(.03f,15),Syy), 1, adapted); in mdf_adapt() 991 if ( adapted ) in mdf_adapt() 1075 st->adapted = adapted; in mdf_adapt() 1182 if ( st->adapted ) in speex_echo_cancellation()
|
/external/cronet/third_party/protobuf/csharp/protos/ |
D | README.md | 1 This directory contains unit test protos adapted from those in
|
/external/protobuf/csharp/protos/ |
D | README.md | 1 This directory contains unit test protos adapted from those in
|
/external/cronet/third_party/boringssl/src/third_party/wycheproof_testvectors/ |
D | METADATA | 4 "This is a copy of only the test vectors, adapted for BoringSSL."
|
/external/boringssl/src/third_party/wycheproof_testvectors/ |
D | METADATA | 4 "This is a copy of only the test vectors, adapted for BoringSSL."
|
/external/llvm/test/CodeGen/PowerPC/ |
D | pr24216.ll | 3 ; Test case adapted from PR24216.
|
/external/cronet/buildtools/third_party/libc++/trunk/src/ryu/ |
D | README.txt | 6 The code has been adapted by Stephan T. Lavavej of Microsoft for usage in
|
/external/hyphenation-patterns/hy/ |
D | hyph-hy.lic.txt | 9 % and later adapted for TeX
|
/external/deqp/doc/testspecs/GLES3/ |
D | functional.shaders.builtin_functions.precision.txt | 40 reference. Moreover, the highp precision requirements have been adapted 71 The precisions for trigonometric functions have been adapted from OpenCL 112 adapted from the OpenCL half-float specification.
|
/external/swiftshader/third_party/subzero/crosstest/ |
D | lit.cfg | 15 # The re.sub() line is adapted from one of LLVM's lit.cfg files.
|
/external/glide/third_party/gif_decoder/ |
D | README.third_party | 11 also been adapted to reduce memory allocations in the decoding process to
|
/external/hyphenation-patterns/mr/ |
D | hyph-mr.lic.txt | 3 % and have been adapted for hyph-utf8 (for use in TeX).
|
/external/hyphenation-patterns/te/ |
D | hyph-te.lic.txt | 3 % and have been adapted for hyph-utf8 (for use in TeX).
|
/external/hyphenation-patterns/kn/ |
D | hyph-kn.lic.txt | 3 % and have been adapted for hyph-utf8 (for use in TeX).
|
/external/hyphenation-patterns/gu/ |
D | hyph-gu.lic.txt | 3 % and have been adapted for hyph-utf8 (for use in TeX).
|
/external/hyphenation-patterns/ta/ |
D | hyph-ta.lic.txt | 3 % and have been adapted for hyph-utf8 (for use in TeX).
|
/external/hyphenation-patterns/hi/ |
D | hyph-hi.lic.txt | 3 % and have been adapted for hyph-utf8 (for use in TeX).
|