Home
last modified time | relevance | path

Searched refs:rectWidth (Results 1 – 8 of 8) sorted by relevance

/external/libvncserver/libvncclient/
Dtight.c304 client->rectWidth = rw; in InitFilterCopyBPP()
328 for (x = 0; x < client->rectWidth; x++) { in FilterCopyBPP()
329 dst[y*client->rectWidth+x] = in FilterCopyBPP()
330 RGB24_TO_PIXEL32(client->buffer[(y*client->rectWidth+x)*3], in FilterCopyBPP()
331 client->buffer[(y*client->rectWidth+x)*3+1], in FilterCopyBPP()
332 client->buffer[(y*client->rectWidth+x)*3+2]); in FilterCopyBPP()
339 memcpy (dst, client->buffer, numRows * client->rectWidth * (BPP / 8)); in FilterCopyBPP()
370 pix[c] = client->tightPrevRow[c] + client->buffer[y*client->rectWidth*3+c]; in FilterGradient24()
373 dst[y*client->rectWidth] = RGB24_TO_PIXEL32(pix[0], pix[1], pix[2]); in FilterGradient24()
376 for (x = 1; x < client->rectWidth; x++) { in FilterGradient24()
[all …]
/external/opencv3/modules/cudalegacy/test/
DTestHypothesesGrow.cpp52 rectWidth(rectWidth_), in TestHypothesesGrow()
65 strOut << "rectWidth=" << rectWidth << std::endl; in toString()
122 this->rectWidth, this->rectHeight, this->rectScale, 0); in process()
131 this->rectWidth, this->rectHeight, this->rectScale); in process()
DTestHypothesesGrow.h55 Ncv32u rectWidth, Ncv32u rectHeight, Ncv32f rectScale,
69 Ncv32u rectWidth; variable
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
DPixmapPacker.java164 …int rectX = (int)rect.x, rectY = (int)rect.y, rectWidth = (int)rect.width, rectHeight = (int)rect.… in pack() local
168 …Gdx.gl.glTexSubImage2D(page.texture.glTarget, 0, rectX, rectY, rectWidth, rectHeight, image.getGLF… in pack()
182 page.image.drawPixmap(image, imageWidth - 1, 0, 1, 1, rectX + rectWidth, rectY - 1, 1, 1); in pack()
184 …page.image.drawPixmap(image, imageWidth - 1, imageHeight - 1, 1, 1, rectX + rectWidth, rectY + rec… in pack()
186 page.image.drawPixmap(image, 0, 0, imageWidth, 1, rectX, rectY - 1, rectWidth, 1); in pack()
187 …mage.drawPixmap(image, 0, imageHeight - 1, imageWidth, 1, rectX, rectY + rectHeight, rectWidth, 1); in pack()
189 …page.image.drawPixmap(image, imageWidth - 1, 0, 1, imageHeight, rectX + rectWidth, rectY, 1, rectH… in pack()
529 int rectWidth = (int)rect.width + padding, rectHeight = (int)rect.height + padding; in pack() local
536 if (row.x + rectWidth >= pageWidth) continue; in pack()
545 if (row.x + rectWidth < pageWidth) { in pack()
[all …]
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/
DNCVHaarObjectDetection.hpp84 …__host__ NCVStatus setRect(Ncv32u rectX, Ncv32u rectY, Ncv32u rectWidth, Ncv32u rectHeight, Ncv32u… in setRect()
86 …ncvAssertReturn(rectWidth <= HaarFeature64_CreateCheck_MaxRectField && rectHeight <= HaarFeature64… in setRect()
89 ((NcvRect8u*)&(this->_ui2.x))->width = (Ncv8u)rectWidth; in setRect()
100 …__device__ __host__ void getRect(Ncv32u *rectX, Ncv32u *rectY, Ncv32u *rectWidth, Ncv32u *rectHeig… in getRect()
105 *rectWidth = tmpRect.width; in getRect()
428 Ncv32u rectWidth,
439 Ncv32u rectWidth,
/external/opencv3/modules/cudalegacy/src/cuda/
DNCVHaarObjectDetection.cu226 Ncv32u *rectX, Ncv32u *rectY, Ncv32u *rectWidth, Ncv32u *rectHeight) in getFeature() argument
237 feature.getRect(rectX, rectY, rectWidth, rectHeight); in getFeature()
398 Ncv32u rectX, rectY, rectWidth, rectHeight; in applyHaarClassifierAnchorParallel() local
401 &rectWeight, &rectX, &rectY, &rectWidth, &rectHeight); in applyHaarClassifierAnchorParallel()
404 Ncv32u iioffsTR = iioffsTL + rectWidth; in applyHaarClassifierAnchorParallel()
406 Ncv32u iioffsBR = iioffsBL + rectWidth; in applyHaarClassifierAnchorParallel()
538 Ncv32u rectX, rectY, rectWidth, rectHeight; in applyHaarClassifierClassifierParallel() local
541 &rectWeight, &rectX, &rectY, &rectWidth, &rectHeight); in applyHaarClassifierClassifierParallel()
544 Ncv32u iioffsTR = iioffsTL + rectWidth; in applyHaarClassifierClassifierParallel()
546 Ncv32u iioffsBR = iioffsBL + rectWidth; in applyHaarClassifierClassifierParallel()
[all …]
/external/libvncserver/rfb/
Drfbclient.h256 int rectWidth, rectColors; member
/external/skia/src/core/
DSkAAClip.cpp931 int rectWidth = right - left; in quickContains() local
933 if (count >= rectWidth) { in quickContains()
936 rectWidth -= count; in quickContains()