HomeSort by relevance Sort by last modified time
    Searched refs:start_size (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/media/cast/transport/rtcp/
rtcp_builder.cc 66 size_t start_size = packet->size(); local
67 if (start_size + 52 > kMaxIpPacketSize) {
73 packet->resize(start_size + 28);
76 reinterpret_cast<char*>(&((*packet)[start_size])), 28);
90 size_t start_size = packet->size(); local
91 if (start_size + 12 + c_name_.length() > kMaxIpPacketSize) {
97 packet->resize(start_size + 10);
100 reinterpret_cast<char*>(&((*packet)[start_size])), 10);
106 uint32 sdes_length_position = static_cast<uint32>(start_size) + 3;
136 size_t start_size = packet->size() local
172 size_t start_size = packet->size(); local
    [all...]
  /external/chromium_org/media/cast/rtcp/
rtcp_sender.cc 215 size_t start_size = packet->size(); local
216 DCHECK_LT(start_size + 32, kMaxIpPacketSize) << "Not enough buffer space";
217 if (start_size + 32 > kMaxIpPacketSize)
221 packet->resize(start_size + 8);
224 reinterpret_cast<char*>(&((*packet)[start_size])), 8);
237 size_t start_size = packet->size(); local
238 DCHECK_LT(start_size + 24, kMaxIpPacketSize) << "Not enough buffer space";
239 if (start_size + 24 > kMaxIpPacketSize)
242 packet->resize(start_size + 24);
245 reinterpret_cast<char*>(&((*packet)[start_size])), 24)
266 size_t start_size = packet->size(); local
311 size_t start_size = packet->size(); local
338 size_t start_size = packet->size(); local
392 size_t start_size = packet->size(); local
433 size_t start_size = packet->size(); local
491 size_t start_size = packet->size(); local
508 size_t start_size = packet->size(); local
534 size_t start_size = packet->size(); local
    [all...]
rtcp_sender.h 93 size_t start_size,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/resize_policy/
hash_exponential_size_policy_imp.hpp 43 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
44 m_start_size(start_size),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/resize_policy/
hash_exponential_size_policy_imp.hpp 43 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
44 m_start_size(start_size),
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/resize_policy/
hash_exponential_size_policy_imp.hpp 43 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
44 m_start_size(start_size),
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/resize_policy/
hash_exponential_size_policy_imp.hpp 43 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
44 m_start_size(start_size),
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/resize_policy/
hash_exponential_size_policy_imp.hpp 43 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
44 m_start_size(start_size),
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/resize_policy/
hash_exponential_size_policy_imp.hpp 43 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
44 m_start_size(start_size),
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/resize_policy/
hash_exponential_size_policy_imp.hpp 43 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
44 m_start_size(start_size),
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/resize_policy/
hash_exponential_size_policy_imp.hpp 43 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
44 m_start_size(start_size),
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/resize_policy/
hash_exponential_size_policy_imp.hpp 43 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
44 m_start_size(start_size),
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/resize_policy/
hash_exponential_size_policy_imp.hpp 43 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
44 m_start_size(start_size),
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/resize_policy/
hash_exponential_size_policy_imp.hpp 43 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
44 m_start_size(start_size),
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/resize_policy/
hash_exponential_size_policy_imp.hpp 43 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
44 m_start_size(start_size),
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/resize_policy/
hash_exponential_size_policy_imp.hpp 43 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
44 m_start_size(start_size),
  /external/chromium_org/media/cast/transport/rtp_sender/rtp_packetizer/
rtp_packetizer.cc 84 size_t start_size = packet->data.size(); local
85 packet->data.resize(start_size + 4);
87 reinterpret_cast<char*>(&(packet->data[start_size])), 4);
125 size_t start_size = packet->size(); local
126 packet->resize(start_size + 10);
128 reinterpret_cast<char*>(&((*packet)[start_size])), 10);
  /external/lldb/include/lldb/Core/
UniqueCStringMap.h 225 const size_t start_size = values.size(); local
237 return values.size() - start_size;
243 const size_t start_size = values.size(); local
252 return values.size() - start_size;
  /external/jemalloc/test/integration/
rallocx.c 76 size_t start_size = start_sizes[i]; local
77 p = mallocx(start_size, MALLOCX_ZERO);
88 q = rallocx(p, start_size+j, MALLOCX_ZERO);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/
hash_policy.hpp 405 // Default constructor, or onstructor taking a start_size, or
407 // will use the sequence of sizes start_size, start_size*
408 // grow_factor, start_size* grow_factor^2, ...
409 hash_exponential_size_policy(size_type start_size = 8,
443 // Default constructor, or onstructor taking a start_size The
445 // start_size, start_size* 2, start_size* 2^2, ...
446 hash_prime_size_policy(size_type start_size = 8)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/
hash_policy.hpp 405 // Default constructor, or onstructor taking a start_size, or
407 // will use the sequence of sizes start_size, start_size*
408 // grow_factor, start_size* grow_factor^2, ...
409 hash_exponential_size_policy(size_type start_size = 8,
443 // Default constructor, or onstructor taking a start_size The
445 // start_size, start_size* 2, start_size* 2^2, ...
446 hash_prime_size_policy(size_type start_size = 8)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/
hash_policy.hpp 405 // Default constructor, or onstructor taking a start_size, or
407 // will use the sequence of sizes start_size, start_size*
408 // grow_factor, start_size* grow_factor^2, ...
409 hash_exponential_size_policy(size_type start_size = 8,
443 // Default constructor, or onstructor taking a start_size The
445 // start_size, start_size* 2, start_size* 2^2, ...
446 hash_prime_size_policy(size_type start_size = 8)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/
hash_policy.hpp 405 // Default constructor, or onstructor taking a start_size, or
407 // will use the sequence of sizes start_size, start_size*
408 // grow_factor, start_size* grow_factor^2, ...
409 hash_exponential_size_policy(size_type start_size = 8,
443 // Default constructor, or onstructor taking a start_size The
445 // start_size, start_size* 2, start_size* 2^2, ...
446 hash_prime_size_policy(size_type start_size = 8)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/
hash_policy.hpp 406 // Default constructor, or onstructor taking a start_size, or
408 // will use the sequence of sizes start_size, start_size*
409 // grow_factor, start_size* grow_factor^2, ...
410 hash_exponential_size_policy(size_type start_size = 8,
444 // Default constructor, or onstructor taking a start_size The
446 // start_size, start_size* 2, start_size* 2^2, ...
447 hash_prime_size_policy(size_type start_size = 8)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
hash_policy.hpp 418 /// Default constructor, or onstructor taking a start_size, or
420 /// will use the sequence of sizes start_size, start_size*
421 /// grow_factor, start_size* grow_factor^2, ...
422 hash_exponential_size_policy(size_type start_size = 8,
456 /// Default constructor, or onstructor taking a start_size The
458 /// start_size, start_size* 2, start_size* 2^2, ...
459 hash_prime_size_policy(size_type start_size = 8)
    [all...]

Completed in 571 milliseconds

1 2