FreeRDP/libfreerdp/primitives/prim_shift.c

143 lines
3.9 KiB
C
Raw Normal View History

2013-01-19 02:32:58 +04:00
/* FreeRDP: A Remote Desktop Protocol Client
* Shift operations.
* vi:ts=4 sw=4:
*
* (c) Copyright 2012 Hewlett-Packard Development Company, L.P.
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
2022-02-16 13:20:38 +03:00
#include <freerdp/config.h>
2013-01-19 02:32:58 +04:00
#include <freerdp/types.h>
#include <freerdp/primitives.h>
2013-01-19 02:32:58 +04:00
#include "prim_internal.h"
#include "prim_shift.h"
2013-01-19 02:32:58 +04:00
/* ------------------------------------------------------------------------- */
2024-06-07 15:35:06 +03:00
static INLINE INT16 shift(INT16 val, UINT32 sh)
{
return val << sh;
}
static INLINE pstatus_t general_lShiftC_16s_inplace(INT16* WINPR_RESTRICT pSrcDst, UINT32 val,
UINT32 len)
{
if (val == 0)
return PRIMITIVES_SUCCESS;
if (val >= 16)
return -1;
for (UINT32 x = 0; x < len; x++)
pSrcDst[x] = shift(pSrcDst[x], val);
return PRIMITIVES_SUCCESS;
}
2019-11-06 17:24:51 +03:00
static INLINE pstatus_t general_lShiftC_16s(const INT16* pSrc, UINT32 val, INT16* pDst, UINT32 len)
2013-01-19 02:32:58 +04:00
{
2019-11-06 17:24:51 +03:00
if (val == 0)
return PRIMITIVES_SUCCESS;
if (val >= 16)
return -1;
2024-06-07 15:35:06 +03:00
for (UINT32 x = 0; x < len; x++)
pDst[x] = shift(pSrc[x], val);
2013-01-19 02:32:58 +04:00
return PRIMITIVES_SUCCESS;
}
/* ------------------------------------------------------------------------- */
2019-11-06 17:24:51 +03:00
static INLINE pstatus_t general_rShiftC_16s(const INT16* pSrc, UINT32 val, INT16* pDst, UINT32 len)
2013-01-19 02:32:58 +04:00
{
2019-11-06 17:24:51 +03:00
if (val == 0)
return PRIMITIVES_SUCCESS;
if (val >= 16)
return -1;
2019-11-06 17:24:51 +03:00
while (len--)
*pDst++ = *pSrc++ >> val;
2013-01-19 02:32:58 +04:00
return PRIMITIVES_SUCCESS;
}
/* ------------------------------------------------------------------------- */
2019-11-06 17:24:51 +03:00
static INLINE pstatus_t general_lShiftC_16u(const UINT16* pSrc, UINT32 val, UINT16* pDst,
UINT32 len)
2013-01-19 02:32:58 +04:00
{
2019-11-06 17:24:51 +03:00
if (val == 0)
return PRIMITIVES_SUCCESS;
if (val >= 16)
return -1;
2019-11-06 17:24:51 +03:00
while (len--)
*pDst++ = (INT16)((UINT16)*pSrc++ << val);
2013-01-19 02:32:58 +04:00
return PRIMITIVES_SUCCESS;
}
/* ------------------------------------------------------------------------- */
2019-11-06 17:24:51 +03:00
static INLINE pstatus_t general_rShiftC_16u(const UINT16* pSrc, UINT32 val, UINT16* pDst,
UINT32 len)
2013-01-19 02:32:58 +04:00
{
2019-11-06 17:24:51 +03:00
if (val == 0)
return PRIMITIVES_SUCCESS;
if (val >= 16)
return -1;
2019-11-06 17:24:51 +03:00
while (len--)
*pDst++ = *pSrc++ >> val;
2013-01-19 02:32:58 +04:00
return PRIMITIVES_SUCCESS;
}
/* ------------------------------------------------------------------------- */
2019-11-06 17:24:51 +03:00
static INLINE pstatus_t general_shiftC_16s(const INT16* pSrc, INT32 val, INT16* pDst, UINT32 len)
2013-01-19 02:32:58 +04:00
{
2019-11-06 17:24:51 +03:00
if (val == 0)
return PRIMITIVES_SUCCESS;
2019-11-06 17:24:51 +03:00
if (val < 0)
return general_rShiftC_16s(pSrc, -val, pDst, len);
else
return general_lShiftC_16s(pSrc, val, pDst, len);
2013-01-19 02:32:58 +04:00
}
/* ------------------------------------------------------------------------- */
2019-11-06 17:24:51 +03:00
static INLINE pstatus_t general_shiftC_16u(const UINT16* pSrc, INT32 val, UINT16* pDst, UINT32 len)
2013-01-19 02:32:58 +04:00
{
2019-11-06 17:24:51 +03:00
if (val == 0)
return PRIMITIVES_SUCCESS;
2019-11-06 17:24:51 +03:00
if (val < 0)
return general_rShiftC_16u(pSrc, -val, pDst, len);
else
return general_lShiftC_16u(pSrc, val, pDst, len);
2013-01-19 02:32:58 +04:00
}
/* ------------------------------------------------------------------------- */
2019-11-06 17:24:51 +03:00
void primitives_init_shift(primitives_t* prims)
2013-01-19 02:32:58 +04:00
{
/* Start with the default. */
2024-06-07 15:35:06 +03:00
prims->lShiftC_16s_inplace = general_lShiftC_16s_inplace;
2013-01-19 02:32:58 +04:00
prims->lShiftC_16s = general_lShiftC_16s;
prims->rShiftC_16s = general_rShiftC_16s;
prims->lShiftC_16u = general_lShiftC_16u;
prims->rShiftC_16u = general_rShiftC_16u;
/* Wrappers */
2019-11-06 17:24:51 +03:00
prims->shiftC_16s = general_shiftC_16s;
prims->shiftC_16u = general_shiftC_16u;
2013-01-19 02:32:58 +04:00
}
void primitives_init_shift_opt(primitives_t* WINPR_RESTRICT prims)
{
primitives_init_shift_sse3(prims);
}