HomeSort by relevance Sort by last modified time
    Searched defs:area (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /external/valgrind/main/none/tests/linux/
mremap3.c 15 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 increased\n")
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
PrerenderedInval.h 42 IntRect area; member in class:WebCore::PrerenderedInval
52 : area(ir)
  /frameworks/compile/mclinker/unittests/
MCRegionFragmentTest.cpp 49 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); local
51 MemoryRegion* region = area->request(0, 4096);
64 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); local
66 MemoryRegion* region = area->request(0, 4096);
FragmentRefTest.cpp 49 MemoryArea* area = areaFactory->produce(path, FileHandle::ReadWrite); local
51 MemoryRegion* region = area->request(0, 4096);
MemoryAreaTest.cpp 54 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly); local
55 MemoryRegion* region = area->request(3, 2);
58 area->release(region);
59 AreaFactory->destruct(area);
68 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly); local
69 ASSERT_TRUE(area->handler()->isOpened());
70 ASSERT_TRUE(area->handler()->isGood());
71 MemoryRegion* region = area->request(3, 4);
76 area->release(region);
77 area->clear()
96 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly) ; local
112 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite); local
140 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite) ; local
    [all...]
  /external/chromium/chrome/browser/ui/
window_sizer_win.cc 57 // A callback for EnumDisplayMonitors that records the work area of the
86 RECT area; local
87 SystemParametersInfo(SPI_GETWORKAREA, 0, &area, 0);
88 gfx::Point corner(area.left, area.top);
94 // Limit to not overflow the work area right and bottom edges.
96 std::min(browser.left + kWindowTilePixels, area.right-size.width()),
97 std::min(browser.top + kWindowTilePixels, area.bottom-size.height())
99 // Adjust corner to now overflow the work area left and top edges, so
  /external/iproute2/lib/
dnet_ntop.c 39 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))
dnet_pton.c 42 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/opencv/cv/src/
_cvgeom.h 76 double area; /* area of the triangle */ member in struct:_CvTrianAttr
  /external/qemu/distrib/sdl-1.2.15/test/
testjoystick.c 99 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);
graywin.c 21 SDL_Rect area; local
32 area.w = (rand()%width);
33 area.h = (rand()%height);
34 area.x = X-(area.w/2);
35 area.y = Y-(area.h/2);
48 SDL_FillRect(screen, &area, color);
52 SDL_UpdateRects(screen, 1, &area);
  /external/skia/include/gpu/
GrRect.h 25 int area() const { return this->width() * this->height(); } function in struct:GrIRect16
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
SelfOrientingSashForm.java 22 * client area. This is done so that the sash form can be placed in a view that will sometimes be
125 Rectangle area; local
127 area = getClientArea();
128 if (area.width > 0 && area.height > 0) {
131 if (area.width < area.height) {
143 Rectangle area = getClientArea(); local
144 if (area.width > 0 && area.height > 0 && area.width < area.height)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsmouse.c 55 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 of the screen *
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
HandleToArea.h 43 MemoryArea* area; member in struct:mcld::HandleToArea::Bucket
61 : handle(pHandle), area(pArea) { }
65 MemoryArea* area; member in struct:mcld::HandleToArea::Result
71 : handle(pHandle), area(pArea) { }
75 const MemoryArea* area; member in struct:mcld::HandleToArea::ConstResult
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
StringXmlPropertyDialog.java 38 Composite area = (Composite) super.createDialogArea(parent); local
40 Composite workaround = PropertyFactory.addWorkaround(area);
45 return area;
  /external/chromium/chrome/browser/
autocomplete_history_manager.cc 36 // A SSN is of the form AAA-GG-SSSS (A = area number, G = group number, S =
37 // serial number). The validation we do here is simply checking if the area,
39 // number is valid for the given area, but that data changes all the time.
47 int area; local
50 &area))
52 if (area < 1 ||
53 area == 666 ||
54 (area > 733 && area < 750) ||
55 area > 772
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
TextDialog.java 82 Composite area = (Composite) super.createDialogArea(parent); local
83 GridLayoutFactory.create(area);
85 new Label(area, SWT.NONE).setText(m_headerText);
88 m_textWidget = new Text(area, SWT.BORDER | SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL);
102 new Label(area, SWT.NONE).setText(m_footerText);
104 return area;
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_mouse.h 42 SDL_Rect area; /**< The area of the mouse cursor */ member in struct:SDL_Cursor
46 Uint8 *save[2]; /**< Place to save cursor area */
  /external/skia/src/gpu/
GrRectanizer.cpp 74 int32_t area = width * height; local
113 fAreaSoFar += area;
GrRectanizer_fifo.cpp 74 int32_t area = width * height; local
113 fAreaSoFar += area;
  /external/webkit/Source/WebCore/storage/
StorageAreaImpl.cpp 63 RefPtr<StorageAreaImpl> area = adoptRef(new StorageAreaImpl(storageType, origin, syncManager, quota)); local
67 if (area->m_storageSyncManager) {
68 area->m_storageAreaSync = StorageAreaSync::create(area->m_storageSyncManager, area.get(), area->m_securityOrigin->databaseIdentifier());
69 ASSERT(area->m_storageAreaSync);
72 return area.release();
81 StorageAreaImpl::StorageAreaImpl(StorageAreaImpl* area)
82 : m_storageType(area->m_storageType
    [all...]
  /external/webkit/Source/WebKit/android/jni/
PicturePile.h 71 IntRect area; member in class:WebCore::PictureContainer
76 PictureContainer(const IntRect& area)
78 , area(area)
105 PrerenderedInval* prerenderedInvalForArea(const IntRect& area);
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_mouse.h 42 SDL_Rect area; /**< The area of the mouse cursor */ member in struct:SDL_Cursor
46 Uint8 *save[2]; /**< Place to save cursor area */
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_mouse.h 42 SDL_Rect area; /**< The area of the mouse cursor */ member in struct:SDL_Cursor
46 Uint8 *save[2]; /**< Place to save cursor area */

Completed in 1205 milliseconds

1 2 3 4 5