Searched defs:area (Results 1 - 25 of 153) sorted by relevance

1234567

/external/valgrind/main/none/tests/linux/
H A Dmremap3.c15 perror ("initial area");
21 void *area = mmap(initial_area, 4096, PROT_READ|PROT_WRITE, local
23 if (area == MAP_FAILED)
24 perror ("area");
25 if (area != initial_area)
27 printf("area= %p\n", area);
28 strcpy(area, "Hello World");
31 void *a2 = mremap(area, 4096, 40960, 0);
36 printf("FAILED : was expecting to get back the same area increase
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRectanizer_pow2.cpp17 int32_t area = width * height; // computed here since height will be modified local
51 fAreaSoFar += area;
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A DPrototype.js35 Square.prototype.area = Square_area;
37 shouldBe("s.area()", "9");
/external/skia/src/gpu/
H A DGrRectanizer_pow2.cpp17 int32_t area = width * height; // computed here since height will be modified local
51 fAreaSoFar += area;
/external/chromium_org/printing/
H A Dpdf_render_settings.h16 // gfx::Rect - render area
24 PdfRenderSettings(gfx::Rect area, int dpi, bool autorotate) argument
25 : PdfRenderSettingsBase(area, dpi, autorotate) {}
28 const gfx::Rect& area() const { return a; } function in class:printing::PdfRenderSettings
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DHitTestingTransformState.h45 static PassRefPtr<HitTestingTransformState> create(const FloatPoint& p, const FloatQuad& quad, const FloatQuad& area) argument
47 return adoptRef(new HitTestingTransformState(p, quad, area));
72 HitTestingTransformState(const FloatPoint& p, const FloatQuad& quad, const FloatQuad& area) argument
75 , m_lastPlanarArea(area)
/external/chromium_org/third_party/skia/tests/
H A DBitmapGetColorTest.cpp30 // specify an area that doesn't touch (0,0) and may extend beyond the
33 const SkIRect area = { 1, 1, 3, 3 }; local
43 bm.eraseArea(area, gRec[i].fInColor);
H A DRecordTest.cpp16 // Sums the area of any DrawRect command it sees.
27 int area() const { return fArea; } function in class:AreaSummer
65 // Its area should be 100.
68 REPORTER_ASSERT(r, summer.area() == 100);
74 // Now its area should be 100 + 400.
76 REPORTER_ASSERT(r, summer.area() == 500);
/external/opencv/cv/src/
H A D_cvgeom.h76 double area; /* area of the triangle */ member in struct:_CvTrianAttr
/external/skia/include/gpu/
H A DGrRect.h25 int area() const { return this->width() * this->height(); } function in struct:GrIRect16
/external/skia/tests/
H A DBitmapGetColorTest.cpp30 // specify an area that doesn't touch (0,0) and may extend beyond the
33 const SkIRect area = { 1, 1, 3, 3 }; local
43 bm.eraseArea(area, gRec[i].fInColor);
H A DRecordTest.cpp13 // Sums the area of any DrawRect command it sees.
24 int area() const { return fArea; } function in class:AreaSummer
60 // Its area should be 100.
63 REPORTER_ASSERT(r, summer.area() == 100);
69 // Now its area should be 100 + 400.
71 REPORTER_ASSERT(r, summer.area() == 500);
/external/chromium_org/ppapi/utility/graphics/
H A Dpaint_aggregator.h68 /// Setter function setting the max ratio of paint rect area to scroll rect
69 /// area that we will tolerate before downgrading the scroll into a repaint.
71 /// If the combined area of paint rects contained within the scroll
75 /// @param[in] area The max ratio of paint rect area to scroll rect area that
77 void set_max_redundant_paint_to_scroll_area(float area) { argument
78 max_redundant_paint_to_scroll_area_ = area;
123 // - The scroll damange (area exposed by the scroll operation, if any) is
157 // If the combined area o
[all...]
H A Dpaint_manager.h58 /// // Then we would either repaint the area returned by GetPaintBounds or
73 /// OnPaint() paints the given invalid area of the instance to the given
78 /// only have to paint the area inside each of the
169 /// Setter function setting the max ratio of paint rect area to scroll rect
170 /// area that we will tolerate before downgrading the scroll into a repaint.
172 /// If the combined area of paint rects contained within the scroll
176 /// @param[in] area The max ratio of paint rect area to scroll rect area that
178 void set_max_redundant_paint_to_scroll_area(float area) { argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/storage/
H A DStorage.h58 StorageArea* area() const { return m_storageArea.get(); } function in class:blink::FINAL
/external/iproute2/lib/
H A Ddnet_ntop.c39 u_int16_t addr, area; local
45 area = addr >> 10;
55 if (do_digit(str + pos, &area, 10, &pos, len, &started))
58 if (do_digit(str + pos, &area, 1, &pos, len, &started))
H A Ddnet_pton.c42 u_int16_t area = 0; local
46 pos = dnet_num(src, &area);
47 if ((pos == 0) || (area > 63) || (*(src + pos) != '.'))
53 addr = dn_htons((area << 10) | node);
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestjoystick.c99 SDL_Rect area; local
101 area.x = i*34;
102 area.y = SCREEN_HEIGHT-34;
103 area.w = 32;
104 area.h = 32;
106 SDL_FillRect(screen, &area, 0xFFFF);
108 SDL_FillRect(screen, &area, 0x0000);
110 SDL_UpdateRects(screen, 1, &area);
/external/chromium_org/cc/output/
H A Dcopy_output_request.h47 // area is given, then the intersection of this rect (in layer space) with
49 void set_area(const gfx::Rect& area) { argument
51 area_ = area;
54 gfx::Rect area() const { return area_; } function in class:cc::CopyOutputRequest
/external/chromium_org/components/favicon_base/
H A Dfavicon_util.cc44 int area = png_data[i].pixel_size.GetArea(); local
45 if (area > maximum_area) {
46 maximum_area = area;
/external/chromium_org/third_party/skia/include/gpu/
H A DGrRect.h37 int area() const { return this->width() * this->height(); } function in struct:GrIRect16
/external/chromium_org/third_party/skia/src/utils/
H A DSkPictureUtils.cpp193 SkData* SkPictureUtils::GatherPixelRefs(const SkPicture* pict, const SkRect& area) { argument
198 // this test also handles if either area or pict's width/height are empty
199 if (!SkRect::Intersects(area, pict->cullRect())) {
211 canvas.clipRect(area, SkRegion::kIntersect_Op, false);
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_mouse.h42 SDL_Rect area; /**< The area of the mouse cursor */ member in struct:SDL_Cursor
46 Uint8 *save[2]; /**< Place to save cursor area */
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsmouse.c55 SDL_Rect area; local
69 /* Remove the cursor image from the DMA area */
80 /* Save the current mouse area */
81 SDL_MouseRect(&area);
82 mouse_y1 = area.y;
83 mouse_y2 = area.y+area.h;
88 cursor->area.x = (x - cursor->hot_x);
89 cursor->area.y = (y - cursor->hot_y);
100 /* Update the affected area o
[all...]
/external/skia/src/utils/
H A DSkPictureUtils.cpp193 SkData* SkPictureUtils::GatherPixelRefs(SkPicture* pict, const SkRect& area) { argument
198 // this test also handles if either area or pict's width/height are empty
199 if (!SkRect::Intersects(area,
211 canvas.clipRect(area, SkRegion::kIntersect_Op, false);

Completed in 4262 milliseconds

1234567