/external/swiftshader/include/Direct3D/ |
D | d3d8.h | 50 /* {1DD9E8DA-1C77-4d40-B0CF-98FEFDFF9512} */ 54 /* {7385E5DF-8FE8-41D5-86B6-D7B48547B6CF} */ 58 /* {1B36BB7B-09B7-410a-B445-7D1430D7B33F} */ 62 /* {B4211CFA-51B9-4a9f-AB78-DB99B2BB678E} */ 66 /* {E4CDD575-2866-4f01-B12E-7EECE1EC9358} */ 70 /* {3EE5B968-2ACA-4c34-8BB5-7E0C3D19B750} */ 74 /* {4B8AAAFA-140F-42ba-9131-597EAFAA2EAD} */ 78 /* {8AEEEAC7-05F9-44d4-B591-000B0DF1CB95} */ 82 /* {0E689C9A-053D-44a0-9D92-DB0E3D750F86} */ 86 /* {B96EEBCA-B326-4ea5-882F-2FF5BAE021DD} */ [all …]
|
/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 2018-07-04 : 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 2018-12-29 : 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 2018-12-29: 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 …]
|
D | LzFind.c | 1 /* LzFind.c -- Match finder for LZ algorithms 2 2018-07-08 : Igor Pavlov : Public domain */ 14 #define kNormalizeMask (~(UInt32)(kNormalizeStepMin - 1)) 19 static void LzInWindow_Free(CMatchFinder *p, ISzAllocPtr alloc) in LzInWindow_Free() argument 21 if (!p->directInput) in LzInWindow_Free() 23 ISzAlloc_Free(alloc, p->bufferBase); in LzInWindow_Free() 24 p->bufferBase = NULL; in LzInWindow_Free() 30 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAllocPtr alloc) in LzInWindow_Create() argument 32 UInt32 blockSize = p->keepSizeBefore + p->keepSizeAfter + keepSizeReserv; in LzInWindow_Create() 33 if (p->directInput) in LzInWindow_Create() [all …]
|
D | MtDec.c | 1 /* MtDec.c -- Multi-thread Decoder 2 2018-07-04 : Igor Pavlov : Public domain */ 26 void MtProgress_Init(CMtProgress *p, ICompressProgress *progress) in MtProgress_Init() argument 28 p->progress = progress; in MtProgress_Init() 29 p->res = SZ_OK; in MtProgress_Init() 30 p->totalInSize = 0; in MtProgress_Init() 31 p->totalOutSize = 0; in MtProgress_Init() 35 SRes MtProgress_Progress_ST(CMtProgress *p) in MtProgress_Progress_ST() argument 37 if (p->res == SZ_OK && p->progress) in MtProgress_Progress_ST() 38 if (ICompressProgress_Progress(p->progress, p->totalInSize, p->totalOutSize) != SZ_OK) in MtProgress_Progress_ST() [all …]
|
D | XzEnc.c | 1 /* XzEnc.c -- Xz Encode 2 2018-07-04 : Igor Pavlov : Public domain */ 30 #define XZ_GET_PAD_SIZE(dataSize) ((4 - ((unsigned)(dataSize) & 3)) & 3) 32 /* max pack size for LZMA2 block + check-64bytrs: */ 38 #define XzBlock_ClearFlags(p) (p)->flags = 0; argument 39 #define XzBlock_SetNumFilters(p, n) (p)->flags |= ((n) - 1); argument 40 #define XzBlock_SetHasPackSize(p) (p)->flags |= XZ_BF_PACK_SIZE; argument 41 #define XzBlock_SetHasUnpackSize(p) (p)->flags |= XZ_BF_UNPACK_SIZE; argument 69 static SRes XzBlock_WriteHeader(const CXzBlock *p, ISeqOutStream *s) in XzBlock_WriteHeader() argument 75 header[pos++] = p->flags; in XzBlock_WriteHeader() [all …]
|
D | Ppmd7.c | 1 /* Ppmd7.c -- PPMdH codec 2 2018-07-04 : Igor Pavlov : Public domain 18 #define U2I(nu) (p->Units2Indx[(size_t)(nu) - 1]) 19 #define I2U(indx) (p->Indx2Units[indx]) 24 #define REF(ptr) ((UInt32)((Byte *)(ptr) - (p)->Base)) 29 #define CTX(ref) ((CPpmd7_Context *)Ppmd7_GetContext(p, ref)) 30 #define STATS(ctx) Ppmd7_GetStats(p, ctx) 32 #define SUFFIX(ctx) CTX((ctx)->Suffix) 57 #define NODE(offs) ((CPpmd7_Node *)(p->Base + (offs))) 60 void Ppmd7_Construct(CPpmd7 *p) in Ppmd7_Construct() argument [all …]
|
D | Lzma2Dec.c | 1 /* Lzma2Dec.c -- LZMA2 Decoder 2 2018-07-04 : Igor Pavlov : Public domain */ 17 00000000 - End of data 18 00000001 U U - Uncompressed, reset dic, need reset state and set new prop 19 00000010 U U - Uncompressed, no reset 20 100uuuuu U U P P - LZMA, no reset 21 101uuuuu U U P P - LZMA, reset state 22 110uuuuu U U P P S - LZMA, reset state + set new prop 23 111uuuuu U U P P S - LZMA, reset state + set new prop, reset dic 25 u, U - Unpack Size [all …]
|
D | Bcj2.c | 1 /* Bcj2.c -- BCJ2 Decoder (Converter for x86 code) 2 2018-04-28 : Igor Pavlov : Public domain */ 16 #define _IF_BIT_0 ttt = *prob; bound = (p->range >> kNumModelBits) * ttt; if (p->code < bound) 17 #define _UPDATE_0 p->range = bound; *prob = (CProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits)); 18 #define _UPDATE_1 p->range -= bound; p->code -= bound; *prob = (CProb)(ttt - (ttt >> kNumMoveBits)); 20 void Bcj2Dec_Init(CBcj2Dec *p) in Bcj2Dec_Init() argument 24 p->state = BCJ2_DEC_STATE_OK; in Bcj2Dec_Init() 25 p->ip = 0; in Bcj2Dec_Init() 26 p->temp[3] = 0; in Bcj2Dec_Init() 27 p->range = 0; in Bcj2Dec_Init() [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/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 | 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 …]
|
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 …]
|
/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/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/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/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/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/ |
D | stable_partition.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 32 bool operator()(const std::pair<int,int>& p) const in operator ()() 33 {return p.first & 1;} in operator ()() 41 typedef std::pair<int,int> P; in test() typedef 42 P array[] = in test() 44 P(0, 1), in test() 45 P(0, 2), in test() 46 P(1, 1), in test() 47 P(1, 2), in test() [all …]
|
/external/selinux/secilc/docs/ |
D | cil_constraint_statements.md | 5 --------- 22 <td align="left"><p><code>constrain</code></p></td> 23 <td align="left"><p>The <code>constrain</code> keyword.</p></td> 26 <td align="left"><p><code>classpermissionset_id</code></p></td> 27 …t"><p>A single named or anonymous <code>classpermissionset</code> or a single set of <code>classma… 30 <td align="left"><p><code>expression</code></p></td> 31 …p>There must be one constraint <code>expression</code> or one or more <code>expr</code>'s. The exp… 32 <p><code> (op u1 u2)</code></p> 33 <p><code> (role_op r1 r2)</code></p> 34 <p><code> (op t1 t2)</code></p> [all …]
|
/external/mesa3d/src/mesa/main/ |
D | ffvertex_prog.c | 20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 135 if ((key->varying_vp_inputs & VERT_BIT_COLOR0) && in check_active_shininess() 136 (key->light_color_material_mask & (1 << attr))) in check_active_shininess() 139 if (key->varying_vp_inputs & VERT_BIT_GENERIC(attr)) in check_active_shininess() 142 if (ctx->Light.Material.Attrib[attr][0] != 0.0F) in check_active_shininess() 151 const struct gl_program *fp = ctx->FragmentProgram._Current; in make_state_key() 160 key->need_eye_coords = ctx->_NeedEyeCoords; in make_state_key() 162 key->fragprog_inputs_read = fp->info.inputs_read; in make_state_key() 163 key->varying_vp_inputs = ctx->varying_vp_inputs; in make_state_key() 165 if (ctx->RenderMode == GL_FEEDBACK) { in make_state_key() [all …]
|
/external/mesa3d/src/mesa/x86/rtasm/ |
D | x86sse.c | 21 static void do_realloc( struct x86_function *p ) in do_realloc() argument 23 if (p->size == 0) { in do_realloc() 24 p->size = 1024; in do_realloc() 25 p->store = _mesa_exec_malloc(p->size); in do_realloc() 26 p->csr = p->store; in do_realloc() 29 unsigned used = p->csr - p->store; in do_realloc() 30 unsigned char *tmp = p->store; in do_realloc() 31 p->size *= 2; in do_realloc() 32 p->store = _mesa_exec_malloc(p->size); in do_realloc() 33 memcpy(p->store, tmp, used); in do_realloc() [all …]
|
/external/mesa3d/src/gallium/auxiliary/rtasm/ |
D | rtasm_x86sse.c | 3 * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. 92 debug_printf( "\n%4x %14s ", p->csr - p->store, foo ); \ 140 static void do_realloc( struct x86_function *p ) in do_realloc() argument 142 if (p->store == p->error_overflow) { in do_realloc() 143 p->csr = p->store; in do_realloc() 145 else if (p->size == 0) { in do_realloc() 146 p->size = 1024; in do_realloc() 147 p->store = rtasm_exec_malloc(p->size); in do_realloc() 148 p->csr = p->store; in do_realloc() 151 uintptr_t used = pointer_to_uintptr( p->csr ) - pointer_to_uintptr( p->store ); in do_realloc() [all …]
|