/third_party/skia/src/core/ |
H A D | SkScalerContext.cpp | 621 SkMask dstMask = origGlyph.mask(); in getImage() local 622 SkIRect origBounds = dstMask.fBounds; in getImage() 625 if (srcMask.fBounds.fTop < dstMask.fBounds.fTop) { in getImage() 626 int32_t topDiff = dstMask.fBounds.fTop - srcMask.fBounds.fTop; in getImage() 628 srcMask.fBounds.fTop = dstMask.fBounds.fTop; in getImage() 630 if (dstMask.fBounds.fTop < srcMask.fBounds.fTop) { in getImage() 631 int32_t topDiff = srcMask.fBounds.fTop - dstMask.fBounds.fTop; in getImage() 632 dstMask.fImage += dstMask.fRowBytes * topDiff; in getImage() 633 dstMask in getImage() [all...] |
H A D | SkAAClip.cpp | 1862 static void upscaleBW2A8(SkMask* dstMask, const SkMask& srcMask) { 1864 SkASSERT(SkMask::kA8_Format == dstMask->fFormat); 1871 uint8_t* SK_RESTRICT dst = (uint8_t*)dstMask->fImage; 1872 const size_t dstRB = dstMask->fRowBytes;
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/ |
H A D | RangeTreeFactorizer.java | 127 // overlap with the existing edge (dstMask) (e.g. merging "[0-6]" into "[4-9]"). This is 147 int dstMask = dstEdge.getDigitMask(); in visit() 148 if ((strategy == REQUIRE_EQUAL_EDGES) ? (dstMask == srcMask) : (dstMask & ~srcMask) == 0) { in visit() 153 recursivelyMerge(srcTarget, dstTarget, path.extendByMask(dstMask)); in visit() 155 partialOverlap |= (dstMask & srcMask) != 0; in visit() 157 allDstMask |= dstMask; in visit()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | atifragshader.c | 132 GLuint dstMask, GLuint dstMod, GLuint arg1, in debug_op() 144 fprintf(stderr, ", %d", dstMask); in debug_op() 594 GLuint dstMask, GLuint dstMod, GLuint arg1, in _mesa_FragmentOpXATI() 729 * "The <dstMask> parameter specifies which of the color components in in _mesa_FragmentOpXATI() 738 curI->DstReg[optype].dstMask = WRITEMASK_W; in _mesa_FragmentOpXATI() 739 else if (dstMask == GL_NONE) in _mesa_FragmentOpXATI() 740 curI->DstReg[optype].dstMask = WRITEMASK_XYZ; in _mesa_FragmentOpXATI() 742 curI->DstReg[optype].dstMask = dstMask; in _mesa_FragmentOpXATI() 745 debug_op(optype, arg_count, op, dst, dstMask, dstMo in _mesa_FragmentOpXATI() 131 debug_op(GLint optype, GLuint arg_count, GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod) debug_op() argument 593 _mesa_FragmentOpXATI(GLint optype, GLuint arg_count, GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod) _mesa_FragmentOpXATI() argument 751 _mesa_ColorFragmentOp1ATI(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod) _mesa_ColorFragmentOp1ATI() argument 760 _mesa_ColorFragmentOp2ATI(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod) _mesa_ColorFragmentOp2ATI() argument 771 _mesa_ColorFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod) _mesa_ColorFragmentOp3ATI() argument [all...] |
H A D | pack.c | 178 GLubyte dstMask = 1 << (packing->SkipPixels & 0x7); in _mesa_pack_bitmap() local 184 *d |= dstMask; in _mesa_pack_bitmap() 193 if (dstMask == 128) { in _mesa_pack_bitmap() 194 dstMask = 1; in _mesa_pack_bitmap() 199 dstMask = dstMask << 1; in _mesa_pack_bitmap() 205 GLubyte dstMask = 128 >> (packing->SkipPixels & 0x7); in _mesa_pack_bitmap() local 211 *d |= dstMask; in _mesa_pack_bitmap() 220 if (dstMask == 1) { in _mesa_pack_bitmap() 221 dstMask in _mesa_pack_bitmap() 1260 GLubyte dstMask = 128; _mesa_unpack_image() local 1287 GLubyte dstMask = 128; _mesa_unpack_image() local [all...] |
H A D | atifragshader.h | 38 GLuint dstMask; member
|
/third_party/skia/src/ports/ |
H A D | SkFontHost_FreeType_common.cpp | 214 void copyFTBitmap(const FT_Bitmap& srcFTBitmap, SkMask& dstMask) { in copyFTBitmap() argument 215 SkASSERTF(dstMask.fBounds.width() == static_cast<int>(srcFTBitmap.width), in copyFTBitmap() 216 "dstMask.fBounds.width() = %d\n" in copyFTBitmap() 218 dstMask.fBounds.width(), in copyFTBitmap() 221 SkASSERTF(dstMask.fBounds.height() == static_cast<int>(srcFTBitmap.rows), in copyFTBitmap() 222 "dstMask.fBounds.height() = %d\n" in copyFTBitmap() 224 dstMask.fBounds.height(), in copyFTBitmap() 234 uint8_t* dst = dstMask.fImage; in copyFTBitmap() 235 const SkMask::Format dstFormat = static_cast<SkMask::Format>(dstMask.fFormat); in copyFTBitmap() 236 const size_t dstRowBytes = dstMask in copyFTBitmap() 1460 SkMask dstMask = glyph.mask(); generateGlyphImage() local 1519 SkMask dstMask = glyph.mask(); generateGlyphImage() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
H A D | vkWsiUtil.cpp | 1044 const auto dstMask = (m_explicitLayoutTransitions ? VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT : 0); in recordFrame() local 1046 const auto barrier = makeImageMemoryBarrier(srcMask, dstMask, m_attachmentLayouts[imageNdx], newLayout, m_aliasImages[imageNdx], range); in recordFrame() 1096 const auto dstMask = (m_explicitLayoutTransitions ? VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT : 0); in recordDeviceGroupFrame() local 1098 const auto barrier = makeImageMemoryBarrier(srcMask, dstMask, m_attachmentLayouts[imageNdx], newLayout, m_aliasImages[imageNdx], range); in recordDeviceGroupFrame()
|
/third_party/skia/src/pdf/ |
H A D | SkPDFDevice.cpp | 513 SkMask dstMask; in internalDrawPathWithFilter() local 515 if (!as_MFB(paint->getMaskFilter())->filterMask(&dstMask, sourceMask, ctm, &margin)) { in internalDrawPathWithFilter() 518 SkIRect dstMaskBounds = dstMask.fBounds; in internalDrawPathWithFilter() 519 sk_sp<SkImage> mask = mask_to_greyscale_image(&dstMask); in internalDrawPathWithFilter()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/ |
H A D | vktMemoryBindingTests.cpp | 380 const VkAccessFlags dstMask = static_cast<VkAccessFlags>(fromRes ? VK_ACCESS_TRANSFER_READ_BIT : VK_ACCESS_HOST_READ_BIT); in makeMemoryBarrierInfo() local 386 dstMask, // VkAccessFlags dstAccessMask; in makeMemoryBarrierInfo()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/ |
H A D | vktMemoryBindingTests.cpp | 380 const VkAccessFlags dstMask = static_cast<VkAccessFlags>(fromRes ? VK_ACCESS_TRANSFER_READ_BIT : VK_ACCESS_HOST_READ_BIT); in makeMemoryBarrierInfo() local 386 dstMask, // VkAccessFlags dstAccessMask; in makeMemoryBarrierInfo()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_atifs_to_nir.c | 412 if (inst->DstReg[optype].dstMask & (1 << i)) in compile_instruction()
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuCompressedTexture.cpp | 1414 deInt32 dstMask = (deInt32)(((deUint64)1 << dstBits) - 1); 1416 return (value | extendedBits) & dstMask;
|
/third_party/openGLES/api/GL/ |
H A D | glext.h | 6181 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); 6182 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); 6183 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); 6196 GLAPI void APIENTRY glColorFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); 6197 GLAPI void APIENTRY glColorFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); 6198 GLAPI void APIENTRY glColorFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod);
|
/third_party/mesa3d/include/GL/ |
H A D | glext.h | 6199 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); 6200 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); 6201 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); 6214 GLAPI void APIENTRY glColorFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); 6215 GLAPI void APIENTRY glColorFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); 6216 GLAPI void APIENTRY glColorFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod);
|
/third_party/skia/third_party/externals/swiftshader/include/GL/ |
H A D | glext.h | 6180 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); 6181 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); 6182 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); 6195 GLAPI void APIENTRY glColorFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); 6196 GLAPI void APIENTRY glColorFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); 6197 GLAPI void APIENTRY glColorFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod);
|
/third_party/skia/third_party/externals/opengl-registry/api/GL/ |
H A D | glext.h | 6179 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); 6180 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); 6181 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); 6194 GLAPI void APIENTRY glColorFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); 6195 GLAPI void APIENTRY glColorFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); 6196 GLAPI void APIENTRY glColorFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod);
|