HomeSort by relevance Sort by last modified time
    Searched full:initial_size (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationSetTest.java 49 private static final int INITIAL_SIZE = 100;
85 animationSet.initialize(INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE);
120 animationSet.initialize(INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE);
137 animationSet.initialize(INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE)
    [all...]
  /art/runtime/gc/space/
dlmalloc_space.cc 105 byte* end, size_t growth_limit, size_t initial_size) :
107 VALGRIND_MAKE_MEM_UNDEFINED(mem_map->Begin() + initial_size, mem_map->Size() - initial_size);
149 DlMallocSpace* DlMallocSpace::Create(const std::string& name, size_t initial_size, size_t
160 << " initial_size=" << PrettySize(initial_size)
167 if (starting_size > initial_size) {
168 initial_size = starting_size;
170 if (initial_size > growth_limit) {
172 << PrettySize(initial_size) << ") is larger than its capacity (
294 const size_t initial_size = 2 * MB; local
    [all...]
dlmalloc_space.h 49 static DlMallocSpace* Create(const std::string& name, size_t initial_size, size_t growth_limit,
157 bool Init(size_t initial_size, size_t maximum_size, size_t growth_size, byte* requested_base);
159 static void* CreateMallocSpace(void* base, size_t morecore_start, size_t initial_size);
space_test.cc 459 size_t initial_size = 4 * MB; local
462 DlMallocSpace* space(DlMallocSpace::Create("test", initial_size, growth_limit, capacity, NULL));
473 // This effectively makes the growth_limit the initial_size, so assert this.
474 SizeFootPrintGrowthLimitAndTrimBody(space, object_size, 1, initial_size);
  /external/chromium_org/content/shell/common/
shell_test_configuration.h 39 gfx::Size initial_size; member in struct:content::ShellTestConfiguration
shell_messages.h 25 IPC_STRUCT_TRAITS_MEMBER(initial_size)
  /external/chromium_org/content/shell/
shell.cc 101 const gfx::Size& initial_size) {
103 shell->PlatformCreateWindow(initial_size.width(), initial_size.height());
155 const gfx::Size& initial_size) {
158 if (!initial_size.IsEmpty())
159 create_params.initial_size = initial_size;
161 create_params.initial_size =
164 Shell* shell = CreateShell(web_contents, create_params.initial_size);
  /external/srec/shared/src/
LStringImpl.c 26 #define INITIAL_SIZE 32
39 impl->size = INITIAL_SIZE;
40 impl->value = MALLOC(sizeof(LCHAR) * INITIAL_SIZE, MTAG);
Int8ArrayListImpl.c 26 #define INITIAL_SIZE 32
48 impl->contents = MALLOC((INITIAL_SIZE + 1) * sizeof(asr_int8_t), MTAG);
54 impl->actualSize = INITIAL_SIZE;
IntArrayListImpl.c 26 #define INITIAL_SIZE 32
47 impl->contents = MALLOC((INITIAL_SIZE + 1) * sizeof(int), MTAG);
53 impl->actualSize = INITIAL_SIZE;
  /art/runtime/
reference_table.h 39 ReferenceTable(const char* name, size_t initial_size, size_t max_size);
reference_table.cc 32 ReferenceTable::ReferenceTable(const char* name, size_t initial_size, size_t max_size)
34 CHECK_LE(initial_size, max_size);
35 entries_.reserve(initial_size);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
IntArray.java 45 public static final int INITIAL_SIZE = 10;
75 data = new int[INITIAL_SIZE];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
IntArray.h 45 public static final int INITIAL_SIZE = 10;
75 data = new int[INITIAL_SIZE];
IntArray.m 45 public static final int INITIAL_SIZE = 10;
75 data = new int[INITIAL_SIZE];
  /external/chromium_org/chrome/browser/ui/ash/launcher/
browser_launcher_item_controller_unittest.cc 317 size_t initial_size = launcher_model_->items().size(); local
324 ASSERT_EQ(initial_size + 1, launcher_model_->items().size());
330 ASSERT_EQ(initial_size, launcher_model_->items().size());
351 ASSERT_EQ(initial_size + 1, launcher_model_->items().size());
359 size_t initial_size = launcher_model_->items().size(); local
373 EXPECT_EQ(initial_size + 1, launcher_model_->items().size());
387 ASSERT_EQ(initial_size + 1, launcher_model_->items().size());
394 ASSERT_EQ(initial_size, launcher_model_->items().size());
  /external/chromium_org/content/test/
test_web_contents_view.h 57 virtual void CreateView(const gfx::Size& initial_size,
test_web_contents_view.cc 92 void TestWebContentsView::CreateView(const gfx::Size& initial_size,
  /external/chromium_org/content/browser/web_contents/
web_contents_view_guest.cc 111 void WebContentsViewGuest::CreateView(const gfx::Size& initial_size,
113 platform_view_->CreateView(initial_size, context);
114 size_ = initial_size;
  /external/chromium_org/remoting/host/
resizing_host_observer_unittest.cc 29 FakeDesktopResizer(const SkISize& initial_size, bool exact_size_supported,
31 : initial_size_(initial_size),
32 current_size_(initial_size),
  /external/chromium_org/content/port/browser/
web_contents_view_port.h 22 const gfx::Size& initial_size, gfx::NativeView context) = 0;
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_view_layout_unittest.cc 80 explicit MockView(gfx::Size initial_size)
81 : size_(initial_size) {
  /external/chromium_org/ash/wm/workspace/
workspace_window_resizer.cc 492 int initial_size = PrimaryAxisSize(attached_windows_[i]->bounds().size()); local
493 initial_size_.push_back(initial_size);
496 int min_size = std::min(initial_size,
499 total_initial_size_ += initial_size;
500 total_available += std::max(min_size, initial_size) - min_size;
516 int initial_size = PrimaryAxisSize(details_.initial_bounds_in_parent.size()); local
521 int delta = current_size - initial_size;
643 int initial_size = initial_size_[i]; local
648 sizes->push_back(WindowSize(initial_size, min, max));
    [all...]
  /external/chromium_org/ash/system/tray/
system_tray_unittest.cc 208 gfx::Size initial_size = tray->GetWidget()->GetWindowBoundsInScreen().size(); local
216 EXPECT_NE(initial_size.ToString(), new_size.ToString());
221 EXPECT_EQ(initial_size.ToString(),
  /external/chromium/chrome/browser/tab_contents/
tab_contents_view_mac.h 55 virtual void CreateView(const gfx::Size& initial_size);

Completed in 3496 milliseconds

1 2 3 4