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

1 2 3

  /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/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 29 uint32_t ByteSize = 0;
48 ByteSize = 0;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTable.h 47 uint32_t ByteSize = 0;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 29 uint32_t ByteSize = 0;
48 ByteSize = 0;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTable.h 47 uint32_t ByteSize = 0;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 29 uint32_t ByteSize = 0;
48 ByteSize = 0;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTable.h 47 uint32_t ByteSize = 0;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 29 uint32_t ByteSize = 0;
48 ByteSize = 0;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTable.h 47 uint32_t ByteSize = 0;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 29 uint32_t ByteSize = 0;
48 ByteSize = 0;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTable.h 47 uint32_t ByteSize = 0;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 29 uint32_t ByteSize = 0;
48 ByteSize = 0;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTable.h 47 uint32_t ByteSize = 0;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 29 uint32_t ByteSize = 0;
48 ByteSize = 0;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTable.h 47 uint32_t ByteSize = 0;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 29 uint32_t ByteSize = 0;
48 ByteSize = 0;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTable.h 47 uint32_t ByteSize = 0;
  /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();

Completed in 606 milliseconds

1 2 3