-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
2ab5131
commit e1bdfae
Showing
4 changed files
with
180 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: float32le | ||
type: floating-point | ||
description: 32-bit litte-endian single precision floating-point type | ||
attributes: | ||
byte_order: little-endian | ||
size: 4 | ||
units: bytes | ||
--- | ||
name: float64le | ||
type: floating-point | ||
description: 64-bit litte-endian double precision floating-point type | ||
attributes: | ||
byte_order: little-endian | ||
size: 8 | ||
units: bytes | ||
--- | ||
name: uint64be | ||
type: integer | ||
description: 64-bit big-endian integer type | ||
attributes: | ||
byte_order: big-endian | ||
format: unsigned | ||
size: 8 | ||
units: bytes | ||
--- | ||
name: uint64le | ||
type: integer | ||
description: 64-bit little-endian integer type | ||
attributes: | ||
byte_order: little-endian | ||
format: unsigned | ||
size: 8 | ||
units: bytes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters