Home
last modified time | relevance | path

Searched refs:bufferWidth (Results 1 – 25 of 173) sorted by relevance

1234567

/dports/graphics/osgearth/osgearth-osgearth-2.10.1/src/osgEarthUtil/
H A DFlatteningLayer.cpp176 bufferWidth = rhs.bufferWidth; in Widths()
181 this->bufferWidth = bufferWidth; in Widths()
185 double bufferWidth; member
228 double bufferWidth = 0.0; in integratePolygons() local
250 bufferWidth = width.bufferWidth; in integratePolygons()
261 bufferWidth = width.bufferWidth; in integratePolygons()
870 double bufferWidth = 0.0; in createImplementation() local
893 Distance(bufferWidth), in createImplementation()
918 double bufferWidth = 0.0; in createImplementation() local
925 if (options().bufferWidth().isSet()) in createImplementation()
[all …]
/dports/security/ophcrack/ophcrack-3.8.0/src/ntproba/
H A DaliasMarkov.c176 for (i = 0; i < m0dp->bufferWidth*(MAX_MARKOV_SIZE-2); i++){ in getMark0BufferSizeMain()
272 …m0dp->buffer[(length-2)*m0dp->bufferWidth+level-length*m0dp->minImproba] != 0 && m0dp->buffer[(len… in fillAliasMarkov0BufferMain()
276 …if (m0dp->buffer[(length-2)*m0dp->bufferWidth+level-length*m0dp->minImproba] & (uint64_t)0xfffffff… in fillAliasMarkov0BufferMain()
278 …initAliasMarkov64Element(am64e, m0dp->buffer[(length-2)*m0dp->bufferWidth+level-length*m0dp->minIm… in fillAliasMarkov0BufferMain()
279 amdp->buffer[(length-2)*m0dp->bufferWidth+level-length*m0dp->minImproba] = bufferPointer; in fillAliasMarkov0BufferMain()
285 amdp->buffer[(length-2)*m0dp->bufferWidth+level-length*m0dp->minImproba] = bufferPointer; in fillAliasMarkov0BufferMain()
290 …amdp->buffer[(length-2)*m0dp->bufferWidth+level-length*m0dp->minImproba] = (unsigned int)0xfffffff… in fillAliasMarkov0BufferMain()
339 for (i = 0; i < m1dp->bufferWidth*(MAX_MARKOV_SIZE-2); i++){ in getMark1BufferSizeMain()
436 …vChar1][(length-2)*m1dp->bufferWidth+level-length*m1dp->minImproba] != 0 && m1dp->buffer[prevChar1… in fillAliasMarkov1BufferMain()
507 for (i = 0; i < m2dp->bufferWidth*(MAX_MARKOV_SIZE-2); i++){ in getMark2BufferSizeMain()
[all …]
H A Dmarkov.c83 m0dp->bufferWidth = 1+MAX_MARKOV_SIZE*(mis->meanImprobaMark0-minImproba); in initAMarkov0DynProg()
90 amdp->bufferWidth = 1+MAX_MARKOV_SIZE*(mis->meanImprobaMark0-minImproba); in initAMarkov0DynProg()
100 for (i = 0; i < m0dp->bufferWidth*(MAX_MARKOV_SIZE-2); i++) in initAMarkov0DynProg()
177 m0dp->buffer[(length-2)*m0dp->bufferWidth+level-length*m0dp->minImproba] = result; in getMarkov0DynProgSpace()
181 return m0dp->buffer[(length-2)*m0dp->bufferWidth+level-length*m0dp->minImproba]; in getMarkov0DynProgSpace()
244 m1dp->bufferWidth = 1+MAX_MARKOV_SIZE*(mis->meanImprobaMark0-minImproba); in initMarkov1DynProg()
246 amdp->bufferWidth = 1+MAX_MARKOV_SIZE*(mis->meanImprobaMark0-minImproba); in initMarkov1DynProg()
251 for (i = 0; i < m1dp->bufferWidth*(MAX_MARKOV_SIZE-2); i++) in initMarkov1DynProg()
394 m2dp->bufferWidth = 1+MAX_MARKOV_SIZE*(mis->meanImprobaMark0-minImproba); in initMarkov2DynProg()
396 amdp->bufferWidth = 1+MAX_MARKOV_SIZE*(mis->meanImprobaMark0-minImproba); in initMarkov2DynProg()
[all …]
H A Dmarkov.h66 unsigned int bufferWidth; member
76 unsigned int bufferWidth; member
86 unsigned int bufferWidth; member
96 unsigned int bufferWidth; member
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Core/HLE/
H A DsceJpeg.cpp82 static void __JpegCsc(u32 imageAddr, u32 yCbCrAddr, int widthHeight, int bufferWidth) { in __JpegCsc() argument
85 int lineWidth = std::min(width, bufferWidth); in __JpegCsc()
86 int skipEndOfLine = std::max(0, bufferWidth - lineWidth); in __JpegCsc()
121 static int sceJpegMJpegCsc(u32 imageAddr, u32 yCbCrAddr, int widthHeight, int bufferWidth) { in sceJpegMJpegCsc() argument
122 __JpegCsc(imageAddr, yCbCrAddr, widthHeight, bufferWidth); in sceJpegMJpegCsc()
126 …(ME, "sceJpegMJpegCsc(%08x, %08x, (%dx%d), %i)", imageAddr, yCbCrAddr, width, height, bufferWidth); in sceJpegMJpegCsc()
199 static int sceJpegCsc(u32 imageAddr, u32 yCbCrAddr, int widthHeight, int bufferWidth, int colourInf… in sceJpegCsc() argument
200 if (bufferWidth < 0 || widthHeight < 0){ in sceJpegCsc()
201 …WARN_LOG(ME, "sceJpegCsc(%08x, %08x, %i, %i, %i)", imageAddr, yCbCrAddr, widthHeight, bufferWidth,… in sceJpegCsc()
205 __JpegCsc(imageAddr, yCbCrAddr, widthHeight, bufferWidth); in sceJpegCsc()
[all …]
/dports/emulators/ppsspp/ppsspp-1.12.3/Core/HLE/
H A DsceJpeg.cpp82 static void __JpegCsc(u32 imageAddr, u32 yCbCrAddr, int widthHeight, int bufferWidth) { in __JpegCsc() argument
85 int lineWidth = std::min(width, bufferWidth); in __JpegCsc()
86 int skipEndOfLine = std::max(0, bufferWidth - lineWidth); in __JpegCsc()
121 static int sceJpegMJpegCsc(u32 imageAddr, u32 yCbCrAddr, int widthHeight, int bufferWidth) { in sceJpegMJpegCsc() argument
122 __JpegCsc(imageAddr, yCbCrAddr, widthHeight, bufferWidth); in sceJpegMJpegCsc()
126 …(ME, "sceJpegMJpegCsc(%08x, %08x, (%dx%d), %i)", imageAddr, yCbCrAddr, width, height, bufferWidth); in sceJpegMJpegCsc()
199 static int sceJpegCsc(u32 imageAddr, u32 yCbCrAddr, int widthHeight, int bufferWidth, int colourInf… in sceJpegCsc() argument
200 if (bufferWidth < 0 || widthHeight < 0){ in sceJpegCsc()
201 …WARN_LOG(ME, "sceJpegCsc(%08x, %08x, %i, %i, %i)", imageAddr, yCbCrAddr, widthHeight, bufferWidth,… in sceJpegCsc()
205 __JpegCsc(imageAddr, yCbCrAddr, widthHeight, bufferWidth); in sceJpegCsc()
[all …]
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Core/HLE/
H A DsceJpeg.cpp82 static void __JpegCsc(u32 imageAddr, u32 yCbCrAddr, int widthHeight, int bufferWidth) { in __JpegCsc() argument
85 int lineWidth = std::min(width, bufferWidth); in __JpegCsc()
86 int skipEndOfLine = std::max(0, bufferWidth - lineWidth); in __JpegCsc()
121 static int sceJpegMJpegCsc(u32 imageAddr, u32 yCbCrAddr, int widthHeight, int bufferWidth) { in sceJpegMJpegCsc() argument
122 __JpegCsc(imageAddr, yCbCrAddr, widthHeight, bufferWidth); in sceJpegMJpegCsc()
126 …(ME, "sceJpegMJpegCsc(%08x, %08x, (%dx%d), %i)", imageAddr, yCbCrAddr, width, height, bufferWidth); in sceJpegMJpegCsc()
199 static int sceJpegCsc(u32 imageAddr, u32 yCbCrAddr, int widthHeight, int bufferWidth, int colourInf… in sceJpegCsc() argument
200 if (bufferWidth < 0 || widthHeight < 0){ in sceJpegCsc()
201 …WARN_LOG(ME, "sceJpegCsc(%08x, %08x, %i, %i, %i)", imageAddr, yCbCrAddr, widthHeight, bufferWidth,… in sceJpegCsc()
205 __JpegCsc(imageAddr, yCbCrAddr, widthHeight, bufferWidth); in sceJpegCsc()
[all …]
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/splix/src/
H A Dcompress.cpp194 unsigned long bufferWidth, bandSize, hardMarginXInB=13, hardMarginY=100; in _compressBandedJBIGPage() local
208 bufferWidth = page->width() & ~255; in _compressBandedJBIGPage()
209 if ((bufferWidth + 128) < page->width()) in _compressBandedJBIGPage()
210 bufferWidth += 256; in _compressBandedJBIGPage()
214 page->setWidth(bufferWidth); in _compressBandedJBIGPage()
215 bufferWidthInB = (bufferWidth + 7) / 8; in _compressBandedJBIGPage()
264 bufferWidth, bandHeight); in _compressBandedJBIGPage()
268 current = new Band(bandNumber, bufferWidth, bandHeight); in _compressBandedJBIGPage()
276 bufferWidth, bandHeight); in _compressBandedJBIGPage()
280 current = new Band(bandNumber, bufferWidth, bandHeight); in _compressBandedJBIGPage()
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/intf/video/pi/
H A Dvid_pi.cpp30 static int bufferWidth; variable
357 float a0 = (float)bufferWidth / (float)bufferHeight; in reinitTextures()
373 int bufferSize = bufferWidth * bufferHeight * bufferBpp; in reinitTextures()
443 bufferWidth = virtualWidth; in FbInit()
448 if (bufferHeight / ratio >= bufferWidth) in FbInit()
449 bufferWidth = bufferHeight / ratio; in FbInit()
451 bufferHeight = bufferWidth * ratio; in FbInit()
453 bufferWidth = bufferHeight / ratio; in FbInit()
455 fprintf(stderr, "W: %d; H: %d (%f ratio)\n", bufferWidth, bufferHeight, ratio); in FbInit()
/dports/graphics/blender/blender-2.91.0/source/blender/compositor/operations/
H A DCOM_KeyingBlurOperation.cpp47 const int bufferWidth = inputBuffer->getWidth(); in executePixel() local
53 const int start = max(0, x - this->m_size + 1), end = min(bufferWidth, x + this->m_size); in executePixel()
55 int bufferIndex = (y * bufferWidth + cx); in executePixel()
64 int bufferIndex = (cy * bufferWidth + x); in executePixel()
H A DCOM_KeyingClipOperation.cpp57 int bufferWidth = inputBuffer->getWidth(); in executePixel() local
60 float value = buffer[(y * bufferWidth + x)]; in executePixel()
64 end_x = min_ff(x + delta - 1, bufferWidth - 1), in executePixel()
80 int bufferIndex = (cy * bufferWidth + cx); in executePixel()
H A DCOM_DilateErodeOperation.cpp78 const int bufferWidth = BLI_rcti_size_x(rect); in executePixel() local
85 offset = ((yi - rect->ymin) * bufferWidth + (minx - rect->xmin)); in executePixel()
100 offset = ((yi - rect->ymin) * bufferWidth + (minx - rect->xmin)); in executePixel()
198 const int bufferWidth = BLI_rcti_size_x(rect); in executePixel() local
205 offset = ((yi - rect->ymin) * bufferWidth + (minx - rect->xmin)); in executePixel()
277 const int bufferWidth = BLI_rcti_size_x(rect); in executePixel() local
284 offset = ((yi - rect->ymin) * bufferWidth + (minx - rect->xmin)); in executePixel()
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/intf/video/macos/
H A DFBVideo.mm80 static int bufferWidth = 0;
114 bufferWidth = gameWidth;
117 int bufSize = bufferWidth * bufferHeight * nVidImageBPP;
135 textureWidth = bufferWidth;
139 textureHeight = bufferWidth;
142 NSSize screenSize = NSMakeSize((CGFloat)bufferWidth,
/dports/science/jmol/jmol-14.32.7/src/org/jmol/g3d/
H A DPlatform3D.java39 int bufferWidth, bufferHeight, bufferSize, bufferSizeT; field in Platform3D
93 bufferWidth = width; in allocateBuffers()
96 bufferSize = bufferWidth * bufferHeight; in allocateBuffers()
107 windowWidth = windowHeight = bufferWidth = bufferHeight = bufferSize = -1; in releaseBuffers()
/dports/audio/pms-devel/pms-c94e3c6/widgets/
H A Dtopbar.go113 func alignX(x, bufferWidth, textWidth, align int) int {
118 return x + (bufferWidth / 2) - (textWidth / 2)
120 return x + bufferWidth - textWidth
/dports/audio/visp-go/visp-2585747/widgets/
H A Dtopbar.go118 func alignX(x, bufferWidth, textWidth, align int) int { argument
123 return x + (bufferWidth / 2) - (textWidth / 2)
125 return x + bufferWidth - textWidth
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/GPU/Common/
H A DPresentationCommon.h100 void SourceTexture(Draw::Texture *texture, int bufferWidth, int bufferHeight);
101 void SourceFramebuffer(Draw::Framebuffer *fb, int bufferWidth, int bufferHeight);
121 …void CalculatePostShaderUniforms(int bufferWidth, int bufferHeight, int targetWidth, int targetHei…
H A DFramebufferManagerCommon.cpp331 …dsRecreate = needsRecreate || vfb->newWidth > vfb->bufferWidth || vfb->newWidth * 2 < vfb->bufferW… in DoSetRenderFrameBuffer()
1241 int oldWidth = vfb->bufferWidth; in ResizeFramebufFBO()
1245 vfb->bufferWidth = w; in ResizeFramebufFBO()
1253 vfb->bufferWidth = std::max((int)vfb->bufferWidth, w); in ResizeFramebufFBO()
1276 vfb->renderWidth = vfb->bufferWidth; in ResizeFramebufFBO()
1592 vfb->bufferWidth = vfb->width; in CreateRAMFramebuffer()
1621 if (v->bufferWidth == vfb->bufferWidth && v->bufferHeight == vfb->bufferHeight) { in FindDownloadTempBuffer()
1645 nvfb->bufferWidth = vfb->bufferWidth; in FindDownloadTempBuffer()
2036 tempVfb.bufferWidth = vfb->width; in GetFramebuffer()
2200 if (x + w >= vfb->bufferWidth) { in ReadFramebufferToMemory()
[all …]
/dports/emulators/ppsspp/ppsspp-1.12.3/GPU/Common/
H A DPresentationCommon.h100 void SourceTexture(Draw::Texture *texture, int bufferWidth, int bufferHeight);
101 void SourceFramebuffer(Draw::Framebuffer *fb, int bufferWidth, int bufferHeight);
121 …void CalculatePostShaderUniforms(int bufferWidth, int bufferHeight, int targetWidth, int targetHei…
H A DFramebufferManagerCommon.cpp331 …dsRecreate = needsRecreate || vfb->newWidth > vfb->bufferWidth || vfb->newWidth * 2 < vfb->bufferW… in DoSetRenderFrameBuffer()
1241 int oldWidth = vfb->bufferWidth; in ResizeFramebufFBO()
1245 vfb->bufferWidth = w; in ResizeFramebufFBO()
1253 vfb->bufferWidth = std::max((int)vfb->bufferWidth, w); in ResizeFramebufFBO()
1276 vfb->renderWidth = vfb->bufferWidth; in ResizeFramebufFBO()
1592 vfb->bufferWidth = vfb->width; in CreateRAMFramebuffer()
1621 if (v->bufferWidth == vfb->bufferWidth && v->bufferHeight == vfb->bufferHeight) { in FindDownloadTempBuffer()
1645 nvfb->bufferWidth = vfb->bufferWidth; in FindDownloadTempBuffer()
2036 tempVfb.bufferWidth = vfb->width; in GetFramebuffer()
2200 if (x + w >= vfb->bufferWidth) { in ReadFramebufferToMemory()
[all …]
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/GPU/Common/
H A DPresentationCommon.h100 void SourceTexture(Draw::Texture *texture, int bufferWidth, int bufferHeight);
101 void SourceFramebuffer(Draw::Framebuffer *fb, int bufferWidth, int bufferHeight);
121 …void CalculatePostShaderUniforms(int bufferWidth, int bufferHeight, int targetWidth, int targetHei…
H A DFramebufferManagerCommon.cpp331 …dsRecreate = needsRecreate || vfb->newWidth > vfb->bufferWidth || vfb->newWidth * 2 < vfb->bufferW… in DoSetRenderFrameBuffer()
1241 int oldWidth = vfb->bufferWidth; in ResizeFramebufFBO()
1245 vfb->bufferWidth = w; in ResizeFramebufFBO()
1253 vfb->bufferWidth = std::max((int)vfb->bufferWidth, w); in ResizeFramebufFBO()
1276 vfb->renderWidth = vfb->bufferWidth; in ResizeFramebufFBO()
1592 vfb->bufferWidth = vfb->width; in CreateRAMFramebuffer()
1621 if (v->bufferWidth == vfb->bufferWidth && v->bufferHeight == vfb->bufferHeight) { in FindDownloadTempBuffer()
1645 nvfb->bufferWidth = vfb->bufferWidth; in FindDownloadTempBuffer()
2036 tempVfb.bufferWidth = vfb->width; in GetFramebuffer()
2200 if (x + w >= vfb->bufferWidth) { in ReadFramebufferToMemory()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/macosx/native/libawt_lwawt/java2d/metal/
H A DMTLLayer.h40 float bufferWidth; variable
51 @property (readwrite, assign) float bufferWidth;
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/scumm/he/moonbase/
H A Ddistortion.cpp130 void Moonbase::blitDistortion(byte *bufferData, const int bufferWidth, const int bufferHeight, cons… in blitDistortion() argument
133 Common::Rect dstLimitsRect(bufferWidth, bufferHeight); in blitDistortion()
180 …dstBitmap.init(bufferWidth, bufferHeight, bufferPitch, bufferData, Graphics::PixelFormat(2, 5, 5, … in blitDistortion()
183 …srcBitmap.init(bufferWidth, bufferHeight, bufferPitch, sourcePixels, Graphics::PixelFormat(2, 5, 5… in blitDistortion()
/dports/games/scummvm/scummvm-2.5.1/engines/scumm/he/moonbase/
H A Ddistortion.cpp130 void Moonbase::blitDistortion(byte *bufferData, const int bufferWidth, const int bufferHeight, cons… in blitDistortion() argument
133 Common::Rect dstLimitsRect(bufferWidth, bufferHeight); in blitDistortion()
180 …dstBitmap.init(bufferWidth, bufferHeight, bufferPitch, bufferData, Graphics::PixelFormat(2, 5, 5, … in blitDistortion()
183 …srcBitmap.init(bufferWidth, bufferHeight, bufferPitch, sourcePixels, Graphics::PixelFormat(2, 5, 5… in blitDistortion()

1234567