1mlib_VectorMulS_U8_Mod(3MLImBe)diaLib Library Functiomnlsib_VectorMulS_U8_Mod(3MLIB)
2
3
4
6 mlib_VectorMulS_U8_Mod, mlib_VectorMulS_U8_Sat, mlib_Vector‐
7 MulS_U8C_Mod, mlib_VectorMulS_U8C_Sat, mlib_VectorMulS_S8_Mod,
8 mlib_VectorMulS_S8_Sat, mlib_VectorMulS_S8C_Mod, mlib_Vector‐
9 MulS_S8C_Sat, mlib_VectorMulS_S16_Mod, mlib_VectorMulS_S16_Sat,
10 mlib_VectorMulS_S16C_Mod, mlib_VectorMulS_S16C_Sat, mlib_Vector‐
11 MulS_S32_Mod, mlib_VectorMulS_S32_Sat, mlib_VectorMulS_S32C_Mod,
12 mlib_VectorMulS_S32C_Sat - vector multiplication by scalar, in place
13
15 cc [ flag... ] file... -lmlib [ library... ]
16 #include <mlib.h>
17
18 mlib_status mlib_VectorMulS_U8_Mod(mlib_u8 *xz,
19 const mlib_u8 *c, mlib_s32 n);
20
21
22 mlib_status mlib_VectorMulS_U8_Sat(mlib_u8 *xz,
23 const mlib_u8 *c, mlib_s32 n);
24
25
26 mlib_status mlib_VectorMulS_U8C_Mod(mlib_u8 *xz,
27 const mlib_u8 *c, mlib_s32 n);
28
29
30 mlib_status mlib_VectorMulS_U8C_Sat(mlib_u8 *xz,
31 const mlib_u8 *c, mlib_s32 n);
32
33
34 mlib_status mlib_VectorMulS_S8_Mod(mlib_s8 *xz,
35 const mlib_s8 *c, mlib_s32 n);
36
37
38 mlib_status mlib_VectorMulS_S8_Sat(mlib_s8 *xz,
39 const mlib_s8 *c, mlib_s32 n);
40
41
42 mlib_status mlib_VectorMulS_S8C_Mod(mlib_s8 *xz,
43 const mlib_s8 *c, mlib_s32 n);
44
45
46 mlib_status mlib_VectorMulS_S8C_Sat(mlib_s8 *xz,
47 const mlib_s8 *c, mlib_s32 n);
48
49
50 mlib_status mlib_VectorMulS_S16_Mod(mlib_s16 *xz,
51 const mlib_s16 *c, mlib_s32 n);
52
53
54 mlib_status mlib_VectorMulS_S16_Sat(mlib_s16 *xz,
55 const mlib_s16 *c, mlib_s32 n);
56
57
58 mlib_status mlib_VectorMulS_S16C_Mod(mlib_s16 *xz,
59 const mlib_s16 *c, mlib_s32 n);
60
61
62 mlib_status mlib_VectorMulS_S16C_Sat(mlib_s16 *xz,
63 const mlib_s16 *c, mlib_s32 n);
64
65
66 mlib_status mlib_VectorMulS_S32_Mod(mlib_s32 *xz,
67 const mlib_s32 *c, mlib_s32 n);
68
69
70 mlib_status mlib_VectorMulS_S32_Sat(mlib_s32 *xz,
71 const mlib_s32 *c, mlib_s32 n);
72
73
74 mlib_status mlib_VectorMulS_S32C_Mod(mlib_s32 *xz,
75 const mlib_s32 *c, mlib_s32 n);
76
77
78 mlib_status mlib_VectorMulS_S32C_Sat(mlib_s32 *xz,
79 const mlib_s32 *c, mlib_s32 n);
80
81
83 Each of these functions computes an in-place multiplication of a vector
84 by a scalar.
85
86
87 For real data, the following equation is used:
88
89 xz[i] = xz[i] * c[0]
90
91
92
93 where i = 0, 1, ..., (n - 1).
94
95
96 For complex data, the following equation is used:
97
98 tmp = xz[2*i]
99 xz[2*i] = tmp*c[0] - xz[2*i + 1]*c[1]
100 xz[2*i + 1] = tmp*c[1] + xz[2*i + 1]*c[0]
101
102
103
104 where i = 0, 1, ..., (n - 1).
105
107 Each of the functions takes the following arguments:
108
109 xz Pointer to the first element of the source and destination vec‐
110 tor.
111
112
113 c Pointer to the source scalar. When the function is used with com‐
114 plex data types, c[0] contains the real part of the scalar, and
115 c[1] contains the imaginary part of the scalar.
116
117
118 n Number of elements in the vectors.
119
120
122 Each of the functions returns MLIB_SUCCESS if successful. Otherwise it
123 returns MLIB_FAILURE.
124
126 See attributes(5) for descriptions of the following attributes:
127
128
129
130
131 ┌─────────────────────────────┬─────────────────────────────┐
132 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
133 ├─────────────────────────────┼─────────────────────────────┤
134 │Interface Stability │Committed │
135 ├─────────────────────────────┼─────────────────────────────┤
136 │MT-Level │MT-Safe │
137 └─────────────────────────────┴─────────────────────────────┘
138
140 mlib_VectorMulS_U8_U8_Mod(3MLIB), attributes(5)
141
142
143
144SunOS 5.11 2 Mar 2007 mlib_VectorMulS_U8_Mod(3MLIB)