HomeSort by relevance Sort by last modified time
    Searched refs:byte_size (Results 1 - 16 of 16) sorted by null

  /external/protobuf/python/google/protobuf/internal/
wire_format_test.py 201 def __init__(self, byte_size):
202 self.byte_size = byte_size
204 return self.byte_size
207 mock_message = MockMessage(byte_size=message_byte_size)
218 self.assertEqual(2 + mock_message.byte_size,
221 self.assertEqual(3 + mock_message.byte_size,
224 mock_message.byte_size = 128
225 self.assertEqual(4 + mock_message.byte_size,
232 mock_message.byte_size = 1
    [all...]
  /external/protobuf/src/google/protobuf/
message_lite.cc 279 int byte_size = ByteSize(); local
280 STLStringResizeUninitialized(output, old_size + byte_size);
283 if (end - start != byte_size) {
284 ByteSizeConsistencyError(byte_size, ByteSize(), end - start);
305 int byte_size = ByteSize(); local
306 if (size < byte_size) return false;
309 if (end - start != byte_size) {
310 ByteSizeConsistencyError(byte_size, ByteSize(), end - start);
  /external/llvm/lib/Support/
DataExtractor.cpp 92 DataExtractor::getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const {
93 switch (byte_size) {
107 DataExtractor::getSigned(uint32_t *offset_ptr, uint32_t byte_size) const {
108 switch (byte_size) {
  /external/chromium/chrome/browser/safe_browsing/
bloom_filter.cc 140 int byte_size = static_cast<int>(remaining64); local
141 scoped_array<char> data(new char[byte_size]);
142 bytes_read = filter.Read(data.get(), byte_size, NULL);
143 if (bytes_read < byte_size) {
146 } else if (bytes_read != byte_size) {
152 return new BloomFilter(data.release(), byte_size, hash_keys);
  /external/v8/src/
heap-inl.h 332 void Heap::CopyBlock(Address dst, Address src, int byte_size) {
333 ASSERT(IsAligned(byte_size, kPointerSize));
336 byte_size / kPointerSize);
342 int byte_size) {
343 ASSERT(IsAligned(byte_size, kPointerSize));
348 for (int remaining = byte_size / kPointerSize;
365 void Heap::MoveBlock(Address dst, Address src, int byte_size) {
366 ASSERT(IsAligned(byte_size, kPointerSize));
368 int size_in_words = byte_size / kPointerSize;
370 if ((dst < src) || (dst >= (src + byte_size))) {
    [all...]
heap.h     [all...]
  /external/elfutils/tests/
run-show-die-info.sh 48 Attrs : name byte_size encoding
72 Attrs : name byte_size encoding
116 Attrs : name byte_size encoding
146 Attrs : name byte_size encoding
157 Attrs : name byte_size encoding
178 Attrs : name byte_size encoding
184 Attrs : sibling name byte_size decl_file decl_line
210 Attrs : name byte_size encoding
216 Attrs : byte_size
232 Attrs : name byte_size encodin
    [all...]
  /external/llvm/include/llvm/Support/
DataExtractor.h 59 /// Extract an unsigned integer of size \a byte_size from \a
64 /// is specified by the \a byte_size argument. \a byte_size should
67 /// \a byte_size values less than 1 or greater than 8 will result in
77 /// @param[in] byte_size
83 uint64_t getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const;
85 /// Extract an signed integer of size \a byte_size from \a *offset_ptr.
89 /// the extracted integer is specified by the \a byte_size argument.
90 /// \a byte_size should have a value greater than or equal to one
92 /// bits wide. Any \a byte_size values less than 1 or greater tha
    [all...]
  /external/bluetooth/glib/glib/
gstrfuncs.h 221 guint byte_size) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(2);
gstrfuncs.c 113 guint byte_size)
119 new_mem = g_malloc (byte_size);
120 memcpy (new_mem, mem, byte_size);
    [all...]
  /external/chromium/base/
string_util.cc 260 const size_t byte_size,
263 if (byte_size > input.length()) {
267 DCHECK_LE(byte_size, static_cast<uint32>(kint32max));
269 int32 truncation_length = static_cast<int32>(byte_size);
    [all...]
string_util.h 209 const size_t byte_size,
string_util_unittest.cc 59 bool Truncated(const std::string& input, const size_t byte_size,
62 TruncateUTF8ToByteSize(input, byte_size, output);
71 // Empty strings and invalid byte_size arguments
    [all...]
  /external/v8/src/x64/
disasm-x64.cc 197 void SetTableRange(InstructionType type, byte start, byte end, bool byte_size,
248 bool byte_size,
255 id->byte_size_operation = byte_size;
327 BYTE_SIZE = 0,
363 if (byte_size_operand_) return BYTE_SIZE;
556 case BYTE_SIZE:
676 OperandSize immediate_size = byte_size_immediate ? BYTE_SIZE : operand_size();
    [all...]
  /external/libxml2/
parserInternals.c 1943 unsigned int byte_size; local
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 394 long byte_size )
397 ras.buffer_size = byte_size;
    [all...]

Completed in 722 milliseconds