Home
last modified time | relevance | path

Searched refs:maximum_size (Results 1 – 25 of 25) sorted by relevance

/external/arduino/hardware/arduino/
Dboards.txt5 uno.upload.maximum_size=32256
23 atmega328.upload.maximum_size=30720
43 diecimila.upload.maximum_size=14336
63 mega2560.upload.maximum_size=258048
83 mega.upload.maximum_size=126976
103 mini.upload.maximum_size=14336
123 fio.upload.maximum_size=30720
143 bt328.upload.maximum_size=28672
164 bt.upload.maximum_size=14336
185 lilypad328.upload.maximum_size=30720
[all …]
/external/elfutils/0.153/libelf/
Delf_readall.c112 if (elf->maximum_size == ~((size_t) 0))
122 elf->maximum_size = (size_t) st.st_size;
131 mem = (char *) malloc (elf->maximum_size);
136 elf->maximum_size,
138 != elf->maximum_size))
Delf_update.c82 && (elf->maximum_size == ~((size_t) 0) in write_file()
83 || (size_t) size > elf->maximum_size) in write_file()
124 && elf->maximum_size != ~((size_t) 0) in write_file()
125 && (size_t) size < elf->maximum_size in write_file()
145 elf->maximum_size = size; in write_file()
Delf_rawfile.c84 *ptr = elf->maximum_size;
Delf_getarsym.c121 if (SARMAG + sizeof (struct ar_hdr) > elf->maximum_size)
181 if (SARMAG + sizeof (struct ar_hdr) + index_size > elf->maximum_size
Delf_clone.c78 elf->maximum_size, elf->cmd, elf->parent, elf->kind, in elf_clone()
Delf32_getphdr.c108 if (ehdr->e_phoff > elf->maximum_size
109 || elf->maximum_size - ehdr->e_phoff < size)
Dcommon.h105 result->maximum_size = maxsize; in allocate_elf()
Delf_getdata_rawchunk.c82 || offset + size > elf->maximum_size))
Delf_end.c241 munmap (elf->map_address, elf->maximum_size);
Delf32_updatefile.c257 + elf->maximum_size)); in __elfw2()
275 + elf->maximum_size)) in __elfw2()
DlibelfP.h309 size_t maximum_size; member
Delf_getdata.c268 if (unlikely (offset + size > elf->maximum_size)) in __libelf_set_rawdata_wrlock()
Delf_begin.c673 if (offset + sizeof (struct ar_hdr) > elf->maximum_size) in read_long_names()
768 > elf->start_offset + elf->maximum_size))
/external/elfutils/0.153/libdwfl/
Dcore-file.c89 || unlikely (offset >= (loff_t) parent->maximum_size)) in elf_begin_rand()
98 if (unlikely (parent->maximum_size - offset < sizeof h)) in elf_begin_rand()
116 || unlikely ((loff_t) parent->maximum_size - offset < size)) in elf_begin_rand()
120 if (unlikely ((loff_t) parent->maximum_size - offset < size)) in elf_begin_rand()
128 && unlikely (size == (loff_t) parent->maximum_size)) in elf_begin_rand()
324 (void) more (elf->maximum_size - start); in dwfl_elf_phdr_memory_callback()
328 if (unlikely (end > elf->maximum_size)) in dwfl_elf_phdr_memory_callback()
329 end = elf->maximum_size; in dwfl_elf_phdr_memory_callback()
Dopen.c80 const size_t mapped_size = (*elf)->maximum_size; in decompress()
160 elf->maximum_size); in __libdw_open_file()
166 elf->state.ar.elf_ar_hdr.ar_size = elf->maximum_size - offset; in __libdw_open_file()
/external/chromium_org/chrome/browser/ui/autofill/
Dautofill_dialog_sign_in_delegate.cc52 const gfx::Size& maximum_size) in AutofillDialogSignInDelegate() argument
64 UpdateLimitsAndEnableAutoResize(minimum_size, maximum_size); in AutofillDialogSignInDelegate()
120 const gfx::Size& maximum_size) { in UpdateLimitsAndEnableAutoResize() argument
122 maximum_size_ = maximum_size; in UpdateLimitsAndEnableAutoResize()
Dautofill_dialog_sign_in_delegate.h30 const gfx::Size& maximum_size);
54 const gfx::Size& maximum_size);
/external/chromium_org/extensions/browser/api/app_window/
Dapp_window_api.cc106 create_spec->maximum_size.set_width(*input_spec->max_width); in CopyBoundsSpec()
108 create_spec->maximum_size.set_height(*input_spec->max_height); in CopyBoundsSpec()
434 gfx::Size& maximum_size = params->content_spec.maximum_size; in GetBoundsSpec() local
436 maximum_size.set_width(*options.max_width); in GetBoundsSpec()
438 maximum_size.set_height(*options.max_height); in GetBoundsSpec()
/external/chromium_org/ui/aura/test/
Dtest_window_delegate.h37 void set_maximum_size(const gfx::Size& maximum_size) { in set_maximum_size() argument
38 maximum_size_ = maximum_size; in set_maximum_size()
/external/chromium_org/extensions/browser/app_window/
Dapp_window.cc193 window_spec.maximum_size, content_spec.maximum_size, frame_insets)); in GetInitialWindowBounds()
208 return GetCombinedContentConstraints(window_spec.maximum_size, in GetContentMaximumSize()
209 content_spec.maximum_size, in GetContentMaximumSize()
222 return GetCombinedWindowConstraints(window_spec.maximum_size, in GetWindowMaximumSize()
223 content_spec.maximum_size, in GetWindowMaximumSize()
Dapp_window.h135 gfx::Size maximum_size; member
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
Dautofill_sign_in_container.mm30 const gfx::Size& maximum_size,
36 maximum_size),
/external/chromium_org/chrome/browser/
Dcharacter_encoding.cc239 size_t maximum_size) { in ParseEncodingListSeparatedWithComma() argument
248 if (available_list->size() == maximum_size) in ParseEncodingListSeparatedWithComma()
/external/chromium_org/chrome/browser/ui/cocoa/apps/
Dnative_app_window_cocoa.mm945 gfx::Size maximum_size = size_constraints_.GetMaximumSize();
947 CGFloat max_width = maximum_size.width() == kUnboundedSize ?
948 CGFLOAT_MAX : maximum_size.width();
949 CGFloat max_height = maximum_size.height() == kUnboundedSize ?
950 CGFLOAT_MAX : maximum_size.height();