Home
last modified time | relevance | path

Searched +full:- +full:l (Results 1 – 25 of 1176) sorted by relevance

12345678910>>...48

/external/rust/crates/quiche/deps/boringssl/src/include/openssl/
Dnid.h1 /* 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/
Dnid.h1 /* 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/java/org/unicode/cldr/util/data/
Diso-639-3.tab2 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/
Dcfgas_stringformatter_unittest.cpp2 // 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/llvm-project/libcxx/include/
Dversion1 // -*- C++ -*-
2 //===--------------------------- version ----------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
17 __cpp_lib_addressof_constexpr 201603L <memory>
18 __cpp_lib_allocator_traits_is_always_equal 201411L <memory> <scoped_allocator> <string>
22 __cpp_lib_any 201606L <any>
23 __cpp_lib_apply 201603L <tuple>
24 __cpp_lib_array_constexpr 201811L <iterator> <array>
25 201603L // C++17
[all …]
/external/python/jinja/artwork/
Djinjalogo.svg1 <?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/
Dbitcoin.svg3 <!-- 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" />
8l 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/
Dlapi.c43 ** '!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 …]
Dldo.c43 ** 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 …]
Dlstate.c37 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/
Dread.miff8 :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/
Dread.miff8 :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/
Dversion.version.pass.cpp2 //===----------------------------------------------------------------------===//
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/llvm-project/compiler-rt/lib/scudo/standalone/tests/
Dlist_test.cpp1 //===-- 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/scudo/standalone/tests/
Dlist_test.cpp1 //===-- 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/
Dversion1 // -*- 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/skqp/src/utils/
DSkLua.cpp4 * Use of this source code is governed by a BSD-style license that can be
75 template <typename T, typename... Args> T* push_new(lua_State* L, Args&&... args) { in DEF_MTNAME()
76 T* addr = (T*)lua_newuserdata(L, sizeof(T)); in DEF_MTNAME()
78 luaL_getmetatable(L, get_mtname<T>()); in DEF_MTNAME()
79 lua_setmetatable(L, -2); in DEF_MTNAME()
83 template <typename T> void push_obj(lua_State* L, const T& obj) { in push_obj() argument
84 new (lua_newuserdata(L, sizeof(T))) T(obj); in push_obj()
85 luaL_getmetatable(L, get_mtname<T>()); in push_obj()
86 lua_setmetatable(L, -2); in push_obj()
89 template <typename T> T* push_ptr(lua_State* L, T* ptr) { in push_ptr() argument
[all …]
/external/libffi/src/x86/
Dsysv_intel.S1 /* -----------------------------------------------------------------------
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 …]
Dsysv.S1 /* -----------------------------------------------------------------------
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/llvm-project/libcxx/test/std/re/re.traits/
Dlookup_collatename.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 // REQUIRES: locale.cs_CZ.ISO8859-2
23 // XFAIL: linux-gnu
48 test("carriage-return", std::string("\x0D")); in main()
50 test("vertical-tab", std::string("\x0B")); in main()
51 test("form-feed", std::string("\x0C")); in main()
53 test("exclamation-mark", std::string("!")); in main()
54 test("quotation-mark", std::string("\"")); in main()
[all …]
/external/libcxx/test/std/re/re.traits/
Dlookup_collatename.pass.cpp1 //===----------------------------------------------------------------------===//
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/e2fsprogs/lib/et/test_cases/
Dimap_err.h8 #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/llvm-project/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_list_test.cpp1 //===-- sanitizer_list_test.cpp -------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
25 static void SetList(List *l, ListItem *x = 0, in SetList() argument
27 l->clear(); in SetList()
28 if (x) l->push_back(x); in SetList()
29 if (y) l->push_back(y); in SetList()
30 if (z) l->push_back(z); in SetList()
33 static void CheckList(List *l, ListItem *i1, ListItem *i2 = 0, ListItem *i3 = 0, in CheckList() argument
[all …]
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixLogarithm.h5 // 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 …int unwindingNumber = static_cast<int>(ceil((imag(logA11 - logA00) - RealScalar(EIGEN_PI)) / RealS… 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/llvm-project/lldb/unittests/Utility/
DStringLexerTest.cpp1 //===-- StringLexerTest.cpp -----------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 StringLexer l("foo"); in TEST() local
16 EXPECT_EQ("foo", l.GetUnlexed()); in TEST()
17 l.Next(); in TEST()
18 EXPECT_EQ("oo", l.GetUnlexed()); in TEST()
19 l.Next(); in TEST()
20 l.Next(); in TEST()
21 EXPECT_EQ("", l.GetUnlexed()); in TEST()
[all …]

12345678910>>...48