HomeSort by relevance Sort by last modified time
    Searched refs:Checksum (Results 201 - 225 of 413) sorted by null

1 2 3 4 5 6 7 891011>>

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Input.c 721 UINT16 Checksum;
746 // Some OS may send IP packets without checksum.
748 Checksum = (UINT16) (~NetblockChecksum ((UINT8 *) Head, HeadLen));
750 if ((Head->Checksum != 0) && (Checksum != 0)) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Output.c 337 Head->Checksum = 0;
383 Head->Checksum = TcpChecksum (Nbuf, Tcb->HeadSum);
1100 Nhead->Checksum = 0;
1104 Nhead->Checksum = TcpChecksum (Nbuf, HeadSum);
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
Acpi20.h 80 UINT8 Checksum;
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpOutput.c 331 Head->Checksum = 0;
376 Head->Checksum = TcpChecksum (Nbuf, Tcb->HeadSum);
1151 Nhead->Checksum = 0;
1160 Nhead->Checksum = TcpChecksum (Nbuf, HeadSum);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/MC/
MCCodeView.h 273 /// Emits the file checksum substream.
276 /// Emits the offset into the checksum table of the given file number.
309 ArrayRef<uint8_t> Checksum;
311 // Checksum offset stored as a symbol because it might be requested
329 /// Indicate whether we have already laid out the checksum table addresses or
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/MC/
MCCodeView.h 273 /// Emits the file checksum substream.
276 /// Emits the offset into the checksum table of the given file number.
309 ArrayRef<uint8_t> Checksum;
311 // Checksum offset stored as a symbol because it might be requested
329 /// Indicate whether we have already laid out the checksum table addresses or
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/MC/
MCCodeView.h 273 /// Emits the file checksum substream.
276 /// Emits the offset into the checksum table of the given file number.
309 ArrayRef<uint8_t> Checksum;
311 // Checksum offset stored as a symbol because it might be requested
329 /// Indicate whether we have already laid out the checksum table addresses or
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/MC/
MCCodeView.h 273 /// Emits the file checksum substream.
276 /// Emits the offset into the checksum table of the given file number.
309 ArrayRef<uint8_t> Checksum;
311 // Checksum offset stored as a symbol because it might be requested
329 /// Indicate whether we have already laid out the checksum table addresses or
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/MC/
MCCodeView.h 273 /// Emits the file checksum substream.
276 /// Emits the offset into the checksum table of the given file number.
309 ArrayRef<uint8_t> Checksum;
311 // Checksum offset stored as a symbol because it might be requested
329 /// Indicate whether we have already laid out the checksum table addresses or
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/MC/
MCCodeView.h 273 /// Emits the file checksum substream.
276 /// Emits the offset into the checksum table of the given file number.
309 ArrayRef<uint8_t> Checksum;
311 // Checksum offset stored as a symbol because it might be requested
329 /// Indicate whether we have already laid out the checksum table addresses or
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/MC/
MCCodeView.h 273 /// Emits the file checksum substream.
276 /// Emits the offset into the checksum table of the given file number.
309 ArrayRef<uint8_t> Checksum;
311 // Checksum offset stored as a symbol because it might be requested
329 /// Indicate whether we have already laid out the checksum table addresses or
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/MC/
MCCodeView.h 273 /// Emits the file checksum substream.
276 /// Emits the offset into the checksum table of the given file number.
309 ArrayRef<uint8_t> Checksum;
311 // Checksum offset stored as a symbol because it might be requested
329 /// Indicate whether we have already laid out the checksum table addresses or
  /prebuilts/go/darwin-x86/src/hash/adler32/
