HomeSort by relevance Sort by last modified time
    Searched defs:max_length (Results 51 - 68 of 68) sorted by null

1 23

  /ndk/tests/device/test-gnustl-full/unit/
fstream_test.cpp 679 int max_length() const throw() function in class:std::codecvt
  /ndk/tests/device/test-stlport/unit/
fstream_test.cpp 679 int max_length() const throw() function in class:std::codecvt
  /external/chromium_org/base/
file_util_win.cc 669 DWORD max_length = 0; local
670 if (!GetVolumeInformationW(volume_path, NULL, 0, NULL, &max_length, NULL,
680 return std::min(whole_path_limit, static_cast<int>(max_length));
  /external/chromium_org/components/json_schema/
json_schema_validator.cc 698 int max_length = 0; local
699 if (schema->GetInteger(schema::kMaxLength, &max_length)) {
700 CHECK(max_length >= 0);
701 if (value.size() > static_cast<size_t>(max_length)) {
703 kStringMaxLength, base::IntToString(max_length))));
  /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/net/server/
web_socket.cc 333 static size_t max_length = std::numeric_limits<size_t>::max(); local
335 payload_length64 + actual_masking_key_length > 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/openfst/src/include/fst/
randgen.h 167 // The 'max_length' may be interpreted (including ignored) by a
170 int max_length = INT_MAX)
173 max_length_(max_length) {}
187 // 'max_length' has been deemed reached. Use the iterator members to
244 ArcSampler(const Fst<A> &fst, const S &arc_selector, int max_length = INT_MAX)
247 max_length_(max_length),
589 int max_length; // Maximum path length member in struct:fst::RandGenOptions
598 max_length(len),
688 Sampler* arc_sampler = new Sampler(ifst, opts.arc_selector, opts.max_length);
  /external/qemu/distrib/zlib-1.2.3/
trees.c 126 int max_length; /* max bit length for the codes */ member in struct:static_tree_desc_s
499 int max_length = desc->stat_desc->max_length; local
517 if (bits > max_length) bits = max_length, overflow++;
537 bits = max_length-1;
541 s->bl_count[max_length]--;
543 * but this does not affect bl_count[max_length]
553 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/components/autofill/core/browser/
autofill_manager_unittest.cc 2152 size_t max_length; member in struct:autofill::__anon7372
    [all...]
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_provider_win.cc 914 static const size_t max_length = MAX_PATH - arraysize(extension); local
915 if (validated->size() > max_length)
916 validated->erase(max_length);
    [all...]
  /external/chromium_org/v8/src/
jsregexp.cc 6028 int max_length = data->tree->max_match(); local
    [all...]
  /external/v8/src/
jsregexp.cc 5270 int max_length = data->tree->max_match(); local
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree.h 4316 const int max_length; member in struct:attribute_spec
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree.h 4316 const int max_length; member in struct:attribute_spec
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree.h 4316 const int max_length; member in struct:attribute_spec
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree.h 4316 const int max_length; member in struct:attribute_spec
    [all...]

Completed in 524 milliseconds

1 23