/third_party/mesa3d/src/mesa/main/ |
D | accum.c | 49 if (TEST_EQ_4V(tmp, ctx->Accum.ClearColor)) in _mesa_ClearAccum() 53 COPY_4FV( ctx->Accum.ClearColor, tmp ); in _mesa_ClearAccum() 95 const GLshort clearR = FLOAT_TO_SHORT(ctx->Accum.ClearColor[0]); in _mesa_clear_accum_buffer() 96 const GLshort clearG = FLOAT_TO_SHORT(ctx->Accum.ClearColor[1]); in _mesa_clear_accum_buffer() 97 const GLshort clearB = FLOAT_TO_SHORT(ctx->Accum.ClearColor[2]); in _mesa_clear_accum_buffer() 98 const GLshort clearA = FLOAT_TO_SHORT(ctx->Accum.ClearColor[3]); in _mesa_clear_accum_buffer() 449 ASSIGN_4V( ctx->Accum.ClearColor, 0.0, 0.0, 0.0, 0.0 ); in _mesa_init_accum()
|
D | attrib.c | 116 memcpy(&head->Accum, &ctx->Accum, sizeof(head->Accum)); in _mesa_PushAttrib() 696 _mesa_ClearAccum(attr->Accum.ClearColor[0], in _mesa_PopAttrib() 697 attr->Accum.ClearColor[1], in _mesa_PopAttrib() 698 attr->Accum.ClearColor[2], in _mesa_PopAttrib() 699 attr->Accum.ClearColor[3]); in _mesa_PopAttrib()
|
D | context.c | 1218 dst->Accum = src->Accum; in _mesa_copy_context()
|
D | mtypes.h | 3216 struct gl_accum_attrib Accum; member 3390 struct gl_accum_attrib Accum; /**< Accum buffer attributes */ member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | PoisonChecking.cpp | 99 Value *Accum = Ops[i++]; in buildOrChain() local 102 Accum = B.CreateOr(Accum, Ops[i]); in buildOrChain() 103 return Accum; in buildOrChain()
|
/third_party/cef/include/base/internal/ |
D | cef_bind_internal.h | 247 template <size_t n, typename List, typename... Accum> 251 template <size_t n, typename T, typename... List, typename... Accum> 252 struct TakeTypeListItemImpl<n, TypeList<T, List...>, Accum...> 253 : TakeTypeListItemImpl<n - 1, TypeList<List...>, Accum..., T> {}; 255 template <typename T, typename... List, typename... Accum> 256 struct TakeTypeListItemImpl<0, TypeList<T, List...>, Accum...> { 257 using Type = TypeList<Accum...>; 260 template <typename... Accum> 261 struct TakeTypeListItemImpl<0, TypeList<>, Accum...> { 262 using Type = TypeList<Accum...>;
|
/third_party/skia/third_party/externals/opengl-registry/extensions/SUN/ |
D | SUN_slice_accum.txt | 51 Accepted by the <op> parameter of Accum,
|
/third_party/openGLES/extensions/SUN/ |
D | SUN_slice_accum.txt | 51 Accepted by the <op> parameter of Accum,
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_scene_marker.txt | 124 DrawBuffer, Accum, Flush, and Finish generate an INVALID_OPERATION 175 CopyTexSubImage, DrawBuffer, Accum, Flush, or Finish is issued between
|
D | EXT_framebuffer_blit.txt | 159 the same object, or if the GL is in color index mode, Accum 552 10) How does Accum behave in the presence of separate READ/DRAW 555 Resolved: Accum returns INVALID_OPERATION if the 643 for Accum, per resolution of issue 10.
|
D | WGL_EXT_make_current_read.txt | 61 identical, Accum generates the error INVALID_OPERATION.
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_scene_marker.txt | 124 DrawBuffer, Accum, Flush, and Finish generate an INVALID_OPERATION 175 CopyTexSubImage, DrawBuffer, Accum, Flush, or Finish is issued between
|
D | EXT_framebuffer_blit.txt | 159 the same object, or if the GL is in color index mode, Accum 552 10) How does Accum behave in the presence of separate READ/DRAW 555 Resolved: Accum returns INVALID_OPERATION if the 643 for Accum, per resolution of issue 10.
|
D | WGL_EXT_make_current_read.txt | 61 identical, Accum generates the error INVALID_OPERATION.
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NVX/ |
D | NVX_conditional_render.txt | 98 (section 3.7), Clear (section 4.2.3), Accum (section 4.2.4), CopyPixels 183 RESOLVED: All rendering commands (DrawPixels, Bitmap, Clear, Accum,
|
/third_party/openGLES/extensions/NVX/ |
D | NVX_conditional_render.txt | 98 (section 3.7), Clear (section 4.2.3), Accum (section 4.2.4), CopyPixels 183 RESOLVED: All rendering commands (DrawPixels, Bitmap, Clear, Accum,
|
/third_party/mesa3d/docs/relnotes/ |
D | 6.1 | 69 ctx->Driver.Accum to point to _swrast_Accum). Adding new functions to
|
/third_party/openGLES/extensions/NV/ |
D | NV_conditional_render.txt | 140 (section 3.6), Bitmap (section 3.7), Clear (section 4.2.3), Accum 252 Bitmap, Accum, Color, CopyPixels, EvalMesh1 and EvalMesh2. 303 RESOLVED: All rendering commands (DrawPixels, Bitmap, Clear, Accum,
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_conditional_render.txt | 140 (section 3.6), Bitmap (section 3.7), Clear (section 4.2.3), Accum 252 Bitmap, Accum, Color, CopyPixels, EvalMesh1 and EvalMesh2. 303 RESOLVED: All rendering commands (DrawPixels, Bitmap, Clear, Accum,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | IRBuilder.h | 1381 Value *Accum = Ops[0]; in CreateAnd() local 1383 Accum = CreateAnd(Accum, Ops[i]); in CreateAnd() 1384 return Accum; in CreateAnd() 1407 Value *Accum = Ops[0]; in CreateOr() local 1409 Accum = CreateOr(Accum, Ops[i]); in CreateOr() 1410 return Accum; in CreateOr()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 4760 const SCEV *Accum = getAddExpr(Ops); in createAddRecFromPHIWithCastsImpl() local 4764 if (!isLoopInvariant(Accum, L)) in createAddRecFromPHIWithCastsImpl() 4821 getTruncateExpr(Accum, TruncTy), L, SCEV::FlagAnyWrap); in createAddRecFromPHIWithCastsImpl() 4875 const SCEV *AccumExtended = getExtendedExpr(Accum, /*CreateSignExtend=*/true); in createAddRecFromPHIWithCastsImpl() 4876 if (PredIsKnownFalse(Accum, AccumExtended)) { in createAddRecFromPHIWithCastsImpl() 4892 AppendPredicate(Accum, AccumExtended); in createAddRecFromPHIWithCastsImpl() 4898 auto *NewAR = getAddRecExpr(StartVal, Accum, L, SCEV::FlagAnyWrap); in createAddRecFromPHIWithCastsImpl() 4986 const SCEV *Accum = nullptr; in createSimpleAffineAddRec() local 4988 Accum = getSCEV(BO->RHS); in createSimpleAffineAddRec() 4990 Accum = getSCEV(BO->LHS); in createSimpleAffineAddRec() [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/SGI/ |
D | GLX_SGI_make_current_read.txt | 104 identical then Accum generates the error INVALID_OPERATION.
|
/third_party/openGLES/extensions/SGI/ |
D | GLX_SGI_make_current_read.txt | 104 identical then Accum generates the error INVALID_OPERATION.
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/cocoa/ |
D | gstglcontext_cocoa.m | 110 {kCGLPFAAccumSize, "Accum Size"},
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | Record.cpp | 1330 Init *Accum = Start; in Fold() local 1333 R.set(A, Accum); in Fold() 1335 Accum = Expr->resolveReferences(R); in Fold() 1337 return Accum; in Fold()
|