adler32_test.go 64 // checksum is a slow but simple implementation of the Adler-32 checksum.
66 func checksum(p []byte) uint32 { func
82 if got := checksum(p); got != g.out {
83 t.Errorf("simple implementation: checksum(%q) = 0x%x want 0x%x", in, got, g.out)
86 if got := Checksum(p); got != g.out {
87 t.Errorf("optimized implementation: Checksum(%q) = 0x%x want 0x%x", in, got, g.out)
107 t.Errorf("checksum(%q) state = %q, want %q", g.in, state, g.halfState)
120 t.Errorf("checksum(%q) = 0x%x != marshaled (0x%x)", g.in, h.Sum32(), h2.Sum32())
  /prebuilts/go/darwin-x86/src/hash/crc32/
crc32.go 6 // checksum. See http://en.wikipedia.org/wiki/Cyclic_redundancy_check for
21 // The size of a CRC-32 checksum in bytes.
136 // digest represents the partial evaluation of a checksum.
142 // New creates a new hash.Hash32 computing the CRC-32 checksum using the
154 // NewIEEE creates a new hash.Hash32 computing the CRC-32 checksum using
245 // Checksum returns the CRC-32 checksum of data
247 func Checksum(data []byte, tab *Table) uint32 { return Update(0, tab, data) }
249 // ChecksumIEEE returns the CRC-32 checksum of data
256 // tableSum returns the IEEE checksum of table t
    [all...]
  /prebuilts/go/linux-x86/src/hash/adler32/
adler32_test.go 64 // checksum is a slow but simple implementation of the Adler-32 checksum.
66 func checksum(p []byte) uint32 { func
82 if got := checksum(p); got != g.out {
83 t.Errorf("simple implementation: checksum(%q) = 0x%x want 0x%x", in, got, g.out)
86 if got := Checksum(p); got != g.out {
87 t.Errorf("optimized implementation: Checksum(%q) = 0x%x want 0x%x", in, got, g.out)
107 t.Errorf("checksum(%q) state = %q, want %q", g.in, state, g.halfState)
120 t.Errorf("checksum(%q) = 0x%x != marshaled (0x%x)", g.in, h.Sum32(), h2.Sum32())
  /prebuilts/go/linux-x86/src/hash/crc32/
crc32.go 6 // checksum. See http://en.wikipedia.org/wiki/Cyclic_redundancy_check for
21 // The size of a CRC-32 checksum in bytes.
136 // digest represents the partial evaluation of a checksum.
142 // New creates a new hash.Hash32 computing the CRC-32 checksum using the
154 // NewIEEE creates a new hash.Hash32 computing the CRC-32 checksum using
245 // Checksum returns the CRC-32 checksum of data
247 func Checksum(data []byte, tab *Table) uint32 { return Update(0, tab, data) }
249 // ChecksumIEEE returns the CRC-32 checksum of data
256 // tableSum returns the IEEE checksum of table t
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
FvImage.py 122 # Read FvLength, Attributes, HeaderLength, Checksum
454 FvInfo += "[FV:%s] file_system=%s size=%x checksum=%s\n" % (self.Name, self.FileSystemGuid, self.Size, self.Checksum)
511 Checksum = property(_GetChecksum)
    [all...]
  /external/tensorflow/tensorflow/contrib/verbs/
rdma.cc 914 static uint64_t Checksum(Device* device, const DeviceContext* device_context,
916 uint64 checksum = 0;
922 checksum = (device_context != nullptr)
923 ? GPUUtil::Checksum(device, device_context, in)
924 : GPUUtil::Checksum(in);
928 checksum = Hash64(s.c_str(), s.size(), 0);
930 return checksum;
937 << ": Checksum: " << std::hex << " Expected = 0x" << expected
941 // Checksum failed. There is one case where this is allowed - if the
943 // always postpones the Tensor response in order to send a checksum message
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1610/Hi1610AcpiTables/
D03Iort.asl 12 [0001] Checksum : BC
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/
PciHostBridgeResourceAllocation.c 313 ((EFI_ACPI_END_TAG_DESCRIPTOR *)Ptr)->Checksum = 0x0;
555 ((EFI_ACPI_END_TAG_DESCRIPTOR *)Ptr)->Checksum = 0x0;
  /device/linaro/bootloader/edk2/ArmPlatformPkg/FileSystem/BootMonFs/
BootMonFsDir.c 274 Info->Region[Index].Checksum = File->HwDescription.Region[Index].Checksum;
  /device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/
PcatPciRootBridge.c 615 ConfigurationEnd->Checksum = 0;
723 // put the checksum
727 ConfigurationEnd->Checksum = 0;
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/
LegacyBiosInterface.h 432 UINT8 Checksum;
527 #define CMOS_2E 0x2e ///< Most significient byte of standard checksum
528 #define CMOS_2F 0x2f ///< Least significient byte of standard checksum
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Application/CapsuleApp/
CapsuleApp.c 244 DisplayCapsule->ImagePayload.Checksum = 0;
253 DisplayCapsule->ImagePayload.Checksum = CalculateCheckSum8(FullCapsuleBuffer, FullCapsuleBufferSize);
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Mld.c 216 MldHead->Head.Checksum = (UINT16) ~NetAddChecksum (HeadChecksum, PseudoChecksum);
320 MldHead->Head.Checksum = (UINT16) ~NetAddChecksum (HeadChecksum, PseudoChecksum);

Completed in 913 milliseconds

1 2 3 4 5 6 7 891011>>