/external/python/cpython3/Parser/ |
D | parser.c | 13 (KeywordToken[]) {{NULL, -1}}, 14 (KeywordToken[]) {{NULL, -1}}, 21 {NULL, -1}, 30 {NULL, -1}, 40 {NULL, -1}, 49 {NULL, -1}, 58 {NULL, -1}, 62 {NULL, -1}, 67 {NULL, -1}, 103 #define dotted_name_type 1027 // Left-recursive [all …]
|
/external/bc/tests/bc/errors/ |
D | 03.txt | 2 …-p(srt()-s(ssqrt()-p(sstss(ssqrt()-p(ssssq(ssqrt()-p(ssqrt()-sst()-p(qrt()-p(s()-p(sq(ssqrt()-p(ss…
|
/external/mesa3d/include/D3D9/ |
D | d3d9.h | 17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 467 #define IDirect3D9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) argument 468 #define IDirect3D9_AddRef(p) (p)->lpVtbl->AddRef(p) argument 469 #define IDirect3D9_Release(p) (p)->lpVtbl->Release(p) argument 471 #define IDirect3D9_RegisterSoftwareDevice(p,a) (p)->lpVtbl->RegisterSoftwareDevice(p,a) argument 472 #define IDirect3D9_GetAdapterCount(p) (p)->lpVtbl->GetAdapterCount(p) argument 473 #define IDirect3D9_GetAdapterIdentifier(p,a,b,c) (p)->lpVtbl->GetAdapterIdentifier(p,a,b,c) argument 474 #define IDirect3D9_GetAdapterModeCount(p,a,b) (p)->lpVtbl->GetAdapterModeCount(p,a,b) argument 475 #define IDirect3D9_EnumAdapterModes(p,a,b,c,d) (p)->lpVtbl->EnumAdapterModes(p,a,b,c,d) argument 476 #define IDirect3D9_GetAdapterDisplayMode(p,a,b) (p)->lpVtbl->GetAdapterDisplayMode(p,a,b) argument [all …]
|
/external/lzma/C/ |
D | LzFindMt.c | 1 /* LzFindMt.c -- multithreaded Match finder for LZ algorithms 2 2018-12-29 : Igor Pavlov : Public domain */ 10 static void MtSync_Construct(CMtSync *p) in MtSync_Construct() argument 12 p->wasCreated = False; in MtSync_Construct() 13 p->csWasInitialized = False; in MtSync_Construct() 14 p->csWasEntered = False; in MtSync_Construct() 15 Thread_Construct(&p->thread); in MtSync_Construct() 16 Event_Construct(&p->canStart); in MtSync_Construct() 17 Event_Construct(&p->wasStarted); in MtSync_Construct() 18 Event_Construct(&p->wasStopped); in MtSync_Construct() [all …]
|
D | Bcj2Enc.c | 1 /* Bcj2Enc.c -- BCJ2 Encoder (Converter for x86 code) 2 2019-02-02 : Igor Pavlov : Public domain */ 27 void Bcj2Enc_Init(CBcj2Enc *p) in Bcj2Enc_Init() argument 31 p->state = BCJ2_ENC_STATE_OK; in Bcj2Enc_Init() 32 p->finishMode = BCJ2_ENC_FINISH_MODE_CONTINUE; in Bcj2Enc_Init() 34 p->prevByte = 0; in Bcj2Enc_Init() 36 p->cache = 0; in Bcj2Enc_Init() 37 p->range = 0xFFFFFFFF; in Bcj2Enc_Init() 38 p->low = 0; in Bcj2Enc_Init() 39 p->cacheSize = 1; in Bcj2Enc_Init() [all …]
|
D | XzDec.c | 1 /* XzDec.c -- Xz Decode 2 2019-02-02 : Igor Pavlov : Public domain */ 54 unsigned Xz_ReadVarInt(const Byte *p, size_t maxSize, UInt64 *value) in Xz_ReadVarInt() argument 62 Byte b = p[i]; in Xz_ReadVarInt() 70 /* ---------- BraState ---------- */ 98 CBraState *p = ((CBraState *)pp); in BraState_SetProps() local 100 p->ip = 0; in BraState_SetProps() 101 if (p->methodId == XZ_ID_Delta) in BraState_SetProps() 105 p->delta = (unsigned)props[0] + 1; in BraState_SetProps() 112 switch (p->methodId) in BraState_SetProps() [all …]
|
D | LzmaEnc.c | 1 /* LzmaEnc.c -- LZMA Encoder 2 2019-01-10: Igor Pavlov : Public domain */ 43 void LzmaEncProps_Init(CLzmaEncProps *p) in LzmaEncProps_Init() argument 45 p->level = 5; in LzmaEncProps_Init() 46 p->dictSize = p->mc = 0; in LzmaEncProps_Init() 47 p->reduceSize = (UInt64)(Int64)-1; in LzmaEncProps_Init() 48 p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1; in LzmaEncProps_Init() 49 p->writeEndMark = 0; in LzmaEncProps_Init() 52 void LzmaEncProps_Normalize(CLzmaEncProps *p) in LzmaEncProps_Normalize() argument 54 int level = p->level; in LzmaEncProps_Normalize() [all …]
|
/external/oboe/samples/RhythmGame/third_party/glm/detail/ |
D | type_vec2.inl | 7 template <typename T, precision P> 8 const tvec2<T, P> tvec2<T, P>::ZERO(static_cast<T>(0), static_cast<T>(0)); 10 template <typename T, precision P> 11 const tvec2<T, P> tvec2<T, P>::X(static_cast<T>(1), static_cast<T>(0)); 13 template <typename T, precision P> 14 const tvec2<T, P> tvec2<T, P>::Y(static_cast<T>(0), static_cast<T>(1)); 16 template <typename T, precision P> 17 const tvec2<T, P> tvec2<T, P>::XY(static_cast<T>(1), static_cast<T>(1)); 19 // -- Implicit basic constructors -- 22 template <typename T, precision P> [all …]
|
D | type_vec1.inl | 6 // -- Implicit basic constructors -- 9 template <typename T, precision P> 10 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec1<T, P>::tvec1() 18 template <typename T, precision P> 19 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec1<T, P>::tvec1(tvec1<T, P> const & v) 24 template <typename T, precision P> 26 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec1<T, P>::tvec1(tvec1<T, Q> const & v) 30 // -- Explicit basic constructors -- 32 template <typename T, precision P> 33 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec1<T, P>::tvec1(ctor) [all …]
|
D | type_vec2.hpp | 18 template <typename T, precision P = defaultp> 21 // -- Implementation detail -- 24 typedef tvec2<T, P> type; 25 typedef tvec2<bool, P> bool_type; 27 // -- Data -- 35 # pragma GCC diagnostic ignored "-Wpedantic" 39 # pragma clang diagnostic ignored "-Wgnu-anonymous-struct" 40 # pragma clang diagnostic ignored "-Wnested-anon-types" 50 _GLM_SWIZZLE2_2_MEMBERS(T, P, glm::tvec2, x, y) 51 _GLM_SWIZZLE2_2_MEMBERS(T, P, glm::tvec2, r, g) [all …]
|
D | type_vec3.hpp | 18 template <typename T, precision P = defaultp> 21 // -- Implementation detail -- 24 typedef tvec3<T, P> type; 25 typedef tvec3<bool, P> bool_type; 27 // -- Data -- 35 # pragma GCC diagnostic ignored "-Wpedantic" 39 # pragma clang diagnostic ignored "-Wgnu-anonymous-struct" 40 # pragma clang diagnostic ignored "-Wnested-anon-types" 47 struct{ T s, t, p; }; member 50 _GLM_SWIZZLE3_2_MEMBERS(T, P, glm::tvec2, x, y, z) [all …]
|
D | type_vec3.inl | 8 template <typename T, precision P> 9 const tvec3<T, P> tvec3<T, P>::ZERO(static_cast<T>(0), static_cast<T>(0), static_cast<T>(0)); 11 template <typename T, precision P> 12 const tvec3<T, P> tvec3<T, P>::X(static_cast<T>(1), static_cast<T>(0), static_cast<T>(0)); 14 template <typename T, precision P> 15 const tvec3<T, P> tvec3<T, P>::Y(static_cast<T>(0), static_cast<T>(1), static_cast<T>(0)); 17 template <typename T, precision P> 18 const tvec3<T, P> tvec3<T, P>::Z(static_cast<T>(0), static_cast<T>(0), static_cast<T>(1)); 20 template <typename T, precision P> 21 const tvec3<T, P> tvec3<T, P>::XY(static_cast<T>(1), static_cast<T>(1), static_cast<T>(0)); [all …]
|
D | type_vec4.hpp | 18 template <typename T, precision P = defaultp> 21 // -- Implementation detail -- 24 typedef tvec4<T, P> type; 25 typedef tvec4<bool, P> bool_type; 27 // -- Data -- 35 # pragma GCC diagnostic ignored "-Wpedantic" 39 # pragma clang diagnostic ignored "-Wgnu-anonymous-struct" 40 # pragma clang diagnostic ignored "-Wnested-anon-types" 47 struct { T s, t, p, q; }; member 49 typename detail::storage<T, sizeof(T) * 4, detail::is_aligned<P>::value>::type data; [all …]
|
/external/ImageMagick/www/Magick++/ |
D | Enumerations.html | 1 <?xml version="1.0" encoding="utf-8" ?> 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xht… 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 10 <div class="doc-section"> 11 <h1 style="text-align:center">Enumerations</h1> 15 …<p align="left"><img src="right_triangle.png" name="Graphic1" alt=">" align="bottom" width="15"… 16 … size="4"><font face="Helvetica, Arial"><font color="#ffffff">Contents</font></font></font></b></p> 21 <li><p style="margin-bottom: 0in"><a href="Enumerations.html#ChannelType">ChannelType</a> 22 </p></li> 23 <li><p style="margin-bottom: 0in"><a href="Enumerations.html#ClassType">ClassType</a> [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/json/ |
D | parser.rl | 8 ** program it a bit to handle context-free languages like JSON, by using 14 ** - handling of unicode escape sequences (including high surrogate pairs). 15 ** - properly check and report errors for unknown fields, stack overflow, 17 ** - handling of base64 sequences with padding characters. 18 ** - handling of push-back (non-success returns from sink functions). 19 ** - handling of keys/escape-sequences/etc that span input buffers. 51 static bool is_top_level(upb_json_parser *p); 52 static bool is_wellknown_msg(upb_json_parser *p, upb_wellknowntype_t type); 53 static bool is_wellknown_field(upb_json_parser *p, upb_wellknowntype_t type); 55 static bool is_number_wrapper_object(upb_json_parser *p); [all …]
|
/external/sonivox/docs/JET_Creator_User_Manual_files/ |
D | header.htm | 1 <html xmlns:v="urn:schemas-microsoft-com:vml" 2 xmlns:o="urn:schemas-microsoft-com:office:office" 3 xmlns:w="urn:schemas-microsoft-com:office:word" 4 xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" 5 xmlns:st1="urn:schemas-microsoft-com:office:smarttags" 6 xmlns="http://www.w3.org/TR/REC-html40"> 9 <meta http-equiv=Content-Type content="text/html; charset=windows-1252"> 13 <link id=Main-File rel=Main-File href="../JET%20Creator%20User%20Manual.htm"> 14 <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags" 16 <!--[if gte mso 9]><xml> [all …]
|
/external/mesa3d/src/gallium/auxiliary/translate/ |
D | translate_sse.c | 18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 137 return (const char *) b - (const char *) a; in get_offset() 142 get_const(struct translate_sse *p, unsigned id) in get_const() argument 147 if (p->const_to_reg[id] >= 0) in get_const() 148 return x86_make_reg(file_XMM, p->const_to_reg[id]); in get_const() 151 if (p->reg_to_const[i] < 0) in get_const() 157 --i; in get_const() 161 if (p->reg_to_const[i] >= 0) in get_const() 162 p->const_to_reg[p->reg_to_const[i]] = -1; in get_const() 164 p->reg_to_const[i] = id; in get_const() [all …]
|
/external/cronet/third_party/boringssl/src/crypto/fipsmodule/ec/ |
D | ec_scalar_base_mult_tests.txt | 6 Curve = P-224 7 # N = -64 12 Curve = P-224 13 # N = -63 18 Curve = P-224 19 # N = -62 24 Curve = P-224 25 # N = -61 30 Curve = P-224 31 # N = -60 [all …]
|
/external/boringssl/src/crypto/fipsmodule/ec/ |
D | ec_scalar_base_mult_tests.txt | 6 Curve = P-224 7 # N = -64 12 Curve = P-224 13 # N = -63 18 Curve = P-224 19 # N = -62 24 Curve = P-224 25 # N = -61 30 Curve = P-224 31 # N = -60 [all …]
|
/external/compiler-rt/test/builtins/Unit/ppc/ |
D | floatditf_test.h | 8 { INT64_C(0x0000000000000061), 0x1.84p+6, 0x0p+0 }, 9 { INT64_C(0xffffffffffffff9e), -0x1.88p+6, 0x0p+0 }, 10 { INT64_C(0x0000000000000062), 0x1.88p+6, 0x0p+0 }, 11 { INT64_C(0xffffffffffffff9d), -0x1.8cp+6, 0x0p+0 }, 13 { INT64_C(0xfffffffffffffbfc), -0x1.01p+10, 0x0p+0 }, 14 { INT64_C(0x000000000000040a), 0x1.028p+10, 0x0p+0 }, 15 { INT64_C(0xfffffffffffffbf5), -0x1.02cp+10, 0x0p+0 }, 16 { INT64_C(0x000000000000040c), 0x1.03p+10, 0x0p+0 }, 17 { INT64_C(0xfffffffffffffbf3), -0x1.034p+10, 0x0p+0 }, 18 { INT64_C(0x000000000000040e), 0x1.038p+10, 0x0p+0 }, [all …]
|
D | qsub_test.c | 30 { 0.0, 0.0, -0.0, 0.0, 0.0, 0.0 }, 31 { -0.0, 0.0, -0.0, 0.0, 0.0, 0.0 }, 33 { -0.0, 0.0, 0.0, 0.0, -0.0, 0.0 }, 35 { INFINITY, 0.0, -0.0, 0.0, INFINITY, 0.0 }, 36 { -INFINITY, 0.0, -0.0, 0.0, -INFINITY, 0.0 }, 38 { -INFINITY, 0.0, 0.0, 0.0, -INFINITY, 0.0 }, 39 { INFINITY, 0.0, -1.0, 0.0, INFINITY, 0.0 }, 40 { -INFINITY, 0.0, -1.0, 0.0, -INFINITY, 0.0 }, 42 { -INFINITY, 0.0, 1.0, 0.0, -INFINITY, 0.0 }, 43 { INFINITY, 0.0, -HUGE, 0.0, INFINITY, 0.0 }, [all …]
|
D | qadd_test.c | 31 { -0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }, 32 { 0.0, 0.0, -0.0, 0.0, 0.0, 0.0 }, 33 { -0.0, 0.0, -0.0, 0.0, -0.0, 0.0 }, 36 { -INFINITY, 0.0, 0.0, 0.0, -INFINITY, 0.0 }, 37 { INFINITY, 0.0, -0.0, 0.0, INFINITY, 0.0 }, 38 { -INFINITY, 0.0, -0.0, 0.0, -INFINITY, 0.0 }, 40 { -INFINITY, 0.0, 1.0, 0.0, -INFINITY, 0.0 }, 41 { INFINITY, 0.0, -1.0, 0.0, INFINITY, 0.0 }, 42 { -INFINITY, 0.0, -1.0, 0.0, -INFINITY, 0.0 }, 44 { -INFINITY, 0.0, HUGE, 0.0, -INFINITY, 0.0 }, [all …]
|
/external/python/pycparser/pycparser/ |
D | c_parser.py | 1 #------------------------------------------------------------------------------ 8 #------------------------------------------------------------------------------ 44 to save the re-generation of the lexer table on 54 some tests to avoid re-generating the table, make 63 to save the re-generation of the parser table on 119 # Stack of scopes for keeping track of symbols. _scope_stack[-1] is 154 ######################-- PRIVATE --###################### 166 if not self._scope_stack[-1].get(name, True): 168 "Typedef %r previously declared as non-typedef " 170 self._scope_stack[-1][name] = True [all …]
|
/external/sonivox/docs/JET_Authoring_Guidelines_files/ |
D | header.htm | 1 <html xmlns:v="urn:schemas-microsoft-com:vml" 2 xmlns:o="urn:schemas-microsoft-com:office:office" 3 xmlns:w="urn:schemas-microsoft-com:office:word" 4 xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" 5 xmlns:st1="urn:schemas-microsoft-com:office:smarttags" 6 xmlns="http://www.w3.org/TR/REC-html40"> 9 <meta http-equiv=Content-Type content="text/html; charset=windows-1252"> 13 <link id=Main-File rel=Main-File href="../JET%20Authoring%20Guidelines.htm"> 14 <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags" 16 <!--[if gte mso 9]><xml> [all …]
|
/external/rust/crates/ring/src/ec/suite_b/ops/ |
D | p256_point_mul_tests.txt | 4 p = 18905f76a53755c679fb732b7762251075ba95fc5fedb60179e730d418a9143c, 7a8e00e6da77a27b2d17797722de0… 8 p = 18905f76a53755c679fb732b7762251075ba95fc5fedb60179e730d418a9143c, 7a8e00e6da77a27b2d17797722de0… 12 p = 18905f76a53755c679fb732b7762251075ba95fc5fedb60179e730d418a9143c, 7a8e00e6da77a27b2d17797722de0… 16 p = 18905f76a53755c679fb732b7762251075ba95fc5fedb60179e730d418a9143c, 7a8e00e6da77a27b2d17797722de0… 20 p = 18905f76a53755c679fb732b7762251075ba95fc5fedb60179e730d418a9143c, 7a8e00e6da77a27b2d17797722de0… 24 p = 18905f76a53755c679fb732b7762251075ba95fc5fedb60179e730d418a9143c, 7a8e00e6da77a27b2d17797722de0… 28 p = 18905f76a53755c679fb732b7762251075ba95fc5fedb60179e730d418a9143c, 7a8e00e6da77a27b2d17797722de0… 32 p = 18905f76a53755c679fb732b7762251075ba95fc5fedb60179e730d418a9143c, 7a8e00e6da77a27b2d17797722de0… 36 p = 18905f76a53755c679fb732b7762251075ba95fc5fedb60179e730d418a9143c, 7a8e00e6da77a27b2d17797722de0… 40 p = 18905f76a53755c679fb732b7762251075ba95fc5fedb60179e730d418a9143c, 7a8e00e6da77a27b2d17797722de0… [all …]
|