HomeSort by relevance Sort by last modified time
    Searched refs:page_size (Results 26 - 50 of 195) sorted by null

12 3 4 5 6 7 8

  /external/chromium_org/printing/
metafile.h 91 const gfx::Size& page_size,
95 // Prepares a context for rendering a new page with the given |page_size|,
98 virtual bool StartPage(const gfx::Size& page_size,
pdf_metafile_cg_mac.h 41 const gfx::Size& page_size, const gfx::Rect& content_area,
43 virtual bool StartPage(const gfx::Size& page_size,
pdf_metafile_skia.h 34 const gfx::Size& page_size,
38 virtual bool StartPage(const gfx::Size& page_size,
emf_win.cc 521 const gfx::Size& page_size, const gfx::Rect& content_area,
523 if (!StartPage(page_size, content_area, scale_factor))
526 return skia::VectorPlatformDeviceEmf::CreateDevice(page_size.width(),
527 page_size.height(),
531 bool Emf::StartPage(const gfx::Size& /*page_size*/,
606 gfx::Size page_size(page_bounds.size());
607 if (page_size.GetArea() <= 0) {
612 float scale = sqrt(float(raster_area_in_pixels) / page_size.GetArea());
613 page_size.set_width(std::max<int>(1, page_size.width() * scale))
    [all...]
emf_win.h 58 const gfx::Size& page_size, const gfx::Rect& content_area,
62 // when hdc_ is non-NULL. |page_size|, |content_area|, and |scale_factor| are
64 virtual bool StartPage(const gfx::Size& page_size,
pdf_metafile_cg_mac.cc 114 const gfx::Size& page_size, const gfx::Rect& content_area,
120 bool PdfMetafileCg::StartPage(const gfx::Size& page_size,
126 double height = page_size.height();
127 double width = page_size.width();
pdf_metafile_skia.cc 52 const gfx::Size& page_size, const gfx::Rect& content_area,
64 SkISize pdf_page_size = SkISize::Make(page_size.width(), page_size.height());
74 bool PdfMetafileSkia::StartPage(const gfx::Size& page_size,
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_x86-inl.h 210 // page_size is linker-initalized to avoid async-unsafe locking
212 static int page_size; local
213 if (page_size == 0) {
215 page_size = getpagesize();
220 ~(page_size - 1));
221 if (msync(reg_esp_aligned, page_size, MS_ASYNC) == 0) {
267 static int page_size = getpagesize(); local
268 void *new_sp_aligned = (void *)((uintptr_t)new_sp & ~(page_size - 1));
269 if (msync(new_sp_aligned, page_size, MS_ASYNC) == -1)
  /external/chromium_org/base/process/
process_metrics_mac.cc 182 vm_size_t page_size; local
183 kr = host_page_size(task, &page_size);
191 *private_bytes = private_pages_count * page_size;
193 *shared_bytes = shared_pages_count * page_size;
315 vm_size_t page_size; local
316 kr = host_page_size(host, &page_size);
322 return (data.active_count * page_size) / 1024;
  /system/extras/kexec_tools/
kexecload.c 75 int page_size = getpagesize(); local
126 atag_size = ROUND_TO_PAGE(get_file_size(atag_file), page_size);
127 zimage_size = ROUND_TO_PAGE(get_file_size(zimage_file), page_size);
  /external/chromium_org/android_webview/renderer/
print_web_view_helper_linux.cc 163 gfx::Size page_size; local
165 GetPageSizeAndContentAreaFromPageLayout(page_layout_in_points, &page_size,
168 params.params.display_header_footer ? gfx::Rect(page_size) : content_area;
170 SkBaseDevice* device = metafile->StartPageForVectorCanvas(page_size,
print_web_view_helper.cc 96 return !params.content_size.IsEmpty() && !params.page_size.IsEmpty() &&
110 ConvertUnit(page_params.page_size.width(), dpi, kPixelsPerInch),
111 ConvertUnit(page_params.page_size.height(), dpi, kPixelsPerInch));
115 page_params.page_size.width() -
119 page_params.page_size.height() -
154 page_css_params.page_size = gfx::Size(
161 page_css_params.page_size = page_params.page_size;
177 int default_page_size_height = page_params.page_size.height();
178 int default_page_size_width = page_params.page_size.width()
    [all...]
  /external/chromium_org/chrome/browser/thumbnails/
render_widget_snapshot_taker.h 42 // |page_size| is the size to render the page, and |desired_size| is
49 gfx::Size page_size,
  /external/chromium_org/chrome/renderer/printing/
print_web_view_helper_linux.cc 161 gfx::Size page_size; local
163 GetPageSizeAndContentAreaFromPageLayout(page_layout_in_points, &page_size,
166 params.params.display_header_footer ? gfx::Rect(page_size) : content_area;
168 SkBaseDevice* device = metafile->StartPageForVectorCanvas(page_size,
print_web_view_helper.cc 92 return !params.content_size.IsEmpty() && !params.page_size.IsEmpty() &&
106 ConvertUnit(page_params.page_size.width(), dpi, kPixelsPerInch),
107 ConvertUnit(page_params.page_size.height(), dpi, kPixelsPerInch));
111 page_params.page_size.width() -
115 page_params.page_size.height() -
150 page_css_params.page_size = gfx::Size(
157 page_css_params.page_size = page_params.page_size;
173 int default_page_size_height = page_params.page_size.height();
174 int default_page_size_width = page_params.page_size.width()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_slab.h 66 unsigned page_size; member in struct:util_slab_mempool
  /external/llvm/include/llvm/Support/
Process.h 118 size_t page_size() const { return PageSize; }; function in class:llvm::sys::self_process
  /external/llvm/unittests/Support/
ProcessTest.cpp 32 EXPECT_LT(1u, process::get_self()->page_size());
  /external/mesa3d/src/gallium/auxiliary/util/
u_slab.h 66 unsigned page_size; member in struct:util_slab_mempool
  /external/chromium/chrome/common/
print_messages.h 20 IPC_STRUCT_MEMBER(gfx::Size, page_size)
106 IPC_STRUCT_MEMBER(gfx::Size, page_size)
  /external/chromium/app/sql/
connection.h 121 void set_page_size(int page_size) { page_size_ = page_size; }
124 // total cache size in bytes will be page_size * cache_size. This must be
  /external/chromium/chrome/browser/tab_contents/
thumbnail_generator.h 73 // use the backing store for the page if it exists. |page_size| is
83 gfx::Size page_size,
  /external/chromium/sdch/open-vcdiff/src/
vcencoder_test.cc 555 const int page_size = getpagesize(); local
558 posix_memalign(&two_pages, page_size, 2 * page_size);
560 two_pages = memalign(page_size, 2 * page_size);
563 char* const second_page = first_page + page_size;
570 mprotect(second_page, page_size, PROT_NONE);
579 mprotect(second_page, page_size, PROT_READ|PROT_WRITE);
587 const int page_size = getpagesize(); local
590 posix_memalign(&two_pages, page_size, 2 * page_size)
    [all...]
  /external/chromium_org/content/public/test/
render_widget_test.cc 35 void RenderWidgetTest::ResizeAndPaint(const gfx::Size& page_size,
43 page_size.width() * page_size.height() * kNumBytesPerPixel,
53 impl->OnPaintAtSize(pixels->handle(), g_sequence_num, page_size,
  /external/chromium_org/sdch/open-vcdiff/src/
vcencoder_test.cc 620 const int page_size = getpagesize(); local
623 posix_memalign(&two_pages, page_size, 2 * page_size);
625 two_pages = memalign(page_size, 2 * page_size);
628 char* const second_page = first_page + page_size;
635 mprotect(second_page, page_size, PROT_NONE);
644 mprotect(second_page, page_size, PROT_READ|PROT_WRITE);
652 const int page_size = getpagesize(); local
655 posix_memalign(&two_pages, page_size, 2 * page_size)
    [all...]

Completed in 2806 milliseconds

12 3 4 5 6 7 8