HomeSort by relevance Sort by last modified time
    Searched full:bytesize (Results 51 - 75 of 240) sorted by null

1 23 4 5 6 7 8 910

  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
message_lite.h 170 // are just simple wrappers around ByteSize() and SerializeWithCachedSizes().
211 // ByteSize() on all embedded messages. If a subclass does not override
213 virtual int ByteSize() const = 0;
216 // not have changed since the last call to ByteSize(); if it has, the results
223 // must point at a byte array of at least ByteSize() bytes.
226 // Returns the result of the last call to ByteSize(). An embedded message's
231 // ByteSize() does not automatically use the cached size when available
wire_format.h 120 // Implements Message::ByteSize() via reflection. WARNING: The result
122 // will have their ByteSize() methods called, so their sizes will be cached.
125 static int ByteSize(const Message& message);
198 // will call ByteSize() for the embedded message, insuring that it caches
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
message_lite.h 170 // are just simple wrappers around ByteSize() and SerializeWithCachedSizes().
211 // ByteSize() on all embedded messages. If a subclass does not override
213 virtual int ByteSize() const = 0;
216 // not have changed since the last call to ByteSize(); if it has, the results
223 // must point at a byte array of at least ByteSize() bytes.
226 // Returns the result of the last call to ByteSize(). An embedded message's
231 // ByteSize() does not automatically use the cached size when available
wire_format.h 120 // Implements Message::ByteSize() via reflection. WARNING: The result
122 // will have their ByteSize() methods called, so their sizes will be cached.
125 static int ByteSize(const Message& message);
198 // will call ByteSize() for the embedded message, insuring that it caches
  /external/protobuf/python/google/protobuf/internal/
reflection_test.py 227 self.assertEquals(2, message.ByteSize())
231 self.assertEquals(3, message.ByteSize())
234 self.assertEquals(3, message.ByteSize())
238 self.assertEquals(3, message.ByteSize())
    [all...]
encoder.py 286 result += element.ByteSize()
291 return tag_size + value.ByteSize()
305 l = element.ByteSize()
311 l = value.ByteSize()
336 l = value.ByteSize()
747 local_EncodeVarint(write, element.ByteSize())
753 local_EncodeVarint(write, value.ByteSize())
784 local_EncodeVarint(write, value.ByteSize())
  /external/webrtc/talk/app/webrtc/objc/public/
RTCFileLogger.h 48 // will not exceed the given maximum bytesize. When the maximum bytesize is
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
message_lite.h 198 // are just simple wrappers around ByteSize() and SerializeWithCachedSizes().
239 // ByteSize() on all embedded messages. If a subclass does not override
242 // ByteSize() is generally linear in the number of fields defined for the
244 virtual int ByteSize() const = 0;
247 // not have changed since the last call to ByteSize(); if it has, the results
254 // must point at a byte array of at least ByteSize() bytes.
257 // Returns the result of the last call to ByteSize(). An embedded message's
262 // ByteSize() does not automatically use the cached size when available
  /system/tpm/trunks/
trunks_binder_proxy.cc 78 command_proto_data.resize(command_proto.ByteSize());
99 command_proto_data.resize(command_proto.ByteSize());
  /hardware/bsp/intel/peripheral/libmraa/api/mraa/
uart.hpp 200 * @param bytesize data bits
206 setMode(int bytesize, UartParity parity, int stopbits)
208 return (Result) mraa_uart_set_mode(m_uart, bytesize, (mraa_uart_parity_t) parity, stopbits);
uart.h 92 * @param bytesize data bits
97 mraa_result_t mraa_uart_set_mode(mraa_uart_context dev, int bytesize, mraa_uart_parity_t parity, int stopbits);
  /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
