diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2019-06-28 23:45:11 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2019-06-28 23:45:11 +0000 |
commit | cdf6e0151411d887fef61245cb303ef190b29335 (patch) | |
tree | 678c2212e125e66e0a868773e2b4ec460794da4e /lib/util/wordaccess_be_aligned.h | |
parent | de1311e820dc892f1a3c5c9ae70dbc56868030d8 (diff) | |
download | netpbm-mirror-cdf6e0151411d887fef61245cb303ef190b29335.tar.gz netpbm-mirror-cdf6e0151411d887fef61245cb303ef190b29335.tar.xz netpbm-mirror-cdf6e0151411d887fef61245cb303ef190b29335.zip |
Promote Advanced to Stable
git-svn-id: http://svn.code.sf.net/p/netpbm/code/stable@3641 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'lib/util/wordaccess_be_aligned.h')
-rw-r--r-- | lib/util/wordaccess_be_aligned.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/lib/util/wordaccess_be_aligned.h b/lib/util/wordaccess_be_aligned.h deleted file mode 100644 index f3bbb841..00000000 --- a/lib/util/wordaccess_be_aligned.h +++ /dev/null @@ -1,35 +0,0 @@ -/*============================================================================= - This file is the part of wordaccess.h for use under with big-endian - machines that require word accesses to be word-aligned. -*===========================================================================*/ - -typedef unsigned long int wordint; -typedef unsigned char wordintBytes[sizeof(wordint)]; - -static __inline__ wordint -bytesToWordint(wordintBytes bytes) { - uint16_t const hi = *((uint16_t *) (bytes + 0)); - uint16_t const mh = *((uint16_t *) (bytes + 2)); - uint16_t const ml = *((uint16_t *) (bytes + 4)); - uint16_t const lo = *((uint16_t *) (bytes + 6)); - return - (((wordint) hi) << 48) | - (((wordint) mh) << 32) | - (((wordint) ml) << 24) | - (((wordint) lo) << 0); -} - - - -static __inline__ void -wordintToBytes(wordintBytes * const bytesP, - wordint const wordInt) { - uint16_t const hi = ((wordInt >> 48) & 0xFF); - uint16_t const mh = ((wordInt >> 32) & 0xFF); - uint16_t const ml = ((wordInt >> 24) & 0xFF); - uint16_t const lo = ((wordInt >> 0) & 0xFF); - *(uint16_t *)(bytesP + 0) = hi; - *(uint16_t *)(bytesP + 2) = mh; - *(uint16_t *)(bytesP + 4) = ml; - *(uint16_t *)(bytesP + 6) = lo; -} |