/third_party/backends/backend/ |
H A D | niash_core.c | 445 WriteRegWord (iHandle, 0x12, pParams->iWidth - 1); in InitNiash00014() 522 WriteRegWord (iHandle, 0x12, pParams->iWidth); in InitNiash00019() 575 iWidthHW = pParams->iWidth * (HW_DPI / pParams->iDpi); in InitNiashCommon() 618 iMaxLevel = MIN (pHWParams->iBufferSize / pParams->iWidth, 250); in InitNiashCommon() 665 if (pParams->iWidth <= 0) in InitScan() 667 DBG (DBG_ERR, "Invalid width (%d)\n", pParams->iWidth); in InitScan() 844 unsigned char *pabBlu, int iWidth, SANE_Bool iReversedHead, in _UnscrambleLine() 855 for (i = 0; i < iWidth; i++) in _UnscrambleLine() 857 j = (iWidth - i) * 3; in _UnscrambleLine() 859 pabLine[j - 2] = pabGrn[i + iWidth]; in _UnscrambleLine() 842 _UnscrambleLine(unsigned char *pabLine, unsigned char *pabRed, unsigned char *pabGrn, unsigned char *pabBlu, int iWidth, SANE_Bool iReversedHead, int iScaleDownDpi, int iBufWeight) _UnscrambleLine() argument 988 CircBufferInit(int iHandle, TDataPipe * p, int iWidth, int iHeight, int iMisAlignment, SANE_Bool iReversedHead, int iScaleDownDpi, int iScaleDownLpi) CircBufferInit() argument [all...] |
H A D | niash_core.h | 62 int iWidth; /* pixels */ member 81 int iWidth; /* number of pixels expected by SANE */ member 112 /* iWidth is in pixels of SANE */ 115 int iWidth, int iHeight,
|
H A D | hp5400.h | 124 int iWidth; /* in HW coordinates (units HW_LPI) */ member
|
H A D | hp5400_internal.c | 1022 HP5400_DBG (DBG_MSG, " width : %d\n", params->iWidth); in hp5400_scan() 1036 req.lenx = htons (params->iWidth); in hp5400_scan() 1064 DecodeImage (imageFile, planes, bpp, planes * bpp * params->iWidth, in hp5400_scan() 1084 params.iWidth = 2552; /* = 21.61cm * 300dpi */ in PreviewScan() 1156 req.lenx = htons (pParams->iWidth); /* = 22.78cm */ in InitScan()
|
H A D | mustek_usb2.c | 1273 unsigned int iWidth = BytesPerLine / 3; in AutoLevel() local 1290 TotalImgSize = iWidth * iHeight; in AutoLevel() 1309 DBG (DBG_INFO, "AutoLevel: iHeight = %d, iWidth = %d\n", iHeight, iWidth); in AutoLevel() 1313 tLines = j * iWidth * 3; in AutoLevel() 1316 for (i = 0; i < iWidth; i++) in AutoLevel() 1426 tLines = j * iWidth * 3; in AutoLevel() 1427 for (i = 0; i < iWidth; i++) in AutoLevel()
|
/third_party/mesa3d/src/gallium/frontends/wgl/ |
H A D | stw_ext_pbuffer.c | 72 int iWidth, in wglCreatePbufferARB() 98 if (iWidth <= 0 || iHeight <= 0) { in wglCreatePbufferARB() 147 if (iWidth > stw_dev->max_2d_length) { in wglCreatePbufferARB() 149 iWidth = stw_dev->max_2d_length; in wglCreatePbufferARB() 198 rect.right = rect.left + iWidth; in wglCreatePbufferARB() 237 assert(rect.right - rect.left == iWidth); in wglCreatePbufferARB() 70 wglCreatePbufferARB(HDC hCurrentDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList) wglCreatePbufferARB() argument
|
/third_party/lzma/CPP/Windows/Control/ |
H A D | CommandBar.h | 38 HWND InsertComboBox(HINSTANCE hInst, int iWidth, UINT dwStyle, WORD idComboBox, WORD iButton) { return ::CommandBar_InsertComboBox(_window, hInst, iWidth, dwStyle, idComboBox, iButton); }
in InsertComboBox() argument
|
/third_party/skia/third_party/externals/libpng/contrib/visupng/ |
H A D | PngFile.c | 300 int iWidth, int iHeight, png_color bkgColor) 347 png_set_IHDR(png_ptr, info_ptr, iWidth, iHeight, ciBitDepth, 361 ulRowBytes = iWidth * ciChannels; 299 PngSaveImage(PTSTR pstrFileName, png_byte *pDiData, int iWidth, int iHeight, png_color bkgColor) global() argument
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
H A D | vktDrawInvertedDepthRangesTests.cpp | 370 const auto iWidth = static_cast<int>(kImageExtent.width); in generateReferenceImage() local 374 MovePtr<tcu::TextureLevel> image (new tcu::TextureLevel(tcuFormat, iWidth, iHeight)); in generateReferenceImage() 417 for (int x = 0; x < iWidth; ++x) in generateReferenceImage() 602 const auto iWidth = static_cast<int>(kImageExtent.width); in iterate() local 604 const auto colorPixels = m_colorTargetImage->readSurface(queue, alloc, VK_IMAGE_LAYOUT_GENERAL, zeroOffset, iWidth, iHeight, VK_IMAGE_ASPECT_COLOR_BIT); in iterate() 605 const auto depthPixels = m_depthTargetImage->readSurface(queue, alloc, VK_IMAGE_LAYOUT_GENERAL, zeroOffset, iWidth, iHeight, VK_IMAGE_ASPECT_DEPTH_BIT); in iterate()
|
H A D | vktDrawMultiExtTests.cpp | 1242 const auto iWidth = static_cast<int>(imageExtent.width); in iterate() local 1257 tcu::ConstPixelBufferAccess colorAccess (colorVerificationFormat, iWidth, iHeight, 1, outputBufferData); in iterate() 1258 tcu::ConstPixelBufferAccess stencilAccess (tcuStencilFmt, iWidth, iHeight, 1, stencilOutBufferData); in iterate() 1261 tcu::TextureLevel refColorLevel (colorVerificationFormat, iWidth, iHeight); in iterate() 1263 tcu::TextureLevel refStencilLevel (tcuStencilFmt, iWidth, iHeight); in iterate() 1269 for (int x = 0; x < iWidth; ++x) in iterate() 1271 const auto pixelNumber = static_cast<deUint32>(y * iWidth + x); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/ |
H A D | vktDrawInvertedDepthRangesTests.cpp | 370 const auto iWidth = static_cast<int>(kImageExtent.width); in generateReferenceImage() local 374 MovePtr<tcu::TextureLevel> image (new tcu::TextureLevel(tcuFormat, iWidth, iHeight)); in generateReferenceImage() 417 for (int x = 0; x < iWidth; ++x) in generateReferenceImage() 602 const auto iWidth = static_cast<int>(kImageExtent.width); in iterate() local 604 const auto colorPixels = m_colorTargetImage->readSurface(queue, alloc, VK_IMAGE_LAYOUT_GENERAL, zeroOffset, iWidth, iHeight, VK_IMAGE_ASPECT_COLOR_BIT); in iterate() 605 const auto depthPixels = m_depthTargetImage->readSurface(queue, alloc, VK_IMAGE_LAYOUT_GENERAL, zeroOffset, iWidth, iHeight, VK_IMAGE_ASPECT_DEPTH_BIT); in iterate()
|
H A D | vktDrawMultiExtTests.cpp | 1240 const auto iWidth = static_cast<int>(imageExtent.width); in iterate() local 1255 tcu::ConstPixelBufferAccess colorAccess (colorVerificationFormat, iWidth, iHeight, 1, outputBufferData); in iterate() 1256 tcu::ConstPixelBufferAccess stencilAccess (tcuStencilFmt, iWidth, iHeight, 1, stencilOutBufferData); in iterate() 1259 tcu::TextureLevel refColorLevel (colorVerificationFormat, iWidth, iHeight); in iterate() 1261 tcu::TextureLevel refStencilLevel (tcuStencilFmt, iWidth, iHeight); in iterate() 1267 for (int x = 0; x < iWidth; ++x) in iterate() 1269 const auto pixelNumber = static_cast<deUint32>(y * iWidth + x); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/ |
H A D | vktMeshShaderMiscTestsEXT.cpp | 197 const auto iWidth = static_cast<int>(m_params->width); in generateSolidRefLevel() local 200 output.reset(new tcu::TextureLevel(tcuFormat, iWidth, iHeight)); in generateSolidRefLevel() 427 const auto iWidth = static_cast<int>(m_params->width); in generateReferenceLevel() local 430 const auto halfWidth = iWidth / 2; in generateReferenceLevel() 433 m_referenceLevel.reset(new tcu::TextureLevel(tcuFormat, iWidth, iHeight)); in generateReferenceLevel() 439 for (int x = 0; x < iWidth; ++x) in generateReferenceLevel() 764 const auto iWidth = static_cast<int>(m_params->width); in generateReferenceLevel() local 769 for (int x = 0; x < iWidth; ++x) in generateReferenceLevel() 923 const auto iWidth = static_cast<int>(m_params->width); in generateReferenceLevel() local 928 m_referenceLevel.reset(new tcu::TextureLevel(tcuFormat, iWidth, iHeigh in generateReferenceLevel() 1021 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local 2289 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local 3299 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local 3560 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local 4616 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local [all...] |
H A D | vktMeshShaderMiscTests.cpp | 193 const auto iWidth = static_cast<int>(m_params->width); in generateSolidRefLevel() local 196 output.reset(new tcu::TextureLevel(tcuFormat, iWidth, iHeight)); in generateSolidRefLevel() 422 const auto iWidth = static_cast<int>(m_params->width); in generateReferenceLevel() local 425 const auto halfWidth = iWidth / 2; in generateReferenceLevel() 428 m_referenceLevel.reset(new tcu::TextureLevel(tcuFormat, iWidth, iHeight)); in generateReferenceLevel() 434 for (int x = 0; x < iWidth; ++x) in generateReferenceLevel() 741 const auto iWidth = static_cast<int>(m_params->width); in generateReferenceLevel() local 746 for (int x = 0; x < iWidth; ++x) in generateReferenceLevel() 898 const auto iWidth = static_cast<int>(m_params->width); in generateReferenceLevel() local 903 m_referenceLevel.reset(new tcu::TextureLevel(tcuFormat, iWidth, iHeigh in generateReferenceLevel() 995 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local 2068 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/ |
H A D | vktMeshShaderMiscTestsEXT.cpp | 197 const auto iWidth = static_cast<int>(m_params->width); in generateSolidRefLevel() local 200 output.reset(new tcu::TextureLevel(tcuFormat, iWidth, iHeight)); in generateSolidRefLevel() 427 const auto iWidth = static_cast<int>(m_params->width); in generateReferenceLevel() local 430 const auto halfWidth = iWidth / 2; in generateReferenceLevel() 433 m_referenceLevel.reset(new tcu::TextureLevel(tcuFormat, iWidth, iHeight)); in generateReferenceLevel() 439 for (int x = 0; x < iWidth; ++x) in generateReferenceLevel() 746 const auto iWidth = static_cast<int>(m_params->width); in generateReferenceLevel() local 751 for (int x = 0; x < iWidth; ++x) in generateReferenceLevel() 905 const auto iWidth = static_cast<int>(m_params->width); in generateReferenceLevel() local 910 m_referenceLevel.reset(new tcu::TextureLevel(tcuFormat, iWidth, iHeigh in generateReferenceLevel() 1003 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local 2271 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local 3281 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local 3542 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local 4613 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local [all...] |
H A D | vktMeshShaderMiscTests.cpp | 193 const auto iWidth = static_cast<int>(m_params->width); in generateSolidRefLevel() local 196 output.reset(new tcu::TextureLevel(tcuFormat, iWidth, iHeight)); in generateSolidRefLevel() 422 const auto iWidth = static_cast<int>(m_params->width); in generateReferenceLevel() local 425 const auto halfWidth = iWidth / 2; in generateReferenceLevel() 428 m_referenceLevel.reset(new tcu::TextureLevel(tcuFormat, iWidth, iHeight)); in generateReferenceLevel() 434 for (int x = 0; x < iWidth; ++x) in generateReferenceLevel() 741 const auto iWidth = static_cast<int>(m_params->width); in generateReferenceLevel() local 746 for (int x = 0; x < iWidth; ++x) in generateReferenceLevel() 898 const auto iWidth = static_cast<int>(m_params->width); in generateReferenceLevel() local 903 m_referenceLevel.reset(new tcu::TextureLevel(tcuFormat, iWidth, iHeigh in generateReferenceLevel() 995 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local 2068 const auto iWidth = static_cast<int>(m_params->width); generateReferenceLevel() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineLogicOpTests.cpp | 450 const int iWidth = static_cast<int>(m_renderSize.x()); in verifyImage() local 453 tcu::TextureLevel referenceTexture (m_tcuFormat, iWidth, iHeight); in verifyImage() 465 for (int x = 0; x < iWidth; ++x) in verifyImage()
|
H A D | vktPipelineNoPositionTests.cpp | 692 const auto iWidth = static_cast<int>(extent.width); in iterate() local 698 const auto pixels = tcu::ConstPixelBufferAccess(tcuFormat, iWidth, iHeight, iDepth, reinterpret_cast<const void*>(verificationBufferPtr + layer * layerBytes)); in iterate() 701 for (int x = 0; x < iWidth; ++x) in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineLogicOpTests.cpp | 450 const int iWidth = static_cast<int>(m_renderSize.x()); in verifyImage() local 453 tcu::TextureLevel referenceTexture (m_tcuFormat, iWidth, iHeight); in verifyImage() 465 for (int x = 0; x < iWidth; ++x) in verifyImage()
|
H A D | vktPipelineNoPositionTests.cpp | 669 const auto iWidth = static_cast<int>(extent.width); in iterate() local 675 const auto pixels = tcu::ConstPixelBufferAccess(tcuFormat, iWidth, iHeight, iDepth, reinterpret_cast<const void*>(verificationBufferPtr + layer * layerBytes)); in iterate() 678 for (int x = 0; x < iWidth; ++x) in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/rasterization/ |
H A D | vktRasterizationFragShaderSideEffectsTests.cpp | 638 const auto iWidth = static_cast<int>(kFramebufferWidth); in iterate() local 641 tcu::ConstPixelBufferAccess colorPixels (tcuFormat, iWidth, iHeight, 1, colorImageBufferAlloc.getHostPtr()); in iterate() 643 tcu::PixelBufferAccess errorMask (tcuFormat, iWidth, iHeight, 1, errorMaskBuffer.data()); in iterate() 648 for (int i = 0; i < iWidth; ++i) in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/rasterization/ |
H A D | vktRasterizationFragShaderSideEffectsTests.cpp | 638 const auto iWidth = static_cast<int>(kFramebufferWidth); in iterate() local 641 tcu::ConstPixelBufferAccess colorPixels (tcuFormat, iWidth, iHeight, 1, colorImageBufferAlloc.getHostPtr()); in iterate() 643 tcu::PixelBufferAccess errorMask (tcuFormat, iWidth, iHeight, 1, errorMaskBuffer.data()); in iterate() 648 for (int i = 0; i < iWidth; ++i) in iterate()
|
/third_party/ffmpeg/libavcodec/ |
H A D | libopenh264dec.c | 131 ret = ff_set_dimensions(avctx, info.UsrData.sSystemBuffer.iWidth, info.UsrData.sSystemBuffer.iHeight); in svc_decode_frame()
|
/third_party/skia/src/utils/win/ |
H A D | SkWGL_win.cpp | 87 int iWidth, in createPbuffer() 90 return fCreatePbuffer(hDC, iPixelFormat, iWidth, iHeight, piAttribList); in createPbuffer() 85 createPbuffer(HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList) const createPbuffer() argument
|
/third_party/mesa3d/include/GL/ |
H A D | wglext.h | 156 typedef HPBUFFERARB (WINAPI * PFNWGLCREATEPBUFFERARBPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList); 162 HPBUFFERARB WINAPI wglCreatePbufferARB (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList); 430 typedef HPBUFFEREXT (WINAPI * PFNWGLCREATEPBUFFEREXTPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList); 436 HPBUFFEREXT WINAPI wglCreatePbufferEXT (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
|