HomeSort by relevance Sort by last modified time
    Searched defs:ByteSize (Results 1 - 25 of 25) sorted by null

  /external/llvm/lib/DebugInfo/PDB/DIA/
DIASourceFile.cpp 40 DWORD ByteSize = 0;
41 HRESULT Result = SourceFile->get_checksum(0, &ByteSize, nullptr);
42 if (ByteSize == 0)
44 std::vector<BYTE> ChecksumBytes(ByteSize);
45 Result = SourceFile->get_checksum(ByteSize, &ByteSize, &ChecksumBytes[0]);
  /external/protobuf/python/google/protobuf/internal/
wire_format_test.py 114 # Test all numeric *ByteSize() functions.
203 def ByteSize(self):
cpp_message.py 588 def ByteSize(self):
589 return self._cmsg.ByteSize()
python_message.py 785 def ByteSize(self):
801 cls.ByteSize = ByteSize
    [all...]
  /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/
message.py 250 def ByteSize(self):
252 Recursively calls ByteSize() on all contained messages.
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
kv_pb.py 112 def ByteSize(self):
284 def ByteSize(self):
  /external/protobuf/src/google/protobuf/compiler/
plugin.pb.cc 397 int CodeGeneratorRequest::ByteSize() const {
758 int CodeGeneratorResponse_File::ByteSize() const {
    [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(). "
wire_format.cc     [all...]
extension_set.cc     [all...]
descriptor.pb.cc     [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map_entry.h 161 int ByteSize() const {
162 return entry_lite_.ByteSize();
map_entry_lite.h 171 int ByteSize() const {
173 size += has_key() ? kTagSize + KeyTypeHandler::ByteSize(key()) : 0;
174 size += has_value() ? kTagSize + ValueTypeHandler::ByteSize(value()) : 0;
map_type_handler.h 161 static inline int ByteSize(const MapEntryAccessorType& value);
217 static inline int ByteSize(const MapEntryAccessorType& value); \
270 MapTypeHandler<WireFormatLite::TYPE_MESSAGE, Type>::ByteSize(
277 inline int MapTypeHandler<WireFormatLite::TYPE_##FieldType, Type>::ByteSize( \
296 inline int MapTypeHandler<WireFormatLite::TYPE_##FieldType, Type>::ByteSize( \
    [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...]
  /art/runtime/gc/space/
large_object_space.cc 265 size_t ByteSize() const {
390 size_t alloc_size = cur_info->ByteSize();
416 const size_t allocation_size = info->ByteSize();
445 DCHECK_ALIGNED(next_next_info->ByteSize(), kAlignment);
472 size_t alloc_size = info->ByteSize();
546 size_t size = cur_info->ByteSize();
  /external/nanopb-c/generator/google/protobuf/internal/
python_message.py 739 def ByteSize(self):
755 cls.ByteSize = ByteSize
    [all...]
  /external/v8/test/cctest/compiler/
test-simplified-lowering.cc 409 untagged_array(static_cast<E*>(malloc(ByteSize()))),
411 static_cast<int>(ByteSize()))) {
417 size_t ByteSize() { return num_elements * sizeof(E); }
421 memcpy(untagged_array, original_elements, ByteSize());
422 CHECK_EQ(static_cast<int>(ByteSize()), tagged_array->length());
424 memcpy(raw, original_elements, ByteSize());
542 CHECK_EQ(static_cast<int>(ByteSize()), tagged_array->length());
    [all...]
  /external/protobuf/python/google/protobuf/pyext/
message.cc     [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 99 uint32_t ByteSize;
114 : QualifiedNameHash(0), Line(0), ByteSize(0),
118 DeclContext(unsigned Hash, uint32_t Line, uint32_t ByteSize, uint16_t Tag,
122 : QualifiedNameHash(Hash), Line(Line), ByteSize(ByteSize), Tag(Tag),
150 LHS->Line == RHS->Line && LHS->ByteSize == RHS->ByteSize &&
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winbase.h 380 BYTE ByteSize;
    [all...]

Completed in 474 milliseconds