/external/rust/crates/quiche/deps/boringssl/src/include/openssl/ |
D | nid.h | 1 /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) 8 * This library is free for commercial and non-commercial use as long as 35 * being used are not cryptographic related :-). 86 #define OBJ_undef 0L 91 #define OBJ_rsadsi 1L, 2L, 840L, 113549L 96 #define OBJ_pkcs 1L, 2L, 840L, 113549L, 1L 101 #define OBJ_md2 1L, 2L, 840L, 113549L, 2L, 2L 106 #define OBJ_md5 1L, 2L, 840L, 113549L, 2L, 5L 111 #define OBJ_rc4 1L, 2L, 840L, 113549L, 3L, 4L 115 #define OBJ_rsaEncryption 1L, 2L, 840L, 113549L, 1L, 1L, 1L [all …]
|
/external/boringssl/src/include/openssl/ |
D | nid.h | 1 /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) 8 * This library is free for commercial and non-commercial use as long as 35 * being used are not cryptographic related :-). 86 #define OBJ_undef 0L 91 #define OBJ_rsadsi 1L, 2L, 840L, 113549L 96 #define OBJ_pkcs 1L, 2L, 840L, 113549L, 1L 101 #define OBJ_md2 1L, 2L, 840L, 113549L, 2L, 2L 106 #define OBJ_md5 1L, 2L, 840L, 113549L, 2L, 5L 111 #define OBJ_rc4 1L, 2L, 840L, 113549L, 3L, 4L 115 #define OBJ_rsaEncryption 1L, 2L, 840L, 113549L, 1L, 1L, 1L [all …]
|
/external/cldr/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/ |
D | iso-639-3.tab | 2 aaa I L Ghotuo 3 aab I L Alumu-Tesu 4 aac I L Ari 5 aad I L Amal 6 aae I L Arbëreshë Albanian 7 aaf I L Aranadan 8 aag I L Ambrak 9 aah I L Abu' Arapesh 10 aai I L Arifama-Miniafia 11 aak I L Ankave [all …]
|
/external/pdfium/xfa/fgas/crt/ |
D | cfgas_stringformatter_unittest.cpp | 2 // Use of this source code is governed by a BSD-style license that can be 44 // Note, this re-creates the fmt on each call. If you need to multiple 68 {L"en", L"2002-10-25", L"MMMM DD, YYYY", L"October 25, 2002"}, in TEST_F() 71 {L"en", L"20040722", L"'Week of the month is' w", in TEST_F() 72 L"Week of the month is 3"}, in TEST_F() 73 {L"en", L"20040722", L"e 'days after Sunday'", L"4 days after Sunday"}, in TEST_F() 74 {L"en", L"20040722", L"YYYY-'W'WW-e", L"2004-W30-4"}, in TEST_F() 75 {L"en", L"20040722", L"E 'days after Saturday'", in TEST_F() 76 L"5 days after Saturday"}, in TEST_F() 77 {L"en", L"2000-01-01", L"EEE, 'the' D 'of' MMMM, YYYY", in TEST_F() [all …]
|
/external/python/jinja/artwork/ |
D | jinjalogo.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 <!-- Created with Inkscape (http://www.inkscape.org/) --> 6 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 10 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" 20 inkscape:export-filename="/Users/mitsuhiko/Development/jinja2/docs/_static/jinjabanner.png" 21 inkscape:export-xdpi="60" 22 inkscape:export-ydpi="60" 29 style="stop-color:#575757;stop-opacity:1;" 33 style="stop-color:#2f2f2f;stop-opacity:1;" 93 inkscape:document-units="px" [all …]
|
/external/ImageMagick/images/ |
D | bitcoin.svg | 3 <!-- Created with https://api.qrserver.com (QR Code API, see goQR.me/api for information) --> 6 <rect style="fill:rgb(255, 255, 255);fill-opacity:1" x="0" y="0" width="234" height="234" /> 8 …l 6,0 0,6 -6,0 z M 12,6 l 6,0 0,6 -6,0 z M 18,6 l 6,0 0,6 -6,0 z M 24,6 l 6,0 0,6 -6,0 z M 30,6 l …
|
/external/lua/src/ |
D | lapi.c | 43 ** '!ttisnil(o)' implies 'o != &G(L)->nilvalue', so it is not needed. 46 #define isvalid(L, o) (!ttisnil(o) || o != &G(L)->nilvalue) argument 56 static TValue *index2value (lua_State *L, int idx) { in index2value() argument 57 CallInfo *ci = L->ci; in index2value() 59 StkId o = ci->func + idx; in index2value() 60 api_check(L, idx <= L->ci->top - (ci->func + 1), "unacceptable index"); in index2value() 61 if (o >= L->top) return &G(L)->nilvalue; in index2value() 65 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index"); in index2value() 66 return s2v(L->top + idx); in index2value() 69 return &G(L)->l_registry; in index2value() [all …]
|
D | ldo.c | 43 ** Error-recovery functions 58 #define LUAI_THROW(L,c) throw(c) argument 59 #define LUAI_TRY(L,c,a) \ argument 60 try { a } catch(...) { if ((c)->status == 0) (c)->status = -1; } 66 #define LUAI_THROW(L,c) _longjmp((c)->b, 1) argument 67 #define LUAI_TRY(L,c,a) if (_setjmp((c)->b) == 0) { a } argument 73 #define LUAI_THROW(L,c) longjmp((c)->b, 1) argument 74 #define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a } argument 91 void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop) { in luaD_seterrorobj() argument 94 setsvalue2s(L, oldtop, G(L)->memerrmsg); /* reuse preregistered msg. */ in luaD_seterrorobj() [all …]
|
D | lstate.c | 37 lua_State l; member 45 LX l; member 51 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l))) argument 71 static unsigned int luai_makeseed (lua_State *L) { in luai_makeseed() argument 75 addbuff(buff, p, L); /* heap variable */ in luai_makeseed() 92 if (debt < tb - MAX_LMEM) in luaE_setdebt() 93 debt = tb - MAX_LMEM; /* will make 'totalbytes == MAX_LMEM' */ in luaE_setdebt() 94 g->totalbytes = tb - debt; in luaE_setdebt() 95 g->GCdebt = debt; in luaE_setdebt() 99 LUA_API int lua_setcstacklimit (lua_State *L, unsigned int limit) { in lua_setcstacklimit() argument [all …]
|
/external/ImageMagick/PerlMagick/t/reference/write/cgm/ |
D | read.miff | 8 :666,[,d,+K3Kn*ol2_q_MLMmel((k7������ �.�$�,�%%�55�4'�$�L�r�n �u*�R(�G�K�H1�o… 9 ���-�%�%5�53�(!�M�o�h�!M�"E�DV�VR�Mf�fv�v}�|v�im�P=�'��8�=�4*�$#�o�N�k�8S�.h�L�J… 11 �$�4�+�$�""�++�&&�33�;;�66�./�D�M�f�w�p�$D�1K�-r�^�L2�E:�R �UE�gN�DD�JJ�TT�YY�WX�MM�Qr�fZ… 13 …-��0��H��R��p��t��[��L��D��J��V��I��i��e��w��|��o��_'��g��VƎr��r��n����������������������������Ԙ…
|
/external/ImageMagick/PerlMagick/t/reference/cgm/ |
D | read.miff | 8 :666,[,d,+K3Kn*ol2_q_MLMmel((k7������ �.�$�,�%%�55�4'�$�L�r�n �u*�R(�G�K�H1�o… 9 ���-�%�%5�53�(!�M�o�h�!M�"E�DV�VR�Mf�fv�v}�|v�im�P=�'��8�=�4*�$#�o�N�k�8S�.h�L�J… 11 �$�4�+�$�""�++�&&�33�;;�66�./�D�M�f�w�p�$D�1K�-r�^�L2�E:�R �UE�gN�DD�JJ�TT�YY�WX�MM�Qr�fZ… 13 …-��0��H��R��p��t��[��L��D��J��V��I��i��e��w��|��o��_'��g��VƎr��r��n����������������������������Ԙ…
|
/external/libcxx/test/std/language.support/support.limits/support.limits.general/ |
D | version.version.pass.cpp | 2 //===----------------------------------------------------------------------===// 9 //===----------------------------------------------------------------------===// 14 __cpp_lib_addressof_constexpr 201603L 15 __cpp_lib_allocator_traits_is_always_equal 201411L 16 __cpp_lib_any 201606L 17 __cpp_lib_apply 201603L 18 __cpp_lib_array_constexpr 201603L 19 __cpp_lib_as_const 201510L 20 __cpp_lib_atomic_is_always_lock_free 201603L 21 __cpp_lib_atomic_ref 201806L [all …]
|
/external/scudo/standalone/tests/ |
D | list_test.cpp | 1 //===-- list_test.cpp -------------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 30 static void setList(ListT *L, ListItem *I1 = nullptr, ListItem *I2 = nullptr, in setList() argument 32 L->clear(); in setList() 34 L->push_back(I1); in setList() 36 L->push_back(I2); in setList() 38 L->push_back(I3); in setList() 42 static void checkList(ListT *L, ListItem *I1, ListItem *I2 = nullptr, in checkList() argument 46 EXPECT_EQ(L->front(), I1); in checkList() [all …]
|
/external/libcxx/include/ |
D | version | 1 // -*- C++ -*- 2 //===--------------------------- version ----------------------------------===// 9 //===----------------------------------------------------------------------===// 17 Table 35 — Standard library feature-test macros 19 __cpp_lib_addressof_constexpr 201603L <memory> 20 __cpp_lib_allocator_traits_is_always_equal 201411L <memory> <scoped_allocator> <string> 23 __cpp_lib_any 201606L <any> 24 __cpp_lib_apply 201603L <tuple> 25 __cpp_lib_array_constexpr 201603L <iterator> <array> 26 __cpp_lib_as_const 201510L <utility> [all …]
|
/external/libffi/src/x86/ |
D | sysv_intel.S | 1 /* ----------------------------------------------------------------------- 2 sysv.S - Copyright (c) 2017 Anthony Green 3 - Copyright (c) 2013 The Written Word, Inc. 4 - Copyright (c) 1996,1998,2001-2003,2005,2008,2010 Red Hat, Inc. 27 ----------------------------------------------------------------------- */ 40 #define L(X) C1(L, X) macro 73 L(UW0): 88 moved the return address is (the new) CFA-4, so from the 91 L(UW1): 104 L(UW2): [all …]
|
D | sysv.S | 1 /* ----------------------------------------------------------------------- 2 sysv.S - Copyright (c) 2017 Anthony Green 3 - Copyright (c) 2013 The Written Word, Inc. 4 - Copyright (c) 1996,1998,2001-2003,2005,2008,2010 Red Hat, Inc. 27 ----------------------------------------------------------------------- */ 46 # define L(X) C1(L, X) macro 48 # define L(X) C1(.L, X) macro 52 # define ENDF(X) .type X,@function; .size X, . - X 93 L(UW0): 108 moved the return address is (the new) CFA-4, so from the [all …]
|
/external/libcxx/test/std/re/re.traits/ |
D | lookup_collatename.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 13 // REQUIRES: locale.cs_CZ.ISO8859-2 24 // XFAIL: linux-gnu 49 test("carriage-return", std::string("\x0D")); in main() 51 test("vertical-tab", std::string("\x0B")); in main() 52 test("form-feed", std::string("\x0C")); in main() 54 test("exclamation-mark", std::string("!")); in main() 55 test("quotation-mark", std::string("\"")); in main() 56 test("number-sign", std::string("#")); in main() [all …]
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
D | MatrixLogarithm.h | 5 // Copyright (C) 2011 Chen-Pang He <jdh8@ms63.hinet.net> 31 std::numeric_limits<RealScalar>::digits<=106? 10: // double-double 53 Scalar y = A(1,1) - A(0,0); in matrix_log_compute_2x2() 60 result(0,1) = A(0,1) * (logA11 - logA00) / y; in matrix_log_compute_2x2() 65 …RealScalar unwindingNumber = ceil((imag(logA11 - logA00) - RealScalar(EIGEN_PI)) / RealScalar(2*EI… in matrix_log_compute_2x2() 73 const float maxNormForPade[] = { 2.5111573934555054e-1 /* degree = 3 */ , 4.0535837411880493e-1, in matrix_log_get_pade_degree() 74 5.3149729967117310e-1 }; in matrix_log_get_pade_degree() 79 if (normTminusI <= maxNormForPade[degree - minPadeDegree]) in matrix_log_get_pade_degree() 87 const double maxNormForPade[] = { 1.6206284795015624e-2 /* degree = 3 */ , 5.3873532631381171e-2, in matrix_log_get_pade_degree() 88 1.1352802267628681e-1, 1.8662860613541288e-1, 2.642960831111435e-1 }; in matrix_log_get_pade_degree() [all …]
|
/external/e2fsprogs/lib/et/test_cases/ |
D | imap_err.h | 8 #define IMAP_INTERNAL (-1904809472L) 9 #define IMAP_IOERROR (-1904809471L) 10 #define IMAP_NOTFOUND (-1904809470L) 11 #define IMAP_SYS_ERROR (-1904809469L) 12 #define IMAP_NOSPACE (-1904809468L) 13 #define IMAP_PERMISSION_DENIED (-1904809467L) 14 #define IMAP_QUOTA_EXCEEDED (-1904809466L) 15 #define IMAP_MESSAGE_TOO_LARGE (-1904809465L) 16 #define IMAP_USERFLAG_EXHAUSTED (-1904809464L) 17 #define IMAP_NAMESPACE_BADPREFIX (-1904809463L) [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/bindings/lua/ |
D | msg.c | 2 ** lupb_msg -- Message/Array/Map objects in Lua/C that wrap upb/msg.h 46 * +-----+ 47 * lupb_arena |cache|-weak-+ 48 * | ^ +-----+ | 50 * Lua level | +------------lupb_msg 51 * ----------------|-----------------|------------------------------------------ 53 * | +----V------------------------------+ 54 * +->upb_arena | upb_msg ...(empty arena storage) | 55 * +-----------------------------------+ 61 * +-------------------------->(fused)<----------------+ [all …]
|
/external/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl14.c | 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 61 /* NOBLOCK - immediate success */ 64 /* WILLBLOCK - blocks, then succeeds (parent must unlock records) */ 88 {F_WRLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L, 90 F_RDLCK, 0, 0L, 0L, WILLBLOCK}, 93 {F_WRLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L, 95 F_WRLCK, 0, 0L, 0L, WILLBLOCK}, 98 {F_RDLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L, 100 F_RDLCK, 0, 0L, 0L, NOBLOCK}, 103 {F_RDLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L, [all …]
|
/external/skia/site/docs/dev/design/conical/ |
D | lemma3.2.svg | 8 xmlns:ev="http://www.w3.org/2001/xml-events" 17 <g stroke-linejoin="miter" stroke-dashoffset="0" stroke-dasharray="none" stroke-width="1" stroke-mi… 19 <g fill-opacity="1" fill-rule="nonzero" stroke="none" fill="#ffffff"> 20 <path d="M 0 0 L 354 0 L 354 317 L 0 317 L 0 0 z"/> 21 </g> <!-- drawing style --> 22 </g> <!-- transform --> 24 <g fill-opacity="1" fill-rule="nonzero" stroke="none" fill="#000000"> 25 …L 48.125 235.859375 L 48.125 236.65625 L 45.484375 236.65625 L 45.484375 235.859375 z M 51.7802734… 26 </g> <!-- drawing style --> 27 </g> <!-- transform --> [all …]
|
D | lemma4.svg | 8 xmlns:ev="http://www.w3.org/2001/xml-events" 17 <g stroke-linejoin="miter" stroke-dashoffset="0" stroke-dasharray="none" stroke-width="1" stroke-mi… 19 <g fill-opacity="1" fill-rule="nonzero" stroke="none" fill="#ffffff"> 20 <path d="M 0 0 L 385 0 L 385 303 L 0 303 L 0 0 z"/> 21 </g> <!-- drawing style --> 22 </g> <!-- transform --> 24 <g fill-opacity="1" fill-rule="nonzero" stroke="none" fill="#000000"> 26 </g> <!-- drawing style --> 27 </g> <!-- transform --> 29 <g stroke-linecap="butt" fill="none" stroke-opacity="1" stroke="#000000"> [all …]
|
/external/ImageMagick/PerlMagick/t/reference/read/ |
D | gradient.miff | 2 class=DirectClass colors=0 alpha-trait=Undefined 7 rendering-intent=Perceptual 9 red-primary=0.64,0.33 green-primary=0.3,0.6 blue-primary=0.15,0.06 10 white-point=0.3127,0.329 11 date:create=2015-04-15T09:25:08-04:00 12 date:modify=2015-04-15T09:25:08-04:00 14 …""��""��""��""��""��""��""��""��""��""��""�-'��-'��-'��-'��-'��-'…
|
/external/python/cpython2/Tools/pybench/ |
D | Lists.py | 11 l = [] 12 append = l.append 23 l[0] = 3 24 l[1] = 4 25 l[2] = 5 26 l[3] = 3 27 l[4] = 4 28 l[5] = 5 30 x = l[0] 31 x = l[1] [all …]
|