/external/pdfium/core/fxcrt/css/ |
D | cfx_cssdeclaration.cpp | 223 RetainPtr<CFX_CSSValue> pWidth; in AddProperty() local 229 if (ParseBorderProperty(pszValue, iValueLen, pWidth)) { in AddProperty() 230 AddPropertyHolder(CFX_CSSProperty::BorderLeftWidth, pWidth, in AddProperty() 232 AddPropertyHolder(CFX_CSSProperty::BorderTopWidth, pWidth, in AddProperty() 234 AddPropertyHolder(CFX_CSSProperty::BorderRightWidth, pWidth, in AddProperty() 236 AddPropertyHolder(CFX_CSSProperty::BorderBottomWidth, pWidth, in AddProperty() 242 if (ParseBorderProperty(pszValue, iValueLen, pWidth)) { in AddProperty() 243 AddPropertyHolder(CFX_CSSProperty::BorderLeftWidth, pWidth, in AddProperty() 249 if (ParseBorderProperty(pszValue, iValueLen, pWidth)) { in AddProperty() 250 AddPropertyHolder(CFX_CSSProperty::BorderTopWidth, pWidth, in AddProperty() [all …]
|
D | cfx_cssdeclaration.h | 64 RetainPtr<CFX_CSSValue>& pWidth) const;
|
/external/pdfium/xfa/fgas/font/ |
D | cfgas_gefont.cpp | 159 bool CFGAS_GEFont::GetCharWidth(wchar_t wUnicode, int32_t* pWidth) { in GetCharWidth() argument 161 *pWidth = it != m_CharWidthMap.end() ? it->second : 0; in GetCharWidth() 162 if (*pWidth == 65535) in GetCharWidth() 165 if (*pWidth > 0) in GetCharWidth() 173 *pWidth = m_pFont->GetGlyphWidth(iGlyph); in GetCharWidth() 174 if (*pWidth < 0) in GetCharWidth() 175 *pWidth = -1; in GetCharWidth() 176 } else if (pFont->GetCharWidth(wUnicode, pWidth)) { in GetCharWidth() 180 *pWidth = -1; in GetCharWidth() 183 m_CharWidthMap[wUnicode] = *pWidth; in GetCharWidth() [all …]
|
D | cfgas_gefont.h | 48 bool GetCharWidth(wchar_t wUnicode, int32_t* pWidth);
|
/external/mesa3d/src/amd/addrlib/src/core/ |
D | addrelemlib.cpp | 1137 UINT_32* pWidth, ///< [in,out] width in AdjustSurfaceInfo() argument 1148 ADDR_ASSERT(pWidth != NULL && pHeight != NULL && pBasePitch != NULL); in AdjustSurfaceInfo() 1199 if (pWidth && pHeight && pBasePitch) in AdjustSurfaceInfo() 1202 width = *pWidth; in AdjustSurfaceInfo() 1227 if ((*pWidth > PowTwoAlign(width, 8) * expandX) || in AdjustSurfaceInfo() 1245 *pWidth = (width == 0) ? 1 : width; in AdjustSurfaceInfo() 1267 UINT_32* pWidth, ///< [in,out] width in RestoreSurfaceInfo() argument 1278 ADDR_ASSERT(pWidth != NULL && pHeight != NULL); in RestoreSurfaceInfo() 1329 if (pWidth && pHeight) in RestoreSurfaceInfo() 1331 width = *pWidth; in RestoreSurfaceInfo() [all …]
|
D | addrlib2.cpp | 1372 UINT_32* pWidth, in ComputeBlockDimensionForSurf() argument 1384 ComputeThickBlockDimension(pWidth, pHeight, pDepth, bpp, resourceType, swizzleMode); in ComputeBlockDimensionForSurf() 1388 … ComputeThinBlockDimension(pWidth, pHeight, pDepth, bpp, numSamples, resourceType, swizzleMode); in ComputeBlockDimensionForSurf() 1411 UINT_32* pWidth, in ComputeThinBlockDimension() argument 1434 *pWidth = 1u << log2Width; in ComputeThinBlockDimension() 1451 UINT_32* pWidth, in ComputeBlockDimension() argument 1462 ComputeThickBlockDimension(pWidth, pHeight, pDepth, bpp, resourceType, swizzleMode); in ComputeBlockDimension() 1466 ComputeThinBlockDimension(pWidth, pHeight, pDepth, bpp, 0, resourceType, swizzleMode); in ComputeBlockDimension() 1489 UINT_32* pWidth, in ComputeThickBlockDimension() argument 1508 *pWidth = Block1K_3d[microBlockSizeTableIndex].w << averageAmp; in ComputeThickBlockDimension()
|
D | addrelemlib.h | 227 UINT_32* pBpp, UINT_32* pBasePitch, UINT_32* pWidth, UINT_32* pHeight); 231 UINT_32* pBpp, UINT_32* pWidth, UINT_32* pHeight);
|
D | addrlib2.h | 737 UINT_32* pWidth, 746 UINT_32* pWidth, 754 UINT_32* pWidth, 763 UINT_32* pWidth,
|
/external/libpng/contrib/gregbook/ |
D | readppm.c | 81 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight) in readpng_init() argument 121 *pWidth = width; in readpng_init()
|
D | readpng.c | 88 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight) in readpng_init() argument 141 *pWidth = width; in readpng_init()
|
D | readpng.h | 81 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight);
|
/external/aac/libSACdec/src/ |
D | sac_process.cpp | 342 int *RESTRICT pWidth, FIXP_SGL alpha__FDK, in M2ParamToKernelMult() argument 350 int i = pWidth[pb]; in M2ParamToKernelMult() 423 INT *pWidth = self->kernels_width; in SpatialDecApplyM2_Mode212() local 451 INT i = pWidth[pb]; in SpatialDecApplyM2_Mode212() 480 INT *pWidth = self->kernels_width; in SpatialDecApplyM2_Mode212_ResidualsPlusPhaseCoding() local 504 FDK_ASSERT((pWidth[0] + pWidth[1]) >= 3); in SpatialDecApplyM2_Mode212_ResidualsPlusPhaseCoding() 529 INT i = pWidth[pb]; in SpatialDecApplyM2_Mode212_ResidualsPlusPhaseCoding() 574 INT i = pWidth[pb]; in SpatialDecApplyM2_Mode212_ResidualsPlusPhaseCoding()
|
/external/pdfium/xfa/fde/ |
D | cfde_textout.cpp | 246 float* pWidth, in RetrieveLineWidth() argument 264 *pWidth += fLineWidth; in RetrieveLineWidth() 266 *pWidth = std::max(*pWidth, fLineWidth); in RetrieveLineWidth()
|
D | cfde_textout.h | 85 float* pWidth,
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/functionpasses/ |
D | lower_x86.cpp | 240 TargetWidth* pWidth, in GetRequestedWidthAndType() 272 *pWidth = W256; in GetRequestedWidthAndType() 275 *pWidth = W512; in GetRequestedWidthAndType() 279 *pWidth = W256; in GetRequestedWidthAndType()
|
/external/deqp/external/openglcts/scripts/ |
D | mustpass.py | 345 pWidth = config.surfacewidth + ',' 348 …on = pRotation, baseSeed = pSeed, fboConfig = pFBOConfig, surfaceWidth = pWidth, surfaceHeight = p…
|
/external/mesa3d/src/amd/addrlib/src/gfx9/ |
D | gfx9addrlib.h | 407 UINT_32* pWidth,
|
D | gfx9addrlib.cpp | 5004 UINT_32* pWidth, in ComputeThinBlockDimension() argument 5023 *pWidth = (Block256_2d[microBlockSizeTableIndex].w << widthAmp); in ComputeThinBlockDimension() 5035 *pWidth >>= q; in ComputeThinBlockDimension() 5040 *pWidth >>= (q + r); in ComputeThinBlockDimension()
|
/external/pdfium/xfa/fxfa/layout/ |
D | cxfa_contentlayoutprocessor.cpp | 60 float* pWidth, in UpdateWidgetSize() argument 68 if (*pWidth < -kXFALayoutPrecision) in UpdateWidgetSize() 69 *pWidth = pLayoutItem->m_sSize.width; in UpdateWidgetSize() 76 pNode->GetDocument()->GetNotify()->StartFieldDrawLayout(pNode, pWidth, in UpdateWidgetSize()
|