Home
last modified time | relevance | path

Searched refs:maxx (Results 1 – 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/context/
DRTree.cpp57 int& maxx, int& maxy, in recomputeBounds() argument
66 maxx = children[0]->m_maxX; in recomputeBounds()
74 maxx = std::max(maxx, children[i]->m_maxX); in recomputeBounds()
79 int w = maxx - minx; in recomputeBounds()
86 int& maxx, int& maxy) in computeDeltaArea() argument
90 int newMaxX = std::max(maxx, node->m_maxX); in computeDeltaArea()
250 Node::Node(RTree* t, int minx, int miny, int maxx, int maxy, WebCore::RecordingData* payload) in Node() argument
258 , m_maxX(maxx) in Node()
561 bool Node::overlap(int minx, int miny, int maxx, int maxy) in overlap() argument
564 || maxx < m_minX in overlap()
[all …]
DRTree.h126 static Node* create(RTree* tree, int minx, int miny, int maxx, int maxy, in create() argument
128 return new (tree->allocateNode()) Node(tree, minx, miny, maxx, maxy, payload); in create()
134 void search(int minx, int miny, int maxx, int maxy, Vector<WebCore::RecordingData*>& list);
135 void remove(int minx, int miny, int maxx, int maxy);
141 Node(RTree* tree, int minx, int miny, int maxx, int maxy, WebCore::RecordingData* payload);
156 bool overlap(int minx, int miny, int maxx, int maxy);
157 bool inside(int minx, int miny, int maxx, int maxy);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
DParticleDepositionHeightMap.java143 int minx, maxx; in load() local
231 maxx = calderaX; in load()
244 tx = maxx; in load()
273 if (x + 1 > maxx) { in load()
274 maxx = x + 1; in load()
/external/skia/src/effects/
DSkEmbossMask.cpp101 int maxx = mask->fBounds.width() - 1; in Emboss() local
107 for (int x = 0; x <= maxx; x++) { in Emboss()
109 int nx = alpha[x + neq_to_one(x, maxx)] - alpha[x - nonzero_to_one(x)]; in Emboss()
/external/skia/legacy/src/effects/
DSkEmbossMask.cpp101 int maxx = mask->fBounds.width() - 1; in Emboss() local
107 for (int x = 0; x <= maxx; x++) { in Emboss()
109 int nx = alpha[x + neq_to_one(x, maxx)] - alpha[x - nonzero_to_one(x)]; in Emboss()
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
DUVCoordinatesGenerator.java283 float maxx = -Float.MAX_VALUE, minx = Float.MAX_VALUE; in getBoundingTube() local
294 maxx = x > maxx ? x : maxx; in getBoundingTube()
303 float radius = Math.max(maxx - minx, maxy - miny) * 0.5f; in getBoundingTube()
/external/opencv/cv/src/
Dcvsegmentation.cpp458 int minx, miny, maxx, maxy; in cvPyrMeanShiftFiltering() local
466 maxx = cvRound(x0 + sp); maxx = MIN(maxx, size.width-1); in cvPyrMeanShiftFiltering()
470 for( y = miny; y <= maxy; y++, ptr += sstep - (maxx-minx+1)*3 ) in cvPyrMeanShiftFiltering()
474 for( ; x + 3 <= maxx; x += 4, ptr += 12 ) in cvPyrMeanShiftFiltering()
502 for( ; x <= maxx; x++, ptr += 3 ) in cvPyrMeanShiftFiltering()
/external/qemu/distrib/sdl-1.2.15/src/video/os2fslib/
DSDL_os2fslib.c1350 int maxx, maxy; in os2fslib_CreateWMCursor_Win() local
1354 maxx = WinQuerySysValue(HWND_DESKTOP, SV_CXPOINTER); in os2fslib_CreateWMCursor_Win()
1358 if ((w>maxx) || (h>maxy)) in os2fslib_CreateWMCursor_Win()
1364 pchTemp = (char *) SDL_malloc((maxx + 7)/8 * maxy*2); in os2fslib_CreateWMCursor_Win()
1371 SDL_memset(pchTemp, 0, (maxx + 7)/8 * maxy*2); in os2fslib_CreateWMCursor_Win()
1376 bmi.cx = maxx; in os2fslib_CreateWMCursor_Win()
1389 bmih.cx = maxx; in os2fslib_CreateWMCursor_Win()
1395 pad = (maxx+7)/8 - run; in os2fslib_CreateWMCursor_Win()
1399 xptr = pchTemp + (maxx+7)/8 * (maxy-1-i); in os2fslib_CreateWMCursor_Win()
1400 aptr = pchTemp + (maxx+7)/8 * (maxy+maxy-1-i); in os2fslib_CreateWMCursor_Win()
[all …]
/external/qemu/distrib/sdl-1.2.15/test/
Dtestvidinfo.c49 int maxx; in RunBlitTests() local
53 maxx = (int)screen->w - bmp->w + 1; in RunBlitTests()
57 if ( maxx ) { in RunBlitTests()
58 dst.x = rand() % maxx; in RunBlitTests()
/external/qemu/distrib/sdl-1.2.15/src/video/
DSDL_cursor.c501 int x, minx, maxx; in SDL_DrawCursorSlow() local
516 maxx = area->x+area->w; in SDL_DrawCursorSlow()
529 if ( (x >= minx) && (x < maxx) ) { in SDL_DrawCursorSlow()
547 if ( (x >= minx) && (x < maxx) ) { in SDL_DrawCursorSlow()
/external/libvpx/libvpx/third_party/libyuv/source/
Dscale.c3509 int maxx = ((src_width - 1) << 16) - 1; in ScalePlaneBilinearSimple() local
3529 if (x > maxx) in ScalePlaneBilinearSimple()
3530 x = maxx; in ScalePlaneBilinearSimple()
/external/libyuv/files/source/
Dscale.cc2689 int maxx = (src_width > 1) ? ((src_width - 1) << 16) - 1 : 0; in ScalePlaneBilinearSimple() local
2710 if (x > maxx) in ScalePlaneBilinearSimple()
2711 x = maxx; in ScalePlaneBilinearSimple()