Searched defs:iRect (Results 1 - 5 of 5) sorted by path

/external/chromium_org/third_party/skia/src/gpu/
H A DSkGpuDevice.cpp942 // This method outsets 'iRect' by 'outset' all around and then clamps its extents to
944 // of 'iRect' for all possible outsets/clamps.
945 static inline void clamped_outset_with_offset(SkIRect* iRect, argument
949 iRect->outset(outset, outset);
951 int leftClampDelta = clamp.fLeft - iRect->fLeft;
954 iRect->fLeft = clamp.fLeft;
959 int topClampDelta = clamp.fTop - iRect->fTop;
962 iRect->fTop = clamp.fTop;
967 if (iRect->fRight > clamp.fRight) {
968 iRect
[all...]
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/interface/
H A Dvie_autotest_defines.h88 void Copy(AutoTestRect iRect) { argument
89 origin.x = iRect.origin.x;
90 origin.y = iRect.origin.y;
91 size.width = iRect.size.width;
92 size.height = iRect.size.height;
/external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
H A Dsdlexe.cpp87 TRect iRect; local
127 if(iRect.Contains(pos))
151 iRect = aRect;
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A DSDL_epocvideo.h43 SDL_Rect iRect; //same info in SDL format member in struct:SDL_PrivateVideoData
/external/skia/src/gpu/
H A DSkGpuDevice.cpp973 // This method outsets 'iRect' by 'outset' all around and then clamps its extents to
975 // of 'iRect' for all possible outsets/clamps.
976 static inline void clamped_outset_with_offset(SkIRect* iRect, argument
980 iRect->outset(outset, outset);
982 int leftClampDelta = clamp.fLeft - iRect->fLeft;
985 iRect->fLeft = clamp.fLeft;
990 int topClampDelta = clamp.fTop - iRect->fTop;
993 iRect->fTop = clamp.fTop;
998 if (iRect->fRight > clamp.fRight) {
999 iRect
[all...]

Completed in 581 milliseconds