HomeSort by relevance Sort by last modified time
    Searched full:initial_size (Results 51 - 75 of 93) sorted by null

1 23 4

  /external/libxml2/
triostr.c 1338 @param initial_size Initial size of the buffer.
1343 TRIO_ARGS1((initial_size),
1344 int initial_size)
1352 (size_t)((initial_size > 0) ? initial_size : 1)))
1355 self->allocated = initial_size;
    [all...]
  /external/chromium/chrome/browser/tab_contents/
tab_contents_view_gtk.cc 130 void TabContentsViewGtk::CreateView(const gfx::Size& initial_size) {
131 requested_size_ = initial_size;
tab_contents_view_mac.mm 84 void TabContentsViewMac::CreateView(const gfx::Size& initial_size) {
  /external/chromium_org/content/browser/web_contents/
web_contents_view_gtk.cc 197 const gfx::Size& initial_size, gfx::NativeView context) {
198 requested_size_ = initial_size;
web_contents_view_win.cc 148 const gfx::Size& initial_size, gfx::NativeView context) {
149 initial_size_ = initial_size;
web_contents_view_aura.h 116 const gfx::Size& initial_size, gfx::NativeView context) OVERRIDE;
web_contents_view_mac.mm 331 const gfx::Size& initial_size, gfx::NativeView context) {
web_contents_impl.cc 1084 gfx::Size initial_size = params.initial_size; local
    [all...]
  /libcore/luni/src/main/java/java/lang/
ThreadLocal.java 149 private static final int INITIAL_SIZE = 16;
181 initializeTable(INITIAL_SIZE);
  /external/chromium_org/v8/src/
parser.h 169 template <typename T, int initial_size>
180 list_ = new(zone) ZoneList<T*>(initial_size, zone);
229 list_ = new(zone) ZoneList<T*>(initial_size, zone);
prettyprinter.cc 505 const int initial_size = 256; local
506 output_ = NewArray<char>(initial_size);
507 size_ = initial_size;
  /external/v8/src/
parser.h 195 template <typename T, int initial_size>
206 list_ = new ZoneList<T*>(initial_size);
255 list_ = new ZoneList<T*>(initial_size);
prettyprinter.cc 466 const int initial_size = 256; local
467 output_ = NewArray<char>(initial_size);
468 size_ = initial_size;
  /libcore/libart/src/main/java/java/lang/
Class.java 761 int initial_size = virtualMethods == null ? 0 : virtualMethods.length; local
762 initial_size += directMethods == null ? 0 : directMethods.length;
763 ArrayList<Method> methods = new ArrayList<Method>(initial_size);
899 int initial_size = sFields == null ? 0 : sFields.length; local
    [all...]
  /external/chromium/chrome/browser/ui/views/tab_contents/
tab_contents_view_views.cc 64 void TabContentsViewViews::CreateView(const gfx::Size& initial_size) {
  /external/chromium_org/chrome/browser/web_applications/
web_app_mac.mm 51 ScopedCarbonHandle(size_t initial_size) : handle_(NewHandle(initial_size)) {
  /external/chromium_org/content/shell/renderer/
webkit_test_runner.cc 668 WebSize(params.initial_size.width(), params.initial_size.height()));
  /ndk/sources/host-tools/sed-4.2.1/sed/
execute.c 389 static void line_init P_((struct line *, struct line *, size_t initial_size));
391 line_init(buf, state, initial_size)
394 size_t initial_size;
396 buf->text = MALLOC(initial_size, char);
398 buf->alloc = initial_size;
    [all...]
  /external/chromium_org/content/browser/download/
download_browsertest.cc 1037 int initial_size = 0; local
1042 EXPECT_EQ(GetSafeBufferChunk(), initial_size); local
    [all...]
  /external/chromium_org/content/shell/browser/
webkit_test_controller.cc 492 params.initial_size = initial_size_;
  /external/v8/test/cctest/
test-heap.cc 1200 int initial_size = static_cast<int>(HEAP->SizeOfObjects()); local
    [all...]
  /ndk/sources/host-tools/make-3.81/
alloca.c 319 long initial_size; /* Size of initial segment. */ member in struct:stk_stat
  /ndk/sources/host-tools/sed-4.2.1/lib/
alloca.c 307 long initial_size; /* Size of initial segment. */ member in struct:stk_stat
  /external/chromium/chrome/browser/sync/engine/
syncer_util.cc 634 size_t initial_size = commit_ids->size(); local
639 std::reverse(commit_ids->begin() + initial_size, commit_ids->end());
    [all...]
  /art/runtime/gc/
heap.cc 69 Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max_free,
93 max_allowed_footprint_(initial_size),
94 native_footprint_gc_watermark_(initial_size),
95 native_footprint_limit_(2 * initial_size),
104 concurrent_start_bytes_(concurrent_gc_ ? initial_size - kMinConcurrentRemainingBytes
166 initial_size,
    [all...]

Completed in 374 milliseconds

1 23 4