HomeSort by relevance Sort by last modified time
    Searched refs:area (Results 251 - 275 of 541) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/softpipe/
sp_setup.c 354 * Compute triangle's area. Use 1/area to compute partial
357 * The area will be the same as prim->det, but the sign may be
364 const float area = (setup->emaj.dx * setup->ebot.dy - local
367 setup->oneoverarea = 1.0f / area;
370 debug_printf("%s one-over-area %f area %f det %f\n",
371 __FUNCTION__, setup->oneoverarea, area, det );
973 float area; local
989 /* NOTE: this is not really area but something proportional to it *
    [all...]
  /external/mksh/src/
sh.h 719 typedef struct lalloc_common Area;
722 EXTERN Area aperm; /* permanent object space */
724 #define ATEMP &e->area
761 Area area; /* temporary allocation area */ member in struct:env
1598 Area area; \/* area to allocate things *\/ member in struct:block
    [all...]
main.c 257 /* initialise permanent Area */
264 ainit(&env.area);
1003 ainit(&ep->area);
1119 afree(ep->savefd, &ep->area);
1142 /* remove temp files and free ATEMP Area */
1150 afreeall(&l->area);
1161 if (source && source->areap == &e->area)
1163 afreeall(&e->area);
    [all...]
  /external/libedit/src/
terminal.c 862 char *area; local
871 area = buf;
917 &area));
1468 char *area; local
    [all...]
  /external/opencv/cv/src/
mycvHaarDetectObjects.cpp 1407 int area = comp->rect.width * comp->rect.height; local
1535 int area = comp->rect.width * comp->rect.height; local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionTest.java 114 private void verifyPointsInsideRegion(int[][] area) {
115 for (int i = 0; i < area.length; i ++) {
116 assertTrue(mRegion.contains(area[i][0], area[i][1]));
120 private void verifyPointsOutsideRegion(int[][] area) {
121 for (int i = 0; i < area.length; i ++) {
122 assertFalse(mRegion.contains(area[i][0], area[i][1]));
    [all...]
  /external/ImageMagick/Magick++/lib/
Statistic.cpp 322 double Magick::ChannelStatistics::area() const function in class:Magick::ChannelStatistics
405 _area(channelStatistics_->area),
  /external/ImageMagick/www/api/
composite.php 90 <dd>set to MagickTrue to limit composition to area composed. </dd>
decorate.php 151 <dd>Define the width and height of the raise area. </dd>
distort.php 144 <dd> o "distort:viewport" Directly set the output image canvas area and offest to use for the resulting image, rather than use the original images canvas, or a calculated 'bestfit' canvas. </dd>
152 <dd> o 'filter' Set filter to use for area-resampling (scale shrinking). Set to 'point' to turn off and use 'interpolate' lookup instead </dd>
  /external/drm_hwcomposer/
drmdisplaycomposition.cpp 338 int frame_area = region.rect.area();
354 if (layer_squash_area[i] < layers_[i].display_frame.area())
  /external/libunwind/doc/
unw_resume.tex 57 and language-specific data area (lsda). These steps are generally
  /external/mesa3d/src/mesa/swrast/
s_aaline.c 260 * Compute how much of the given pixel's area is inside the rectangle
283 const GLfloat area = dx0 * dy1 - dx1 * dy0;
284 assert(area >= 0.0);
  /external/vulkan-validation-layers/
CONTRIBUTING.md 24 If you desire to help in this area, please examine the
  /frameworks/base/core/java/com/android/internal/graphics/palette/
Palette.java 687 * If the bitmap's area is greater than the value specified, then the bitmap
688 * will be resized so that its area matches {@code area}. If the
695 * @param area the number of pixels that the intermediary scaled down Bitmap should cover,
699 public Palette.Builder resizeBitmapArea(final int area) {
700 mResizeArea = area;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
ScrimController.java 732 public void setExcludedBackgroundArea(Rect area) {
733 mScrimBehind.setExcludedArea(area);
  /frameworks/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 31 import java.awt.geom.Area;
195 // create an Area that can test if the path is a rect
196 Area area = new Area(pathDelegate.mPath); local
197 if (area.isRectangular()) {
  /frameworks/support/v7/palette/src/main/java/android/support/v7/graphics/
Palette.java 679 * If the bitmap's area is greater than the value specified, then the bitmap
680 * will be resized so that its area matches {@code area}. If the
687 * @param area the number of pixels that the intermediary scaled down Bitmap should cover,
691 public Builder resizeBitmapArea(final int area) {
692 mResizeArea = area;
    [all...]
  /hardware/interfaces/automotive/vehicle/2.0/default/tests/
VehicleHalManager_test.cpp 135 int64_t makeKey(int32_t prop, int32_t area) const {
136 return (static_cast<int64_t>(prop) << 32) | area;
254 hal->sendHalError(StatusCode::TRY_AGAIN, PROP, 0 /* area id*/);
  /prebuilts/sdk/current/support/v7/palette/
android-support-v7-palette.jar 
  /system/extras/simpleperf/inferno/
script.js 33 // Don't even bother trying to find a best fit. The area is too small.
  /external/python/cpython2/Modules/_ctypes/libffi/src/alpha/
osf.S 76 # Deallocate the register argument area.
  /packages/apps/Camera2/src/com/android/camera/data/
GlideFilmstripManager.java 187 * to fit within the maxSize bounding box and to be less than the provided area.
195 // In several cases, the size is smaller than the max, and the area is
196 // smaller than the max area.
202 double ratio = Math.min(Math.sqrt(maxArea / original.area()), 1.0f);
  /prebuilts/go/darwin-x86/doc/codewalk/
codewalk.js 22 this.commentArea = this.context.find('#comment-area');
35 this.codeArea = this.context.find('#code-area');
  /prebuilts/go/linux-x86/doc/codewalk/
codewalk.js 22 this.commentArea = this.context.find('#comment-area');
35 this.codeArea = this.context.find('#code-area');

Completed in 742 milliseconds

<<11121314151617181920>>