serialutil.py 241 bytesize=EIGHTBITS, # number of data bits
271 self.bytesize = bytesize
354 def setByteSize(self, bytesize):
356 if bytesize not in self.BYTESIZES: raise ValueError("Not a valid byte size: %r" % (bytesize,))
357 self._bytesize = bytesize
364 bytesize = property(getByteSize, setByteSize, doc="Byte size setting") variable in class:SerialBase
488 _SETTINGS = ('baudrate', 'bytesize', 'parity', 'stopbits', 'xonxoff',
508 return "%s<id=0x%x, open=%s>(port=%r, baudrate=%r, bytesize=%r, parity=%r, stopbits=%r, timeout=%r, xonxoff=%r, rtscts=%r, dsrdtr=%r)" %
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 145 const unsigned ByteSize = 1U << i;
146 const unsigned BitSize = ByteSize * 8;
147 std::string ByteSizeStr = utostr(ByteSize);
514 const unsigned ByteSize = 1U << Idx;
515 const unsigned BitSize = ByteSize * 8;
528 const unsigned ByteSize = 1U << Idx;
529 const unsigned BitSize = ByteSize * 8;
545 const unsigned ByteSize = 1U << Idx;
546 const unsigned BitSize = ByteSize * 8;
559 const unsigned ByteSize = 1U << Idx
    [all...]
  /prebuilts/go/darwin-x86/src/debug/dwarf/
type.go 25 ByteSize int64 // size of value of this type, in bytes
31 func (c *CommonType) Size() int64 { return c.ByteSize }
157 ByteSize int64
158 BitOffset int64 // within the ByteSize bytes at ByteOffset
195 // The only indication of its native integer type is its ByteSize
442 switch byteSize, _ := e.Val(AttrByteSize).(int64); byteSize {
525 f.ByteSize, _ = kid.Val(AttrByteSize).(int64)
682 typ.Common().ByteSize = b
  /prebuilts/go/linux-x86/src/debug/dwarf/
type.go 25 ByteSize int64 // size of value of this type, in bytes
31 func (c *CommonType) Size() int64 { return c.ByteSize }
157 ByteSize int64
158 BitOffset int64 // within the ByteSize bytes at ByteOffset
195 // The only indication of its native integer type is its ByteSize
442 switch byteSize, _ := e.Val(AttrByteSize).(int64); byteSize {
525 f.ByteSize, _ = kid.Val(AttrByteSize).(int64)
682 typ.Common().ByteSize = b
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
wire_format.h 120 // Implements Message::ByteSize() via reflection. WARNING: The result
122 // will have their ByteSize() methods called, so their sizes will be cached.
125 static int ByteSize(const Message& message);
198 // will call ByteSize() for the embedded message, insuring that it caches
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
wire_format.h 120 // Implements Message::ByteSize() via reflection. WARNING: The result
122 // will have their ByteSize() methods called, so their sizes will be cached.
125 static int ByteSize(const Message& message);
198 // will call ByteSize() for the embedded message, insuring that it caches
  /toolchain/binutils/binutils-2.25/bfd/
mep-relocs.pl 130 if (length($mask) == 8) { $bytesize = 0; }
131 elsif (length($mask) == 16) { $bytesize = 1; }
132 elsif (length($mask) == 32) { $bytesize = 2; }
143 $c, $bytesize, $bits, $left, $right, $pcrel, $overflow, $mask);
  /external/nanopb-c/generator/google/protobuf/internal/
encoder.py 280 result += element.ByteSize()
285 return tag_size + value.ByteSize()
299 l = element.ByteSize()
305 l = value.ByteSize()
330 l = value.ByteSize()
729 local_EncodeVarint(write, element.ByteSize())
735 local_EncodeVarint(write, value.ByteSize())
765 local_EncodeVarint(write, value.ByteSize())
  /frameworks/opt/bitmap/src/com/android/bitmap/
DecodeTask.java 152 Trace.beginSection("get bytesize");
153 final long byteSize;
155 byteSize = fd.getStatSize();
157 byteSize = -1;
172 orientation = Exif.getOrientation(in, byteSize);
  /external/icu/icu4c/source/common/
ucol_swp.cpp 648 header.byteSize=udata_readInt32(ds, inHeader->byteSize);
651 (uint32_t)(length-headerSize)<(header.byteSize=udata_readInt32(ds, inHeader->byteSize)))
662 uprv_memcpy(outBytes, inBytes, header.byteSize);
667 /* read more of the InverseUCATableHeader (the byteSize field was read above) */
685 return headerSize+header.byteSize;
  /art/runtime/gc/allocator/
rosalloc.cc 132 size_t fpr_byte_size = fpr->ByteSize(this);
149 DCHECK_EQ(remainder->ByteSize(this) % kPageSize, static_cast<size_t>(0));
158 DCHECK_EQ(fpr->ByteSize(this) % kPageSize, static_cast<size_t>(0));
176 last_free_page_run_size = last_free_page_run->ByteSize(this);
197 DCHECK_EQ(last_free_page_run_size, last_free_page_run->ByteSize(this));
199 DCHECK_EQ(last_free_page_run->ByteSize(this) % kPageSize, static_cast<size_t>(0));
208 DCHECK_EQ(new_free_page_run->ByteSize(this) % kPageSize, static_cast<size_t>(0));
232 size_t fpr_byte_size = fpr->ByteSize(this);
247 DCHECK_EQ(remainder->ByteSize(this) % kPageSize, static_cast<size_t>(0));
255 DCHECK_EQ(fpr->ByteSize(this) % kPageSize, static_cast<size_t>(0))
    [all...]
  /external/protobuf/src/google/protobuf/
message.cc 146 int Message::ByteSize() const {
147 int size = WireFormat::ByteSize(*this);
154 << "\" implements neither SetCachedSize() nor ByteSize(). "
  /external/skia/src/gpu/effects/
GrConvexPolyEffect.cpp 222 size_t byteSize = 3 * cpe.getEdgeCount() * sizeof(SkScalar);
223 if (0 != memcmp(fPrevEdges, cpe.getEdges(), byteSize)) {
225 memcpy(fPrevEdges, cpe.getEdges(), byteSize);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc 594 int size = message1.ByteSize();
608 int packed_size = packed_message1.ByteSize();
622 int size = message1.ByteSize();
641 int size = message1.ByteSize();
776 EXPECT_EQ(3, message.ByteSize());
    [all...]

Completed in 690 milliseconds

1 23 4 5 6 7 8 910