HomeSort by relevance Sort by last modified time
    Searched full:max_length (Results 151 - 175 of 347) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dist.py 697 def print_command_list(self, commands, header, max_length):
712 print(" %-*s %s" % (max_length, cmd, description))
733 max_length = 0
735 if len(cmd) > max_length:
736 max_length = len(cmd)
740 max_length)
745 max_length)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
dist.py 697 def print_command_list(self, commands, header, max_length):
712 print(" %-*s %s" % (max_length, cmd, description))
733 max_length = 0
735 if len(cmd) > max_length:
736 max_length = len(cmd)
740 max_length)
745 max_length)
    [all...]
  /external/chromium_org/components/json_schema/
json_schema_validator.cc 763 int max_length = 0; local
764 if (schema->GetInteger(schema::kMaxLength, &max_length)) {
765 CHECK(max_length >= 0);
766 if (value.size() > static_cast<size_t>(max_length)) {
768 kStringMaxLength, base::IntToString(max_length))));
  /external/chromium_org/third_party/zlib/
trees.c 127 int max_length; /* max bit length for the codes */ member in struct:static_tree_desc_s
503 int max_length = desc->stat_desc->max_length; local
521 if (bits > max_length) bits = max_length, overflow++;
541 bits = max_length-1;
545 s->bl_count[max_length]--;
547 * but this does not affect bl_count[max_length]
557 for (bits = max_length; bits != 0; bits--) {
    [all...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_trees.c 122 int max_length; /* max bit length for the codes */ member in struct:static_tree_desc_s
497 int max_length = desc->stat_desc->max_length; local
515 if (bits > max_length) bits = max_length, overflow++;
535 bits = max_length-1;
539 s->bl_count[max_length]--;
541 * but this does not affect bl_count[max_length]
551 for (bits = max_length; bits != 0; bits--) {
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
trees.c 122 int max_length; /* max bit length for the codes */ member in struct:static_tree_desc_s
497 int max_length = desc->stat_desc->max_length; local
515 if (bits > max_length) bits = max_length, overflow++;
535 bits = max_length-1;
539 s->bl_count[max_length]--;
541 * but this does not affect bl_count[max_length]
551 for (bits = max_length; bits != 0; bits--) {
    [all...]
  /external/zlib/src/
trees.c 122 int max_length; /* max bit length for the codes */ member in struct:static_tree_desc_s
497 int max_length = desc->stat_desc->max_length; local
515 if (bits > max_length) bits = max_length, overflow++;
535 bits = max_length-1;
539 s->bl_count[max_length]--;
541 * but this does not affect bl_count[max_length]
551 for (bits = max_length; bits != 0; bits--) {
    [all...]
  /external/chromium_org/chrome/browser/extensions/
menu_manager.h 196 // result will be no longer than |max_length|.
198 size_t max_length) const;
menu_manager.cc 174 size_t max_length) const {
180 if (result.length() > max_length)
181 result = gfx::TruncateString(result, max_length, gfx::WORD_BREAK);
  /external/chromium_org/chrome/browser/password_manager/
chrome_password_manager_client.cc 403 int max_length,
416 max_length,
  /external/chromium_org/net/disk_cache/blockfile/
eviction_v3.cc 271 int max_length = (index_load < 25) ? header_->num_entries * 2 / 5 : local
273 return (!test_mode_ && header_->lru.sizes[Rankings::DELETED] > max_length);
  /external/chromium_org/net/server/
web_socket.cc 349 static size_t max_length = std::numeric_limits<size_t>::max(); local
351 payload_length64 + actual_masking_key_length > max_length) {
  /external/chromium_org/third_party/tcmalloc/chromium/src/
common.h 115 // go over its max_length() before shrinking max_length().
  /external/chromium_org/tools/usb_gadget/
usb_descriptors.py 182 max_length = max(len(field.name) for field in self._fields)
187 '{}:'.format(field.name).ljust(max_length+1),
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 98 explicit InternalScopedString(uptr max_length)
99 : InternalScopedBuffer<char>(max_length), length_(0) {
  /ndk/sources/host-tools/sed-4.2.1/sed/
fmt.c 208 fmt (const char *line, const char *line_end, int max_length, FILE *output_file)
214 max_width = max_length;
sed.h 211 extern void fmt P_ ((const char *line, const char *line_end, int max_length, FILE *output_file));
  /external/libcxx/include/
__locale 859 int max_length() const _NOEXCEPT
944 int max_length() const _NOEXCEPT
1028 int max_length() const _NOEXCEPT
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
__locale 871 int max_length() const _NOEXCEPT
956 int max_length() const _NOEXCEPT
1040 int max_length() const _NOEXCEPT
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/
__locale 871 int max_length() const _NOEXCEPT
956 int max_length() const _NOEXCEPT
1040 int max_length() const _NOEXCEPT
    [all...]
  /external/chromium_org/base/files/
file_util_win.cc 713 DWORD max_length = 0; local
714 if (!GetVolumeInformationW(volume_path, NULL, 0, NULL, &max_length, NULL,
724 return std::min(whole_path_limit, static_cast<int>(max_length));
  /external/chromium_org/components/autofill/core/browser/
form_structure.cc 197 if (field.max_length == 1)
261 if (field.max_length == 5)
263 else if (field.max_length == 7)
273 if (field.max_length == 2)
275 else if (field.max_length == 4)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
neteq_impl.cc 158 int NetEqImpl::GetAudio(size_t max_length, int16_t* output_audio,
163 int error = GetAudioInternal(max_length, output_audio, samples_per_channel,
673 int NetEqImpl::GetAudioInternal(size_t max_length, int16_t* output,
788 if (num_output_samples > max_length) {
789 LOG(LS_WARNING) << "Output array is too short. " << max_length << " < " <<
791 num_output_samples = max_length;
793 max_length / sync_buffer_->Channels());
    [all...]
  /external/chromium_org/content/common/gpu/media/
dxva_video_decode_accelerator.cc 123 DWORD max_length = 0; local
126 hr = buffer->Lock(&destination, &max_length, &current_length);
130 CHECK_GE(static_cast<int>(max_length), size);
    [all...]
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_provider_win.cc 923 static const size_t max_length = MAX_PATH - arraysize(extension); local
924 if (validated->size() > max_length)
925 validated->erase(max_length);
    [all...]

Completed in 712 milliseconds

1 2 3 4 5 67 8 91011>>