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

1 2 3 45 6 7 8 910

  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfExpression.cpp 57 unsigned ByteSize = SizeInBits / SizeOfByte;
58 EmitUnsigned(ByteSize);
  /external/nanopb-c/generator/google/protobuf/
message.py 246 def ByteSize(self):
248 Recursively calls ByteSize() on all contained messages.
  /external/protobuf/python/google/protobuf/internal/
wire_format_test.py 114 # Test all numeric *ByteSize() functions.
203 def ByteSize(self):
  /external/protobuf/python/google/protobuf/
message.py 250 def ByteSize(self):
252 Recursively calls ByteSize() on all contained messages.
  /hardware/bsp/intel/peripheral/libmraa/src/uart/
uart.c 309 mraa_uart_set_mode(mraa_uart_context dev, int bytesize, mraa_uart_parity_t parity, int stopbits)
323 switch (bytesize) {
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map_entry.h 161 int ByteSize() const {
162 return entry_lite_.ByteSize();
empty.pb.h 78 int ByteSize() const;
wrappers.pb.h 86 int ByteSize() const;
177 int ByteSize() const;
268 int ByteSize() const;
359 int ByteSize() const;
450 int ByteSize() const;
541 int ByteSize() const;
632 int ByteSize() const;
723 int ByteSize() const;
822 int ByteSize() const;
    [all...]
  /external/autotest/client/cros/i2c/
usb_to_i2c.py 113 bytesize=serial.EIGHTBITS,
  /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
serialwin32.py 138 comDCB.ByteSize = 5
140 comDCB.ByteSize = 6
142 comDCB.ByteSize = 7
144 comDCB.ByteSize = 8
  /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/
miniterm.py 218 self.serial.bytesize,
408 self.serial.bytesize = serial.EIGHTBITS
411 self.serial.bytesize = serial.SEVENBITS
659 miniterm.serial.bytesize,
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
wire_format_lite_inl.h 748 return value.ByteSize();
751 return LengthDelimitedSize(value.ByteSize());
759 return value.MessageType_WorkAroundCppLookupDefect::ByteSize();
765 value.MessageType_WorkAroundCppLookupDefect::ByteSize());
    [all...]
extension_set.h 362 // to the output stream, using the cached sizes computed when ByteSize() was
382 int ByteSize() const;
384 // Like ByteSize() but uses MessageSet format.
412 virtual int ByteSize() const = 0;
476 // ByteSize() is called then used during serialization.
498 int ByteSize(int number) const;
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
wire_format_lite_inl.h 748 return value.ByteSize();
751 return LengthDelimitedSize(value.ByteSize());
759 return value.MessageType_WorkAroundCppLookupDefect::ByteSize();
765 value.MessageType_WorkAroundCppLookupDefect::ByteSize());
    [all...]
extension_set.h 362 // to the output stream, using the cached sizes computed when ByteSize() was
382 int ByteSize() const;
384 // Like ByteSize() but uses MessageSet format.
412 virtual int ByteSize() const = 0;
476 // ByteSize() is called then used during serialization.
498 int ByteSize(int number) const;
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
wire_format_lite_inl.h 748 return value.ByteSize();
751 return LengthDelimitedSize(value.ByteSize());
759 return value.MessageType_WorkAroundCppLookupDefect::ByteSize();
765 value.MessageType_WorkAroundCppLookupDefect::ByteSize());
    [all...]
extension_set.h 362 // to the output stream, using the cached sizes computed when ByteSize() was
382 int ByteSize() const;
384 // Like ByteSize() but uses MessageSet format.
412 virtual int ByteSize() const = 0;
476 // ByteSize() is called then used during serialization.
498 int ByteSize(int number) const;
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
wire_format_lite_inl.h 748 return value.ByteSize();
751 return LengthDelimitedSize(value.ByteSize());
759 return value.MessageType_WorkAroundCppLookupDefect::ByteSize();
765 value.MessageType_WorkAroundCppLookupDefect::ByteSize());
    [all...]
extension_set.h 362 // to the output stream, using the cached sizes computed when ByteSize() was
382 int ByteSize() const;
384 // Like ByteSize() but uses MessageSet format.
412 virtual int ByteSize() const = 0;
476 // ByteSize() is called then used during serialization.
498 int ByteSize(int number) const;
    [all...]
  /art/runtime/gc/allocator/
rosalloc.h 54 size_t ByteSize(RosAlloc* rosalloc) const REQUIRES(rosalloc->lock_) {
74 uint8_t* end = fpr_base + ByteSize(rosalloc);
79 return ByteSize(rosalloc) >= rosalloc->page_release_size_threshold_;
83 return reinterpret_cast<uint8_t*>(this) + ByteSize(rosalloc) == rosalloc->base_ + rosalloc->footprint_;
104 size_t byte_size = ByteSize(rosalloc);
    [all...]
  /external/svox/pico/lib/
picoos.c 435 void *picoos_allocProtMem(picoos_MemoryManager mm, picoos_objsize_t byteSize)
438 return picopal_mpr_alloc(byteSize);
440 return picoos_allocate(mm, byteSize);
508 picoos_objsize_t byteSize)
515 if (byteSize < this->minContSize) {
516 byteSize = this->minContSize;
518 byteSize = ((byteSize + PICOOS_ALIGN_SIZE - 1) / PICOOS_ALIGN_SIZE)
521 cellSize = byteSize + this->usedCellHdrSize;
    [all...]
picoos.h 164 void * picoos_allocate(picoos_MemoryManager this, picoos_objsize_t byteSize);
174 void *picoos_allocProtMem(picoos_MemoryManager mm, picoos_objsize_t byteSize);
  /external/skia/src/animator/
SkDisplayable.cpp 107 size_t byteSize = elementSize * arrayCount;
108 memcpy(copyArray->begin(), array->begin(), byteSize);
  /packages/services/Car/libvehiclenetwork/native/
IVehicleNetwork.cpp 173 int size = v->ByteSize();
270 int size = configs->ByteSize();
  /prebuilts/go/darwin-x86/src/cmd/cgo/
gcc.go     [all...]

Completed in 774 milliseconds

1 2 3 45 6 7 8 910