Searched defs:rect (Results 501 - 525 of 1054) sorted by relevance

<<21222324252627282930>>

/external/deqp/framework/platform/android/
H A DtcuAndroidNativeActivity.cpp94 static void onContentRectChangedCallback (ANativeActivity* activity, const ARect* rect) argument
96 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onContentRectChanged(rect);
203 void NativeActivity::onContentRectChanged (const ARect* rect) argument
205 DE_UNREF(rect);
/external/kernel-headers/original/uapi/linux/
H A Dv4l2-subdev.h58 * @rect: pad crop rectangle boundaries
63 struct v4l2_rect rect; member in struct:v4l2_subdev_crop
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_miptree.c90 struct nv30_rect *rect)
95 rect->w = u_minify(pt->width0, level) << mt->ms_x;
96 rect->w = util_format_get_nblocksx(pt->format, rect->w);
97 rect->h = u_minify(pt->height0, level) << mt->ms_y;
98 rect->h = util_format_get_nblocksy(pt->format, rect->h);
99 rect->d = 1;
100 rect->z = 0;
103 rect
88 define_rect(struct pipe_resource *pt, unsigned level, unsigned z, unsigned x, unsigned y, unsigned w, unsigned h, struct nv30_rect *rect) argument
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_transfer.c10 struct nv50_m2mf_rect rect[2]; member in struct:nv50_transfer
16 nv50_m2mf_rect_setup(struct nv50_m2mf_rect *rect, argument
24 rect->bo = mt->base.bo;
25 rect->domain = mt->base.domain;
26 rect->base = mt->level[l].offset;
27 rect->pitch = mt->level[l].pitch;
29 rect->width = w << mt->ms_x;
30 rect->height = h << mt->ms_y;
31 rect->x = x << mt->ms_x;
32 rect
[all...]
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_transfer.c10 struct nv50_m2mf_rect rect[2]; member in struct:nvc0_transfer
368 nv50_m2mf_rect_setup(&tx->rect[0], res, level, box->x, box->y, box->z);
373 size * tx->nlayers, NULL, &tx->rect[1].bo);
379 tx->rect[1].cpp = tx->rect[0].cpp;
380 tx->rect[1].width = tx->nblocksx;
381 tx->rect[1].height = tx->nblocksy;
382 tx->rect[1].depth = 1;
383 tx->rect[1].pitch = tx->base.stride;
384 tx->rect[
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_framebuffer.c170 SVGA3dRect rect; local
284 rect.x = fx;
285 rect.y = fy;
286 rect.w = fw;
287 rect.h = fh;
291 fabs((float)rect.x - fx),
292 fabs((float)rect.y - fy),
293 fabs((float)rect.w - fw),
294 fabs((float)rect.h - fh));
298 rect
465 SVGA3dRect rect; local
[all...]
/external/mesa3d/src/gallium/state_trackers/egl/gdi/
H A Dnative_gdi.c83 RECT rect; local
86 GetClientRect(gsurf->hWnd, &rect);
87 w = rect.right - rect.left;
88 h = rect.bottom - rect.top;
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpolygon.c192 float *rect)
211 rect[0] = minx;
212 rect[1] = miny;
213 rect[2] = maxx - minx;
214 rect[3] = maxy - miny;
191 polygon_bounding_rect(struct polygon *p, float *rect) argument
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_context.h62 struct nouveau_object *rect; member in struct:nouveau_hw_state
/external/opencv/cvaux/src/
H A Dcvface.cpp93 //class RFace(rect based face)
120 inline bool RFace::isPointInRect(CvPoint p,CvRect rect) argument
122 if ( (p.x >= rect.x) && (p.y >= rect.y) && (p.x <= rect.x + rect.width) && (p.y <= rect.y + rect.height) )
126 }//inline bool RFace::isPointInRect(CvPoint,CvRect rect)
172 }//inline bool RFace::CheckElem(CvRect rect)
305 CvRect rect = *(CvRect*)m_lppFoundedFaceFeatures[i][j].GetContour(); local
[all...]
H A Dcvfacedetection.cpp313 CvRect rect = pRect->r; local
314 if (rect.width >= 2*rect.height)
317 lpFaceTemplate1 = new MouthFaceTemplate(3,rect,3*(double)rect.width/(double)4,
318 3*(double)rect.width/(double)4,
319 (double)rect.width/(double)2,
320 (double)rect.width/(double)2);
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_pattern.cpp246 CFX_FloatRect rect; local
265 rect.UpdateRect(x, y);
267 rect.InitRect(x, y);
276 rect.Transform(pMatrix);
277 return rect;
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusMatrix.h52 Matrix(IN const RectF& rect, argument
57 lastResult = DllExports::GdipCreateMatrix3(&rect,
64 Matrix(IN const Rect& rect, argument
69 lastResult = DllExports::GdipCreateMatrix3I(&rect,
H A DGdiPlusRegion.h33 Region::Region(IN const RectF& rect) argument
37 lastResult = DllExports::GdipCreateRegionRect(&rect, &region);
43 Region::Region(IN const Rect& rect) argument
47 lastResult = DllExports::GdipCreateRegionRectI(&rect, &region);
137 Region::Intersect(IN const RectF& rect) argument
139 return SetStatus(DllExports::GdipCombineRegionRect(nativeRegion, &rect, CombineModeIntersect));
143 Region::Intersect(IN const Rect& rect) argument
145 return SetStatus(DllExports::GdipCombineRegionRectI(nativeRegion, &rect, CombineModeIntersect));
161 Region::Union(IN const RectF& rect) argument
163 return SetStatus(DllExports::GdipCombineRegionRect(nativeRegion, &rect, CombineModeUnio
167 Union(IN const Rect& rect) argument
185 Xor(IN const RectF& rect) argument
191 Xor(IN const Rect& rect) argument
209 Exclude(IN const RectF& rect) argument
215 Exclude(IN const Rect& rect) argument
234 Complement(IN const RectF& rect) argument
240 Complement(IN const Rect& rect) argument
286 GetBounds(OUT RectF* rect, IN const Graphics* g) const argument
295 GetBounds(OUT Rect* rect, IN const Graphics* g) const argument
392 IsVisible(IN const RectF& rect, IN const Graphics* g) const argument
421 IsVisible(IN const Rect& rect, IN const Graphics* g) const argument
[all...]
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_path.cpp16 CFX_ClipRgn::CFX_ClipRgn(const FX_RECT& rect) argument
19 m_Box = rect;
30 void CFX_ClipRgn::Reset(const FX_RECT& rect) argument
33 m_Box = rect;
36 void CFX_ClipRgn::IntersectRect(const FX_RECT& rect) argument
39 m_Box.Intersect(rect);
43 IntersectMaskRect(rect, m_Box, m_Mask);
47 void CFX_ClipRgn::IntersectMaskRect(FX_RECT rect, FX_RECT mask_rect, CFX_DIBitmapRef Mask) argument
51 m_Box = rect;
223 CFX_FloatRect rect;
[all...]
/external/pdfium/fpdfsdk/src/
H A Dfpdfdoc.cpp189 DLLEXPORT FPDF_BOOL STDCALL FPDFLink_GetAnnotRect(FPDF_LINK linkAnnot, FS_RECTF* rect) argument
191 if(!linkAnnot || !rect)
195 rect->left = rt.left;
196 rect->bottom = rt.bottom;
197 rect->right = rt.right;
198 rect->top = rt.top;
H A Dfpdfeditpage.cpp298 CPDF_Rect rect; local
299 pAnnot->GetRect(rect);
301 rect.Transform(&matrix);
305 pRectArray->SetAt(0,FX_NEW CPDF_Number(rect.left));
306 pRectArray->SetAt(1,FX_NEW CPDF_Number(rect.bottom));
307 pRectArray->SetAt(2,FX_NEW CPDF_Number(rect.right));
308 pRectArray->SetAt(3,FX_NEW CPDF_Number(rect.top));
H A Dfpdftext.cpp125 CFX_FloatRect rect; local
126 textpage->GetRect(rect_index,rect.left,rect.top,rect.right,rect.bottom);
127 *left=rect.left;
128 *top=rect.top;
129 *right=rect.right;
130 *bottom=rect.bottom;
138 CFX_FloatRect rect((FX_FLOA
264 CFX_FloatRect rect; local
[all...]
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_Icon.cpp73 CPDF_Rect rect = pDict->GetRect("BBox"); local
75 fWidth = rect.right - rect.left;
76 fHeight = rect.top - rect.bottom;
/external/qemu/android/skin/
H A Dfile.h24 SkinRect rect; member in struct:SkinBackground
29 SkinRect rect; /* display rectangle */ member in struct:SkinDisplay
40 SkinRect rect; member in struct:SkinButton
50 SkinRect rect; /* bounding box of all parts */ member in struct:SkinPart
/external/qemu/distrib/sdl-1.2.15/src/video/aalib/
H A DSDL_aavideo.c331 SDL_Rect *rect; local
340 rect = &rects[i];
341 printf("(%d,%d-%d,%d)", rect->x, rect->y, rect->w, rect->h);
342 aa_renderpalette(AA_context, AA_palette, AA_rparams, rect->x * AA_x_ratio, rect->y * AA_y_ratio, rect->w * AA_x_ratio, rect
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macevents.c320 Rect rect; local
326 GetWindowUserState(SDL_Window, &rect);
328 GetWindowStandardState(SDL_Window, &rect);
330 SDL_PrivateResize (rect.right-rect.left,
331 rect.bottom-rect.top);
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nxvideo.c421 SDL_Rect rect ; local
445 rect.x = rect.y = 0 ;
446 rect.w = this -> screen -> w, rect.h = this -> screen -> h ;
447 NX_NormalUpdate (this, 1, & rect) ;
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_ph_events.c53 PhRect_t *rect = PhGetRects( winEvent ); local
63 dx = rect->ul.x - centre_x;
64 dy = rect->ul.y - centre_y;
113 PhRect_t* rect; local
143 rect = PhGetRects(phevent);
151 posted = SDL_PrivateMouseMotion(0, 0, rect->ul.x, rect->ul.y);
292 rect = PhGetRects(phevent);
301 sdlrects[i].x = rect[i].ul.x;
302 sdlrects[i].y = rect[
[all...]
H A DSDL_ph_image.c719 int ph_FillHWRect(_THIS, SDL_Surface* surface, SDL_Rect* rect, Uint32 color) argument
744 PgDrawIRect(rect->x, rect->y+ydisp, rect->w+rect->x-1, rect->h+rect->y+ydisp-1, Pg_DRAW_FILL);

Completed in 455 milliseconds

<<21222324252627282930>>