Searched refs:maximum_size (Results 1 - 23 of 23) sorted by relevance

/external/elfutils/0.153/libelf/
H A 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))
H A Delf_rawfile.c84 *ptr = elf->maximum_size;
H A Delf_update.c82 && (elf->maximum_size == ~((size_t) 0)
83 || (size_t) size > elf->maximum_size)
124 && elf->maximum_size != ~((size_t) 0)
125 && (size_t) size < elf->maximum_size
145 elf->maximum_size = size;
H A Delf_clone.c78 elf->maximum_size, elf->cmd, elf->parent, elf->kind,
H A Dcommon.h105 result->maximum_size = maxsize;
H A Delf32_getphdr.c108 if (ehdr->e_phoff > elf->maximum_size
109 || elf->maximum_size - ehdr->e_phoff < size)
H A Delf_getarsym.c121 if (SARMAG + sizeof (struct ar_hdr) > elf->maximum_size)
181 if (SARMAG + sizeof (struct ar_hdr) + index_size > elf->maximum_size
H A Delf_getdata_rawchunk.c82 || offset + size > elf->maximum_size))
H A Delf_end.c241 munmap (elf->map_address, elf->maximum_size);
H A Delf_getdata.c268 if (unlikely (offset + size > elf->maximum_size))
H A DlibelfP.h309 size_t maximum_size; member in struct:Elf
H A Delf32_updatefile.c257 + elf->maximum_size));
275 + elf->maximum_size))
H A Delf_begin.c673 if (offset + sizeof (struct ar_hdr) > elf->maximum_size)
768 > elf->start_offset + elf->maximum_size))
/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_dialog_sign_in_delegate.cc52 const gfx::Size& maximum_size)
64 UpdateLimitsAndEnableAutoResize(minimum_size, maximum_size);
120 const gfx::Size& maximum_size) {
122 maximum_size_ = maximum_size;
47 AutofillDialogSignInDelegate( AutofillDialogView* dialog_view, content::WebContents* dialog_web_contents, content::WebContents* originating_web_contents, const gfx::Size& minimum_size, const gfx::Size& maximum_size) argument
118 UpdateLimitsAndEnableAutoResize( const gfx::Size& minimum_size, const gfx::Size& maximum_size) argument
H A Dautofill_dialog_sign_in_delegate.h30 const gfx::Size& maximum_size);
54 const gfx::Size& maximum_size);
/external/arduino/hardware/arduino/
H A 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
[all...]
/external/elfutils/0.153/libdwfl/
H A Dcore-file.c89 || unlikely (offset >= (loff_t) parent->maximum_size))
98 if (unlikely (parent->maximum_size - offset < sizeof h))
116 || unlikely ((loff_t) parent->maximum_size - offset < size))
120 if (unlikely ((loff_t) parent->maximum_size - offset < size))
128 && unlikely (size == (loff_t) parent->maximum_size))
324 (void) more (elf->maximum_size - start);
328 if (unlikely (end > elf->maximum_size))
329 end = elf->maximum_size;
H A Dopen.c80 const size_t mapped_size = (*elf)->maximum_size;
160 elf->maximum_size);
166 elf->state.ar.elf_ar_hdr.ar_size = elf->maximum_size - offset;
/external/chromium_org/extensions/browser/api/app_window/
H A Dapp_window_api.cc106 create_spec->maximum_size.set_width(*input_spec->max_width);
108 create_spec->maximum_size.set_height(*input_spec->max_height);
434 gfx::Size& maximum_size = params->content_spec.maximum_size; local
436 maximum_size.set_width(*options.max_width);
438 maximum_size.set_height(*options.max_height);
/external/chromium_org/ui/aura/test/
H A Dtest_window_delegate.h37 void set_maximum_size(const gfx::Size& maximum_size) { argument
38 maximum_size_ = maximum_size;
/external/chromium_org/extensions/browser/app_window/
H A Dapp_window.cc193 window_spec.maximum_size, content_spec.maximum_size, frame_insets));
208 return GetCombinedContentConstraints(window_spec.maximum_size,
209 content_spec.maximum_size,
222 return GetCombinedWindowConstraints(window_spec.maximum_size,
223 content_spec.maximum_size,
H A Dapp_window.h135 gfx::Size maximum_size; member in struct:extensions::AppWindow::BoundsSpecification
/external/chromium_org/chrome/browser/
H A Dcharacter_encoding.cc235 // The parameter |maximum_size| indicates maximum size of encoding items we
239 size_t maximum_size) {
248 if (available_list->size() == maximum_size)
237 ParseEncodingListSeparatedWithComma( const std::string& encoding_list, std::vector<int>* const available_list, size_t maximum_size) argument

Completed in 5558 milliseconds