OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:rectwidth
(Results
1 - 9
of
9
) sorted by null
/external/libvncserver/libvncclient/
tight.c
304
client->
rectWidth
= rw;
328
for (x = 0; x < client->
rectWidth
; x++) {
329
dst[y*client->
rectWidth
+x] =
330
RGB24_TO_PIXEL32(client->buffer[(y*client->
rectWidth
+x)*3],
331
client->buffer[(y*client->
rectWidth
+x)*3+1],
332
client->buffer[(y*client->
rectWidth
+x)*3+2]);
339
memcpy (dst, client->buffer, numRows * client->
rectWidth
* (BPP / 8));
370
pix[c] = client->tightPrevRow[c] + client->buffer[y*client->
rectWidth
*3+c];
373
dst[y*client->
rectWidth
] = RGB24_TO_PIXEL32(pix[0], pix[1], pix[2]);
376
for (x = 1; x < client->
rectWidth
; x++)
[
all
...]
/external/opencv3/modules/cudalegacy/test/
TestHypothesesGrow.cpp
52
rectWidth
(rectWidth_),
65
strOut << "
rectWidth
=" <<
rectWidth
<< std::endl;
122
this->
rectWidth
, this->rectHeight, this->rectScale, 0);
131
this->
rectWidth
, this->rectHeight, this->rectScale);
TestHypothesesGrow.h
55
Ncv32u
rectWidth
, Ncv32u rectHeight, Ncv32f rectScale,
69
Ncv32u
rectWidth
;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureFloatingTextDrawingPreview.java
169
final float
rectWidth
= textWidth + hPad * 2.0f;
173
Math.max(CoordinateUtils.x(mLastPointerCoords) -
rectWidth
/ 2.0f, 0.0f),
174
mParams.mDisplayWidth -
rectWidth
);
177
rectangle.set(rectX, rectY, rectX +
rectWidth
, rectY + rectHeight);
/frameworks/base/graphics/java/android/graphics/
Atlas.java
299
* @param freeWidth The
rectWidth
of the free space after packing a rectangle
301
* @param
rectWidth
The
rectWidth
of the rectangle that was packed in a cell
305
int
rectWidth
, int rectHeight);
312
int
rectWidth
, int rectHeight) {
313
return
rectWidth
* freeHeight > freeWidth * rectHeight;
321
int
rectWidth
, int rectHeight) {
322
return
rectWidth
* freeHeight <= freeWidth * rectHeight;
330
int
rectWidth
, int rectHeight) {
339
int
rectWidth
, int rectHeight)
[
all
...]
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/
NCVHaarObjectDetection.hpp
84
__host__ NCVStatus setRect(Ncv32u rectX, Ncv32u rectY, Ncv32u
rectWidth
, Ncv32u rectHeight, Ncv32u /*clsWidth*/, Ncv32u /*clsHeight*/)
86
ncvAssertReturn(
rectWidth
<= HaarFeature64_CreateCheck_MaxRectField && rectHeight <= HaarFeature64_CreateCheck_MaxRectField, NCV_HAAR_TOO_LARGE_FEATURES);
89
((NcvRect8u*)&(this->_ui2.x))->width = (Ncv8u)
rectWidth
;
100
__device__ __host__ void getRect(Ncv32u *rectX, Ncv32u *rectY, Ncv32u *
rectWidth
, Ncv32u *rectHeight)
105
*
rectWidth
= tmpRect.width;
428
Ncv32u
rectWidth
,
439
Ncv32u
rectWidth
,
/external/opencv3/modules/cudalegacy/src/cuda/
NCVHaarObjectDetection.cu
226
Ncv32u *rectX, Ncv32u *rectY, Ncv32u *
rectWidth
, Ncv32u *rectHeight)
237
feature.getRect(rectX, rectY,
rectWidth
, rectHeight);
398
Ncv32u rectX, rectY,
rectWidth
, rectHeight;
401
&rectWeight, &rectX, &rectY, &
rectWidth
, &rectHeight);
404
Ncv32u iioffsTR = iioffsTL +
rectWidth
;
406
Ncv32u iioffsBR = iioffsBL +
rectWidth
;
538
Ncv32u rectX, rectY,
rectWidth
, rectHeight;
541
&rectWeight, &rectX, &rectY, &
rectWidth
, &rectHeight);
544
Ncv32u iioffsTR = iioffsTL +
rectWidth
;
546
Ncv32u iioffsBR = iioffsBL +
rectWidth
;
[
all
...]
/external/skia/src/core/
SkAAClip.cpp
931
int
rectWidth
= right - left;
933
if (count >=
rectWidth
) {
936
rectWidth
-= count;
[
all
...]
/external/libvncserver/rfb/
rfbclient.h
256
int
rectWidth
, rectColors;
Completed in 174 milliseconds