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

1 2

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug297.go 11 type ByteSize float64
14 KB ByteSize = 1<<(10*X) // ERROR "undefined" "is not a constant|as type ByteSize"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug297.go 11 type ByteSize float64
14 KB ByteSize = 1<<(10*X) // ERROR "undefined" "is not a constant|as type ByteSize"
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIASourceFile.cpp 44 DWORD ByteSize = 0;
45 HRESULT Result = SourceFile->get_checksum(0, &ByteSize, nullptr);
46 if (ByteSize == 0)
48 std::vector<BYTE> ChecksumBytes(ByteSize);
49 Result = SourceFile->get_checksum(ByteSize, &ByteSize, &ChecksumBytes[0]);
  /external/protobuf/python/google/protobuf/internal/
wire_format_test.py 118 # Test all numeric *ByteSize() functions.
207 def ByteSize(self):
  /prebuilts/go/darwin-x86/doc/progs/
eff_bytesize.go 9 type ByteSize float64
13 KB ByteSize = 1 << (10 * iota)
23 func (b ByteSize) String() string {
46 fmt.Println(YB, ByteSize(1e13))
  /prebuilts/go/linux-x86/doc/progs/
eff_bytesize.go 9 type ByteSize float64
13 KB ByteSize = 1 << (10 * iota)
23 func (b ByteSize) String() string {
46 fmt.Println(YB, ByteSize(1e13))
  /external/llvm/lib/DebugInfo/PDB/Raw/
NameHashTable.cpp 28 support::ulittle32_t ByteSize;
44 if (auto EC = Stream.readStreamRef(NamesBuffer, H->ByteSize))
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfExpression.cpp 57 unsigned ByteSize = SizeInBits / SizeOfByte;
58 EmitUnsigned(ByteSize);
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
EDInst.h 68 uint64_t ByteSize;
100 /// @arg byteSize - The size of the consumed instruction, in bytes
105 uint64_t byteSize,
110 /// byteSize - returns the number of bytes consumed by the machine code
112 uint64_t byteSize();
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/
UsbMassBoot.c 792 UINT32 ByteSize;
805 ByteSize = (UINT32)Count * BlockSize;
828 ByteSize,
868 UINT32 ByteSize;
881 ByteSize = (UINT32)Count * BlockSize;
904 ByteSize,
944 UINT32 ByteSize;
955 ByteSize = (UINT32)Count * BlockSize;
978 ByteSize,
1018 UINT32 ByteSize;
    [all...]
  /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 261 def ByteSize(self):
263 Recursively calls ByteSize() on all contained messages.
  /external/protobuf/src/google/protobuf/
message_unittest.cc 274 virtual int ByteSize() const { return -1; }
any.pb.cc 311 int Any::ByteSize() const {
duration.pb.cc 299 int Duration::ByteSize() const {
empty.pb.cc 231 int Empty::ByteSize() const {
field_mask.pb.cc 265 int FieldMask::ByteSize() const {
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...]
source_context.pb.cc 265 int SourceContext::ByteSize() const {
timestamp.pb.cc 313 int Timestamp::ByteSize() const {
wire_format.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;

Completed in 649 milliseconds

1 2