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

123456

/external/valgrind/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/skia/src/gpu/
H A DGrRectanizer_pow2.cpp17 int32_t area = width * height; // computed here since height will be modified local
51 fAreaSoFar += area;
H A DGrRect.h37 int area() const { return this->width() * this->height(); } function in struct:GrIRect16
/external/v8/test/webkit/fast/js/kde/
H A DPrototype.js35 Square.prototype.area = Square_area;
37 shouldBe("s.area()", "9");
/external/ImageMagick/MagickCore/
H A Dvision.h40 area, member in struct:_CCObjectInfo
H A Dcomposite-private.h169 const double alpha,const PixelInfo *q,const double beta,const double area,
173 Blend pixel colors p and q by the amount given and area.
175 CompositePixelInfoPlus(p,(double) (1.0-area)*alpha,q,(double) (area*beta),
168 CompositePixelInfoAreaBlend(const PixelInfo *p, const double alpha,const PixelInfo *q,const double beta,const double area, PixelInfo *composite) argument
/external/ImageMagick/Magick++/lib/
H A DResourceLimits.cpp13 void Magick::ResourceLimits::area(const MagickSizeType limit_) function in class:Magick::ResourceLimits
18 MagickCore::MagickSizeType Magick::ResourceLimits::area(void) function in class:Magick::ResourceLimits
/external/dng_sdk/source/
H A Ddng_tile_iterator.cpp27 const dng_rect &area)
45 area & image.Bounds ());
52 const dng_rect &area)
69 dng_rect tile (area);
75 area);
82 const dng_rect &area)
100 area);
107 const dng_rect &area)
110 fArea = area;
112 if (area
26 dng_tile_iterator(const dng_image &image, const dng_rect &area) argument
51 dng_tile_iterator(const dng_point &tileSize, const dng_rect &area) argument
81 dng_tile_iterator(const dng_rect &tile, const dng_rect &area) argument
106 Initialize(const dng_rect &tile, const dng_rect &area) argument
[all...]
H A Ddng_filter_task.cpp93 const dng_rect &area,
97 // Find source area for this destination area.
99 dng_rect srcArea = SrcArea (area);
118 dng_pixel_buffer dstBuffer(area, fDstPlane, fDstPlanes, fDstPixelType,
129 // Process area.
92 Process(uint32 threadIndex, const dng_rect &area, dng_abort_sniffer * ) argument
H A Ddng_simple_image.cpp162 const dng_rect &area,
166 buffer.fArea = area;
161 AcquireTileBuffer(dng_tile_buffer &buffer, const dng_rect &area, bool dirty) const argument
/external/opencv/cv/src/
H A D_cvgeom.h76 double area; /* area of the triangle */ member in struct:_CvTrianAttr
/external/opencv3/modules/core/misc/java/src/java/
H A Dcore+Size.java36 public double area() { method in class:Size
H A Dcore+Rect.java64 public double area() { method in class:Rect
/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.cpp17 // Sums the area of any DrawRect command it sees.
28 int area() const { return fArea; } function in class:AreaSummer
66 // Its area should be 100.
69 REPORTER_ASSERT(r, summer.area() == 100);
75 // Now its area should be 100 + 400.
77 REPORTER_ASSERT(r, summer.area() == 500);
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
H A DInfoDialog.java26 protected TextArea area; field in class:InfoDialog
31 return area;
46 area = new TextArea(message, 8, 80, TextArea.SCROLLBARS_VERTICAL_ONLY);
47 this.add("Center", area);
/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/libgdx/gdx/src/com/badlogic/gdx/math/
H A DCircle.java200 /** @return The area of this circle (as {@link MathUtils#PI} * radius * radius). */
201 public float area () { method in class:Circle
H A DEllipse.java181 /** @return The area of this {@link Ellipse} as {@link MathUtils#PI} * {@link Ellipse#width} * {@link Ellipse#height} */
182 public float area () { method in class:Ellipse
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
H A DScissorStack.java29 * Rectangle is pushed onto the stack, it will be merged with the current top of stack. The minimum area of overlap is then set as
37 /** Pushes a new scissor {@link Rectangle} onto the stack, merging it with the current top of the stack. The minimal area of
43 * @return true if the scissors were pushed. false if the scissor area was zero, in this case the scissors were not pushed and
72 /** Pops the current scissor rectangle from the stack and sets the new scissor area to the new top of stack rectangle. In case
108 public static void calculateScissors (Camera camera, Matrix4 batchTransform, Rectangle area, Rectangle scissor) { argument
109 calculateScissors(camera, 0, 0, Gdx.graphics.getWidth(), Gdx.graphics.getHeight(), batchTransform, area, scissor);
119 * @param area the {@link Rectangle} to transform to window coordinates
122 float viewportHeight, Matrix4 batchTransform, Rectangle area, Rectangle scissor) {
123 tmp.set(area.x, area
121 calculateScissors(Camera camera, float viewportX, float viewportY, float viewportWidth, float viewportHeight, Matrix4 batchTransform, Rectangle area, Rectangle scissor) argument
[all...]
/external/opencv3/samples/android/color-blob-detection/src/org/opencv/samples/colorblobdetect/
H A DColorBlobDetector.java18 // Minimum contour area in percent for contours filtering
66 public void setMinContourArea(double area) { argument
67 mMinContourArea = area;
83 // Find max contour area
88 double area = Imgproc.contourArea(wrapper);
89 if (area > maxArea)
90 maxArea = area;
93 // Filter contours by area and resize to fit the original image size
/external/opencv3/samples/cpp/
H A Dsegment_objects.cpp49 double area = fabs(contourArea(Mat(c))); local
50 if( area > maxArea )
52 maxArea = area;
/external/opencv3/samples/cpp/tutorial_code/ml/introduction_to_pca/
H A Dintroduction_to_pca.cpp130 // Calculate the area of each contour
131 double area = contourArea(contours[i]); local
133 if (area < 1e2 || 1e5 < area) continue;
/external/valgrind/none/tests/arm64/
H A Dmemory.c115 unsigned char area[512]; local
118 do { int i; for (i = 0; i < sizeof(area); i++) \
119 area[i] = i | 0x80; \
122 #define AREA_MID (((ULong)(&area[(sizeof(area)/2)-1])) & (~(ULong)0xF))
314 // memory area, xferred vec regs, xferred int regs,
318 // Out: memory area, xferred vec regs, xferred int regs, addr reg1, addr reg2
325 // A memory area is filled with random data, and x13, x23, v17, v18, v19, v20
327 // x5 set to the middle of the memory area + AREG1OFF, and x6 set to AREG2VAL.
331 // the memory area
[all...]

Completed in 1113 milliseconds

123456