Searched defs:ByteSize (Results 1 - 14 of 14) sorted by relevance

/external/protobuf/python/google/protobuf/internal/
H A Dwire_format_test.py114 # Test all numeric *ByteSize() functions.
203 def ByteSize(self): member in class:WireFormatTest.testByteSizeFunctions.MockMessage
/external/llvm/lib/MC/MCDisassembler/
H A DEDInst.h68 uint64_t ByteSize; member in struct:llvm::EDInst
/external/protobuf/python/google/protobuf/
H A Dmessage.py229 def ByteSize(self): member in class:Message
231 Recursively calls ByteSize() on all contained messages.
H A Dreflection.py771 def ByteSize(self): function in function:_AddByteSizeMethod
784 cls.ByteSize = ByteSize
/external/protobuf/src/google/protobuf/
H A Dmessage.cc144 int Message::ByteSize() const { function in class:google::protobuf::Message
145 int size = WireFormat::ByteSize(*this);
152 << "\" implements neither SetCachedSize() nor ByteSize(). "
H A Dwire_format.cc881 int WireFormat::ByteSize(const Message& message) { function in class:google::protobuf::internal::WireFormat
1037 int message_size = sub_message.ByteSize();
H A Dextension_set.cc1020 int ExtensionSet::ByteSize() const { function in class:google::protobuf::internal::ExtensionSet
1025 total_size += iter->second.ByteSize(iter->first);
1231 int ExtensionSet::Extension::ByteSize(int number) const { function in class:google::protobuf::internal::ExtensionSet::Extension
1370 return ByteSize(number);
1381 int message_size = message_value->ByteSize();
H A Ddescriptor.pb.cc776 int FileDescriptorSet::ByteSize() const { function in class:google::protobuf::FileDescriptorSet
1238 int FileDescriptorProto::ByteSize() const { function in class:google::protobuf::FileDescriptorProto
1560 int DescriptorProto_ExtensionRange::ByteSize() const { function in class:google::protobuf::DescriptorProto_ExtensionRange
1980 int DescriptorProto::ByteSize() const { function in class:google::protobuf::DescriptorProto
2633 int FieldDescriptorProto::ByteSize() const { function in class:google::protobuf::FieldDescriptorProto
3000 int EnumDescriptorProto::ByteSize() const { function in class:google::protobuf::EnumDescriptorProto
3315 int EnumValueDescriptorProto::ByteSize() const { function in class:google::protobuf::EnumValueDescriptorProto
3629 int ServiceDescriptorProto::ByteSize() const { function in class:google::protobuf::ServiceDescriptorProto
4009 int MethodDescriptorProto::ByteSize() const { function in class:google::protobuf::MethodDescriptorProto
4536 int FileOptions::ByteSize() cons function in class:google::protobuf::FileOptions
4891 int MessageOptions::ByteSize() const { function in class:google::protobuf::MessageOptions
5302 int FieldOptions::ByteSize() const { function in class:google::protobuf::FieldOptions
5569 int EnumOptions::ByteSize() const { function in class:google::protobuf::EnumOptions
5793 int EnumValueOptions::ByteSize() const { function in class:google::protobuf::EnumValueOptions
6017 int ServiceOptions::ByteSize() const { function in class:google::protobuf::ServiceOptions
6241 int MethodOptions::ByteSize() const { function in class:google::protobuf::MethodOptions
6498 int UninterpretedOption_NamePart::ByteSize() const { function in class:google::protobuf::UninterpretedOption_NamePart
6889 int UninterpretedOption::ByteSize() const { function in class:google::protobuf::UninterpretedOption
[all...]
/external/webrtc/src/modules/audio_processing/main/test/unit_test/
H A Daudio_processing_unittest.pb.cc221 int Test_Statistic::ByteSize() const { function in class:audio_processing_unittest::Test_Statistic
496 int Test_EchoMetrics::ByteSize() const { function in class:audio_processing_unittest::Test_EchoMetrics
834 int Test::ByteSize() const { function in class:audio_processing_unittest::Test
1056 int OutputData::ByteSize() const { function in class:audio_processing_unittest::OutputData
/external/protobuf/src/google/protobuf/compiler/
H A Dplugin.pb.cc370 int CodeGeneratorRequest::ByteSize() const { function in class:google::protobuf::compiler::CodeGeneratorRequest
711 int CodeGeneratorResponse_File::ByteSize() const { function in class:google::protobuf::compiler::CodeGeneratorResponse_File
988 int CodeGeneratorResponse::ByteSize() const { function in class:google::protobuf::compiler::CodeGeneratorResponse
/external/llvm/lib/VMCore/
H A DConstantFold.cpp187 /// first byte used, counting from the least significant byte) and ByteSize,
195 unsigned ByteSize) {
200 assert(ByteSize && "Must be accessing some piece");
201 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input");
202 assert(ByteSize != CSize && "Should not extract everything");
209 V = V.trunc(ByteSize*8);
221 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize);
230 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize);
236 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize);
244 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize);
194 ExtractConstantBytes(Constant *C, unsigned ByteStart, unsigned ByteSize) argument
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1457 unsigned ByteSize = VT.getStoreSize(); local
1462 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp665 /// the constant being splatted. The ByteSize field indicates the number of
667 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) { argument
670 // If ByteSize of the splat is bigger than the element size of the
675 if (EltSize < ByteSize) {
676 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
749 if (ValSizeInBytes < ByteSize) return SDValue();
753 // get to ByteSize. This allows us to handle 0x01010101 as 0x01.
754 while (ValSizeInBytes > ByteSize) {
764 int ShAmt = (4-ByteSize)*8;
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp7630 unsigned ByteSize = SrcVT.getSizeInBits()/8; local
7639 MachineMemOperand::MOLoad, ByteSize, ByteSize);

Completed in 877 milliseconds