NVIDIA 2D Image And Signal Performance Primitives (NPP)
Version 22.3.0.*
Main Page
Related Pages
Modules
Data Structures
All
Data Structures
Functions
Variables
Typedefs
Enumerations
Enumerator
Groups
Pages
npp
include
nppi_arithmetic_and_logical_operations.h
1
/* Copyright 2009-2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
*
3
* NOTICE TO LICENSEE:
4
*
5
* The source code and/or documentation ("Licensed Deliverables") are
6
* subject to NVIDIA intellectual property rights under U.S. and
7
* international Copyright laws.
8
*
9
* The Licensed Deliverables contained herein are PROPRIETARY and
10
* CONFIDENTIAL to NVIDIA and are being provided under the terms and
11
* conditions of a form of NVIDIA software license agreement by and
12
* between NVIDIA and Licensee ("License Agreement") or electronically
13
* accepted by Licensee. Notwithstanding any terms or conditions to
14
* the contrary in the License Agreement, reproduction or disclosure
15
* of the Licensed Deliverables to any third party without the express
16
* written consent of NVIDIA is prohibited.
17
*
18
* NOTWITHSTANDING ANY TERMS OR CONDITIONS TO THE CONTRARY IN THE
19
* LICENSE AGREEMENT, NVIDIA MAKES NO REPRESENTATION ABOUT THE
20
* SUITABILITY OF THESE LICENSED DELIVERABLES FOR ANY PURPOSE. THEY ARE
21
* PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND.
22
* NVIDIA DISCLAIMS ALL WARRANTIES WITH REGARD TO THESE LICENSED
23
* DELIVERABLES, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY,
24
* NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE.
25
* NOTWITHSTANDING ANY TERMS OR CONDITIONS TO THE CONTRARY IN THE
26
* LICENSE AGREEMENT, IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY
27
* SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, OR ANY
28
* DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
29
* WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
30
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
31
* OF THESE LICENSED DELIVERABLES.
32
*
33
* U.S. Government End Users. These Licensed Deliverables are a
34
* "commercial item" as that term is defined at 48 C.F.R. 2.101 (OCT
35
* 1995), consisting of "commercial computer software" and "commercial
36
* computer software documentation" as such terms are used in 48
37
* C.F.R. 12.212 (SEPT 1995) and are provided to the U.S. Government
38
* only as a commercial end item. Consistent with 48 C.F.R.12.212 and
39
* 48 C.F.R. 227.7202-1 through 227.7202-4 (JUNE 1995), all
40
* U.S. Government End Users acquire the Licensed Deliverables with
41
* only those rights set forth herein.
42
*
43
* Any use of the Licensed Deliverables in individual and commercial
44
* software must include, in the user documentation and internal
45
* comments to the code, the above Disclaimer and U.S. Government End
46
* Users Notice.
47
*/
48
#ifndef NV_NPPI_ARITHMETIC_AND_LOGICAL_OPERATIONS_H
49
#define NV_NPPI_ARITHMETIC_AND_LOGICAL_OPERATIONS_H
50
56
#include "nppdefs.h"
57
58
59
#ifdef __cplusplus
60
extern
"C"
{
61
#endif
62
63
103
NppStatus
104
nppiAddC_8u_C1RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
nConstant,
105
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
106
NppStatus
107
nppiAddC_8u_C1RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
nConstant,
108
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
109
122
NppStatus
123
nppiAddDeviceC_8u_C1RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstant,
124
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
135
NppStatus
136
nppiAddC_8u_C1IRSfs_Ctx
(
const
Npp8u
nConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
137
138
NppStatus
139
nppiAddC_8u_C1IRSfs
(
const
Npp8u
nConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
140
151
NppStatus
152
nppiAddDeviceC_8u_C1IRSfs_Ctx
(
const
Npp8u
* pConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
153
166
NppStatus
167
nppiAddC_8u_C3RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
168
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
169
170
NppStatus
171
nppiAddC_8u_C3RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
172
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
173
186
NppStatus
187
nppiAddDeviceC_8u_C3RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
188
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
189
200
NppStatus
201
nppiAddC_8u_C3IRSfs_Ctx
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
202
203
NppStatus
204
nppiAddC_8u_C3IRSfs
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
215
NppStatus
216
nppiAddDeviceC_8u_C3IRSfs_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
217
230
NppStatus
231
nppiAddC_8u_AC4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
232
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
233
234
NppStatus
235
nppiAddC_8u_AC4RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
236
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
237
250
NppStatus
251
nppiAddDeviceC_8u_AC4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
252
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
253
264
NppStatus
265
nppiAddC_8u_AC4IRSfs_Ctx
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
266
267
NppStatus
268
nppiAddC_8u_AC4IRSfs
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
269
280
NppStatus
281
nppiAddDeviceC_8u_AC4IRSfs_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
282
295
NppStatus
296
nppiAddC_8u_C4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[4],
297
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
298
NppStatus
299
nppiAddC_8u_C4RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[4],
300
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
301
314
NppStatus
315
nppiAddDeviceC_8u_C4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
316
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
327
NppStatus
328
nppiAddC_8u_C4IRSfs_Ctx
(
const
Npp8u
aConstants[4],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
329
330
NppStatus
331
nppiAddC_8u_C4IRSfs
(
const
Npp8u
aConstants[4],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
332
343
NppStatus
344
nppiAddDeviceC_8u_C4IRSfs_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
345
358
NppStatus
359
nppiAddC_16u_C1RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
nConstant,
360
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
361
362
NppStatus
363
nppiAddC_16u_C1RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
nConstant,
364
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
365
378
NppStatus
379
nppiAddDeviceC_16u_C1RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstant,
380
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
381
382
393
NppStatus
394
nppiAddC_16u_C1IRSfs_Ctx
(
const
Npp16u
nConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
395
396
NppStatus
397
nppiAddC_16u_C1IRSfs
(
const
Npp16u
nConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
398
409
NppStatus
410
nppiAddDeviceC_16u_C1IRSfs_Ctx
(
const
Npp16u
* pConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
411
424
NppStatus
425
nppiAddC_16u_C3RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
426
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
427
428
NppStatus
429
nppiAddC_16u_C3RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
430
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
431
444
NppStatus
445
nppiAddDeviceC_16u_C3RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
446
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
447
458
NppStatus
459
nppiAddC_16u_C3IRSfs_Ctx
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
460
461
NppStatus
462
nppiAddC_16u_C3IRSfs
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
463
474
NppStatus
475
nppiAddDeviceC_16u_C3IRSfs_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
476
489
NppStatus
490
nppiAddC_16u_AC4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
491
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
492
NppStatus
493
nppiAddC_16u_AC4RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
494
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
495
508
NppStatus
509
nppiAddDeviceC_16u_AC4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
510
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
511
522
NppStatus
523
nppiAddC_16u_AC4IRSfs_Ctx
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
524
525
NppStatus
526
nppiAddC_16u_AC4IRSfs
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
527
538
NppStatus
539
nppiAddDeviceC_16u_AC4IRSfs_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
540
553
NppStatus
554
nppiAddC_16u_C4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[4],
555
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
556
557
NppStatus
558
nppiAddC_16u_C4RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[4],
559
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
560
573
NppStatus
574
nppiAddDeviceC_16u_C4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
575
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
576
587
NppStatus
588
nppiAddC_16u_C4IRSfs_Ctx
(
const
Npp16u
aConstants[4],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
589
590
NppStatus
591
nppiAddC_16u_C4IRSfs
(
const
Npp16u
aConstants[4],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
592
603
NppStatus
604
nppiAddDeviceC_16u_C4IRSfs_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
605
618
NppStatus
619
nppiAddC_16s_C1RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
nConstant,
620
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
621
NppStatus
622
nppiAddC_16s_C1RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
nConstant,
623
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
624
637
NppStatus
638
nppiAddDeviceC_16s_C1RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstant,
639
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
640
651
NppStatus
652
nppiAddC_16s_C1IRSfs_Ctx
(
const
Npp16s
nConstant,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
653
654
NppStatus
655
nppiAddC_16s_C1IRSfs
(
const
Npp16s
nConstant,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
656
667
NppStatus
668
nppiAddDeviceC_16s_C1IRSfs_Ctx
(
const
Npp16s
* pConstant,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
669
682
NppStatus
683
nppiAddC_16s_C3RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
684
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
685
NppStatus
686
nppiAddC_16s_C3RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
687
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
688
701
NppStatus
702
nppiAddDeviceC_16s_C3RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstants,
703
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
704
715
NppStatus
716
nppiAddC_16s_C3IRSfs_Ctx
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
717
718
NppStatus
719
nppiAddC_16s_C3IRSfs
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
720
731
NppStatus
732
nppiAddDeviceC_16s_C3IRSfs_Ctx
(
const
Npp16s
* pConstants,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
733
746
NppStatus
747
nppiAddC_16s_AC4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
748
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
749
750
NppStatus
751
nppiAddC_16s_AC4RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
752
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
753
766
NppStatus
767
nppiAddDeviceC_16s_AC4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstants,
768
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
769
780
NppStatus
781
nppiAddC_16s_AC4IRSfs_Ctx
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
782
783
NppStatus
784
nppiAddC_16s_AC4IRSfs
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
785
796
NppStatus
797
nppiAddDeviceC_16s_AC4IRSfs_Ctx
(
const
Npp16s
* pConstants,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
798
811
NppStatus
812
nppiAddC_16s_C4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[4],
813
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
814
NppStatus
815
nppiAddC_16s_C4RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[4],
816
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
829
NppStatus
830
nppiAddDeviceC_16s_C4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstants,
831
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
832
843
NppStatus
844
nppiAddC_16s_C4IRSfs_Ctx
(
const
Npp16s
aConstants[4],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
845
846
NppStatus
847
nppiAddC_16s_C4IRSfs
(
const
Npp16s
aConstants[4],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
848
859
NppStatus
860
nppiAddDeviceC_16s_C4IRSfs_Ctx
(
const
Npp16s
* pConstants,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
861
874
NppStatus
875
nppiAddC_16sc_C1RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
nConstant,
876
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
877
878
NppStatus
879
nppiAddC_16sc_C1RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
nConstant,
880
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
881
892
NppStatus
893
nppiAddC_16sc_C1IRSfs_Ctx
(
const
Npp16sc
nConstant,
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
894
895
NppStatus
896
nppiAddC_16sc_C1IRSfs
(
const
Npp16sc
nConstant,
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
897
910
NppStatus
911
nppiAddC_16sc_C3RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
912
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
913
914
NppStatus
915
nppiAddC_16sc_C3RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
916
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
917
928
NppStatus
929
nppiAddC_16sc_C3IRSfs_Ctx
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
930
931
NppStatus
932
nppiAddC_16sc_C3IRSfs
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
933
946
NppStatus
947
nppiAddC_16sc_AC4RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
948
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
949
950
NppStatus
951
nppiAddC_16sc_AC4RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
952
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
953
964
NppStatus
965
nppiAddC_16sc_AC4IRSfs_Ctx
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
966
967
NppStatus
968
nppiAddC_16sc_AC4IRSfs
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
969
982
NppStatus
983
nppiAddC_32s_C1RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
nConstant,
984
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
985
986
NppStatus
987
nppiAddC_32s_C1RSfs
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
nConstant,
988
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
989
1002
NppStatus
1003
nppiAddDeviceC_32s_C1RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pConstant,
1004
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1005
1016
NppStatus
1017
nppiAddC_32s_C1IRSfs_Ctx
(
const
Npp32s
nConstant,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1018
1019
NppStatus
1020
nppiAddC_32s_C1IRSfs
(
const
Npp32s
nConstant,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1021
1032
NppStatus
1033
nppiAddDeviceC_32s_C1IRSfs_Ctx
(
const
Npp32s
* pConstant,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1034
1047
NppStatus
1048
nppiAddC_32s_C3RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
aConstants[3],
1049
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1050
1051
NppStatus
1052
nppiAddC_32s_C3RSfs
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
aConstants[3],
1053
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1054
1067
NppStatus
1068
nppiAddDeviceC_32s_C3RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pConstants,
1069
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1070
1081
NppStatus
1082
nppiAddC_32s_C3IRSfs_Ctx
(
const
Npp32s
aConstants[3],
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1083
1084
NppStatus
1085
nppiAddC_32s_C3IRSfs
(
const
Npp32s
aConstants[3],
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1086
1097
NppStatus
1098
nppiAddDeviceC_32s_C3IRSfs_Ctx
(
const
Npp32s
* pConstants,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1099
1112
NppStatus
1113
nppiAddC_32sc_C1RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
nConstant,
1114
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1115
1116
NppStatus
1117
nppiAddC_32sc_C1RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
nConstant,
1118
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1119
1130
NppStatus
1131
nppiAddC_32sc_C1IRSfs_Ctx
(
const
Npp32sc
nConstant,
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1132
1133
NppStatus
1134
nppiAddC_32sc_C1IRSfs
(
const
Npp32sc
nConstant,
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1135
1148
NppStatus
1149
nppiAddC_32sc_C3RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
1150
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1151
1152
NppStatus
1153
nppiAddC_32sc_C3RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
1154
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1155
1166
NppStatus
1167
nppiAddC_32sc_C3IRSfs_Ctx
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1168
1169
NppStatus
1170
nppiAddC_32sc_C3IRSfs
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1171
1184
NppStatus
1185
nppiAddC_32sc_AC4RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
1186
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1187
1188
NppStatus
1189
nppiAddC_32sc_AC4RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
1190
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1191
1202
NppStatus
1203
nppiAddC_32sc_AC4IRSfs_Ctx
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1204
1205
NppStatus
1206
nppiAddC_32sc_AC4IRSfs
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1207
1219
NppStatus
1220
nppiAddC_16f_C1R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
1221
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1222
1223
NppStatus
1224
nppiAddC_16f_C1R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
1225
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
1226
1238
NppStatus
1239
nppiAddDeviceC_16f_C1R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstant,
1240
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1241
1251
NppStatus
1252
nppiAddC_16f_C1IR_Ctx
(
const
Npp32f
nConstant,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1253
1254
NppStatus
1255
nppiAddC_16f_C1IR
(
const
Npp32f
nConstant,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
1256
1266
NppStatus
1267
nppiAddDeviceC_16f_C1IR_Ctx
(
const
Npp32f
* pConstant,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1268
1280
NppStatus
1281
nppiAddC_16f_C3R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
1282
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1283
1284
NppStatus
1285
nppiAddC_16f_C3R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
1286
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
1287
1299
NppStatus
1300
nppiAddDeviceC_16f_C3R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
1301
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1302
1312
NppStatus
1313
nppiAddC_16f_C3IR_Ctx
(
const
Npp32f
aConstants[3],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1314
1315
NppStatus
1316
nppiAddC_16f_C3IR
(
const
Npp32f
aConstants[3],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
1317
1327
NppStatus
1328
nppiAddDeviceC_16f_C3IR_Ctx
(
const
Npp32f
* pConstants,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1329
1341
NppStatus
1342
nppiAddC_16f_C4R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
1343
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1344
1345
NppStatus
1346
nppiAddC_16f_C4R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
1347
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
1348
1360
NppStatus
1361
nppiAddDeviceC_16f_C4R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
1362
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1363
1373
NppStatus
1374
nppiAddC_16f_C4IR_Ctx
(
const
Npp32f
aConstants[4],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1375
1376
NppStatus
1377
nppiAddC_16f_C4IR
(
const
Npp32f
aConstants[4],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
1378
1388
NppStatus
1389
nppiAddDeviceC_16f_C4IR_Ctx
(
const
Npp32f
* pConstants,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1390
1402
NppStatus
1403
nppiAddC_32f_C1R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
1404
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1405
1406
NppStatus
1407
nppiAddC_32f_C1R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
1408
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
1409
1421
NppStatus
1422
nppiAddDeviceC_32f_C1R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstant,
1423
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1424
1434
NppStatus
1435
nppiAddC_32f_C1IR_Ctx
(
const
Npp32f
nConstant,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1436
1437
NppStatus
1438
nppiAddC_32f_C1IR
(
const
Npp32f
nConstant,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
1439
1449
NppStatus
1450
nppiAddDeviceC_32f_C1IR_Ctx
(
const
Npp32f
* pConstant,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1451
1463
NppStatus
1464
nppiAddC_32f_C3R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
1465
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1466
NppStatus
1467
nppiAddC_32f_C3R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
1468
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
1469
1481
NppStatus
1482
nppiAddDeviceC_32f_C3R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
1483
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1484
1494
NppStatus
1495
nppiAddC_32f_C3IR_Ctx
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1496
1497
NppStatus
1498
nppiAddC_32f_C3IR
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
1499
1509
NppStatus
1510
nppiAddDeviceC_32f_C3IR_Ctx
(
const
Npp32f
* pConstants,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1511
1523
NppStatus
1524
nppiAddC_32f_AC4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
1525
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1526
1527
NppStatus
1528
nppiAddC_32f_AC4R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
1529
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
1530
1542
NppStatus
1543
nppiAddDeviceC_32f_AC4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
1544
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1545
1555
NppStatus
1556
nppiAddC_32f_AC4IR_Ctx
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1557
1558
NppStatus
1559
nppiAddC_32f_AC4IR
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
1560
1570
NppStatus
1571
nppiAddDeviceC_32f_AC4IR_Ctx
(
const
Npp32f
* pConstants,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1572
1584
NppStatus
1585
nppiAddC_32f_C4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
1586
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1587
1588
NppStatus
1589
nppiAddC_32f_C4R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
1590
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
1591
1603
NppStatus
1604
nppiAddDeviceC_32f_C4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
1605
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1606
1607
1617
NppStatus
1618
nppiAddC_32f_C4IR_Ctx
(
const
Npp32f
aConstants[4],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1619
1620
NppStatus
1621
nppiAddC_32f_C4IR
(
const
Npp32f
aConstants[4],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
1622
1632
NppStatus
1633
nppiAddDeviceC_32f_C4IR_Ctx
(
const
Npp32f
* pConstants,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1634
1646
NppStatus
1647
nppiAddC_32fc_C1R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
nConstant,
1648
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1649
1650
NppStatus
1651
nppiAddC_32fc_C1R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
nConstant,
1652
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
1653
1663
NppStatus
1664
nppiAddC_32fc_C1IR_Ctx
(
const
Npp32fc
nConstant,
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1665
1666
NppStatus
1667
nppiAddC_32fc_C1IR
(
const
Npp32fc
nConstant,
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
1668
1680
NppStatus
1681
nppiAddC_32fc_C3R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
1682
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1683
NppStatus
1684
nppiAddC_32fc_C3R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
1685
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
1686
1696
NppStatus
1697
nppiAddC_32fc_C3IR_Ctx
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1698
1699
NppStatus
1700
nppiAddC_32fc_C3IR
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
1701
1713
NppStatus
1714
nppiAddC_32fc_AC4R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
1715
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1716
1717
NppStatus
1718
nppiAddC_32fc_AC4R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
1719
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
1720
1730
NppStatus
1731
nppiAddC_32fc_AC4IR_Ctx
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1732
1733
NppStatus
1734
nppiAddC_32fc_AC4IR
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
1735
1747
NppStatus
1748
nppiAddC_32fc_C4R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[4],
1749
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1750
1751
NppStatus
1752
nppiAddC_32fc_C4R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[4],
1753
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
1754
1764
NppStatus
1765
nppiAddC_32fc_C4IR_Ctx
(
const
Npp32fc
aConstants[4],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
1766
1767
NppStatus
1768
nppiAddC_32fc_C4IR
(
const
Npp32fc
aConstants[4],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
1769
1797
NppStatus
1798
nppiMulC_8u_C1RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
nConstant,
1799
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1800
1801
NppStatus
1802
nppiMulC_8u_C1RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
nConstant,
1803
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1804
1817
NppStatus
1818
nppiMulDeviceC_8u_C1RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstant,
1819
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1820
1831
NppStatus
1832
nppiMulC_8u_C1IRSfs_Ctx
(
const
Npp8u
nConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1833
1834
NppStatus
1835
nppiMulC_8u_C1IRSfs
(
const
Npp8u
nConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1836
1847
NppStatus
1848
nppiMulDeviceC_8u_C1IRSfs_Ctx
(
const
Npp8u
* pConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1849
1862
NppStatus
1863
nppiMulC_8u_C3RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
1864
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1865
1866
NppStatus
1867
nppiMulC_8u_C3RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
1868
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1869
1882
NppStatus
1883
nppiMulDeviceC_8u_C3RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
1884
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1885
1896
NppStatus
1897
nppiMulC_8u_C3IRSfs_Ctx
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1898
1899
NppStatus
1900
nppiMulC_8u_C3IRSfs
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1901
1912
NppStatus
1913
nppiMulDeviceC_8u_C3IRSfs_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1914
1927
NppStatus
1928
nppiMulC_8u_AC4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
1929
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1930
1931
NppStatus
1932
nppiMulC_8u_AC4RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
1933
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1934
1947
NppStatus
1948
nppiMulDeviceC_8u_AC4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
1949
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1950
1961
NppStatus
1962
nppiMulC_8u_AC4IRSfs_Ctx
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1963
1964
NppStatus
1965
nppiMulC_8u_AC4IRSfs
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1966
1977
NppStatus
1978
nppiMulDeviceC_8u_AC4IRSfs_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1979
1992
NppStatus
1993
nppiMulC_8u_C4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[4],
1994
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
1995
1996
NppStatus
1997
nppiMulC_8u_C4RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[4],
1998
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
1999
2012
NppStatus
2013
nppiMulDeviceC_8u_C4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
2014
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2015
2026
NppStatus
2027
nppiMulC_8u_C4IRSfs_Ctx
(
const
Npp8u
aConstants[4],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2028
2029
NppStatus
2030
nppiMulC_8u_C4IRSfs
(
const
Npp8u
aConstants[4],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2031
2042
NppStatus
2043
nppiMulDeviceC_8u_C4IRSfs_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2044
2057
NppStatus
2058
nppiMulC_16u_C1RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
nConstant,
2059
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2060
2061
NppStatus
2062
nppiMulC_16u_C1RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
nConstant,
2063
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2064
2077
NppStatus
2078
nppiMulDeviceC_16u_C1RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstant,
2079
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2080
2081
2092
NppStatus
2093
nppiMulC_16u_C1IRSfs_Ctx
(
const
Npp16u
nConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2094
2095
NppStatus
2096
nppiMulC_16u_C1IRSfs
(
const
Npp16u
nConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2097
2108
NppStatus
2109
nppiMulDeviceC_16u_C1IRSfs_Ctx
(
const
Npp16u
* pConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2110
2123
NppStatus
2124
nppiMulC_16u_C3RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
2125
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2126
2127
NppStatus
2128
nppiMulC_16u_C3RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
2129
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2130
2143
NppStatus
2144
nppiMulDeviceC_16u_C3RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
2145
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2146
2157
NppStatus
2158
nppiMulC_16u_C3IRSfs_Ctx
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2159
2160
NppStatus
2161
nppiMulC_16u_C3IRSfs
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2162
2173
NppStatus
2174
nppiMulDeviceC_16u_C3IRSfs_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2175
2188
NppStatus
2189
nppiMulC_16u_AC4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
2190
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2191
2192
NppStatus
2193
nppiMulC_16u_AC4RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
2194
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2195
2208
NppStatus
2209
nppiMulDeviceC_16u_AC4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
2210
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2211
2222
NppStatus
2223
nppiMulC_16u_AC4IRSfs_Ctx
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2224
2225
NppStatus
2226
nppiMulC_16u_AC4IRSfs
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2227
2238
NppStatus
2239
nppiMulDeviceC_16u_AC4IRSfs_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2240
2253
NppStatus
2254
nppiMulC_16u_C4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[4],
2255
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2256
2257
NppStatus
2258
nppiMulC_16u_C4RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[4],
2259
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2260
2273
NppStatus
2274
nppiMulDeviceC_16u_C4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
2275
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2276
2287
NppStatus
2288
nppiMulC_16u_C4IRSfs_Ctx
(
const
Npp16u
aConstants[4],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2289
2290
NppStatus
2291
nppiMulC_16u_C4IRSfs
(
const
Npp16u
aConstants[4],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2292
2303
NppStatus
2304
nppiMulDeviceC_16u_C4IRSfs_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2305
2318
NppStatus
2319
nppiMulC_16s_C1RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
nConstant,
2320
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2321
2322
NppStatus
2323
nppiMulC_16s_C1RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
nConstant,
2324
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2325
2338
NppStatus
2339
nppiMulDeviceC_16s_C1RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstant,
2340
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2341
2352
NppStatus
2353
nppiMulC_16s_C1IRSfs_Ctx
(
const
Npp16s
nConstant,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2354
2355
NppStatus
2356
nppiMulC_16s_C1IRSfs
(
const
Npp16s
nConstant,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2357
2368
NppStatus
2369
nppiMulDeviceC_16s_C1IRSfs_Ctx
(
const
Npp16s
* pConstant,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2370
2383
NppStatus
2384
nppiMulC_16s_C3RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
2385
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2386
2387
NppStatus
2388
nppiMulC_16s_C3RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
2389
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2390
2403
NppStatus
2404
nppiMulDeviceC_16s_C3RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstants,
2405
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2406
2417
NppStatus
2418
nppiMulC_16s_C3IRSfs_Ctx
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2419
2420
NppStatus
2421
nppiMulC_16s_C3IRSfs
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2422
2433
NppStatus
2434
nppiMulDeviceC_16s_C3IRSfs_Ctx
(
const
Npp16s
* pConstants,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2435
2448
NppStatus
2449
nppiMulC_16s_AC4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
2450
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2451
2452
NppStatus
2453
nppiMulC_16s_AC4RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
2454
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2455
2468
NppStatus
2469
nppiMulDeviceC_16s_AC4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstants,
2470
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2471
2482
NppStatus
2483
nppiMulC_16s_AC4IRSfs_Ctx
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2484
2485
NppStatus
2486
nppiMulC_16s_AC4IRSfs
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2487
2498
NppStatus
2499
nppiMulDeviceC_16s_AC4IRSfs_Ctx
(
const
Npp16s
* pConstants,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2500
2513
NppStatus
2514
nppiMulC_16s_C4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[4],
2515
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2516
2517
NppStatus
2518
nppiMulC_16s_C4RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[4],
2519
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2520
2533
NppStatus
2534
nppiMulDeviceC_16s_C4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstants,
2535
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2536
2547
NppStatus
2548
nppiMulC_16s_C4IRSfs_Ctx
(
const
Npp16s
aConstants[4],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2549
2550
NppStatus
2551
nppiMulC_16s_C4IRSfs
(
const
Npp16s
aConstants[4],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2552
2563
NppStatus
2564
nppiMulDeviceC_16s_C4IRSfs_Ctx
(
const
Npp16s
* pConstants,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2565
2578
NppStatus
2579
nppiMulC_16sc_C1RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
nConstant,
2580
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2581
2582
NppStatus
2583
nppiMulC_16sc_C1RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
nConstant,
2584
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2585
2596
NppStatus
2597
nppiMulC_16sc_C1IRSfs_Ctx
(
const
Npp16sc
nConstant,
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2598
2599
NppStatus
2600
nppiMulC_16sc_C1IRSfs
(
const
Npp16sc
nConstant,
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2601
2614
NppStatus
2615
nppiMulC_16sc_C3RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
2616
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2617
2618
NppStatus
2619
nppiMulC_16sc_C3RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
2620
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2621
2632
NppStatus
2633
nppiMulC_16sc_C3IRSfs_Ctx
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2634
2635
NppStatus
2636
nppiMulC_16sc_C3IRSfs
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2637
2650
NppStatus
2651
nppiMulC_16sc_AC4RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
2652
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2653
2654
NppStatus
2655
nppiMulC_16sc_AC4RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
2656
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2657
2668
NppStatus
2669
nppiMulC_16sc_AC4IRSfs_Ctx
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2670
2671
NppStatus
2672
nppiMulC_16sc_AC4IRSfs
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2673
2686
NppStatus
2687
nppiMulC_32s_C1RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
nConstant,
2688
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2689
NppStatus
2690
nppiMulC_32s_C1RSfs
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
nConstant,
2691
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2692
2705
NppStatus
2706
nppiMulDeviceC_32s_C1RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pConstant,
2707
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2708
2719
NppStatus
2720
nppiMulC_32s_C1IRSfs_Ctx
(
const
Npp32s
nConstant,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2721
2722
NppStatus
2723
nppiMulC_32s_C1IRSfs
(
const
Npp32s
nConstant,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2724
2735
NppStatus
2736
nppiMulDeviceC_32s_C1IRSfs_Ctx
(
const
Npp32s
* pConstant,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2737
2750
NppStatus
2751
nppiMulC_32s_C3RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
aConstants[3],
2752
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2753
2754
NppStatus
2755
nppiMulC_32s_C3RSfs
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
aConstants[3],
2756
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2757
2770
NppStatus
2771
nppiMulDeviceC_32s_C3RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pConstants,
2772
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2773
2784
NppStatus
2785
nppiMulC_32s_C3IRSfs_Ctx
(
const
Npp32s
aConstants[3],
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2786
2787
NppStatus
2788
nppiMulC_32s_C3IRSfs
(
const
Npp32s
aConstants[3],
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2789
2800
NppStatus
2801
nppiMulDeviceC_32s_C3IRSfs_Ctx
(
const
Npp32s
* pConstants,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2802
2815
NppStatus
2816
nppiMulC_32sc_C1RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
nConstant,
2817
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2818
2819
NppStatus
2820
nppiMulC_32sc_C1RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
nConstant,
2821
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2822
2833
NppStatus
2834
nppiMulC_32sc_C1IRSfs_Ctx
(
const
Npp32sc
nConstant,
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2835
2836
NppStatus
2837
nppiMulC_32sc_C1IRSfs
(
const
Npp32sc
nConstant,
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2838
2851
NppStatus
2852
nppiMulC_32sc_C3RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
2853
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2854
2855
NppStatus
2856
nppiMulC_32sc_C3RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
2857
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2858
2869
NppStatus
2870
nppiMulC_32sc_C3IRSfs_Ctx
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2871
2872
NppStatus
2873
nppiMulC_32sc_C3IRSfs
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2874
2887
NppStatus
2888
nppiMulC_32sc_AC4RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
2889
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2890
2891
NppStatus
2892
nppiMulC_32sc_AC4RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
2893
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2894
2905
NppStatus
2906
nppiMulC_32sc_AC4IRSfs_Ctx
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
2907
2908
NppStatus
2909
nppiMulC_32sc_AC4IRSfs
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
2910
2922
NppStatus
2923
nppiMulC_16f_C1R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
2924
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
2925
2926
NppStatus
2927
nppiMulC_16f_C1R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
2928
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
2929
2941
NppStatus
2942
nppiMulDeviceC_16f_C1R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstant,
2943
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
2944
2954
NppStatus
2955
nppiMulC_16f_C1IR_Ctx
(
const
Npp32f
nConstant,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
2956
2957
NppStatus
2958
nppiMulC_16f_C1IR
(
const
Npp32f
nConstant,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
2959
2969
NppStatus
2970
nppiMulDeviceC_16f_C1IR_Ctx
(
const
Npp32f
* pConstant,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
2971
2983
NppStatus
2984
nppiMulC_16f_C3R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
2985
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
2986
2987
NppStatus
2988
nppiMulC_16f_C3R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
2989
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
2990
3002
NppStatus
3003
nppiMulDeviceC_16f_C3R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
3004
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3005
3015
NppStatus
3016
nppiMulC_16f_C3IR_Ctx
(
const
Npp32f
aConstants[3],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3017
3018
NppStatus
3019
nppiMulC_16f_C3IR
(
const
Npp32f
aConstants[3],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3020
3030
NppStatus
3031
nppiMulDeviceC_16f_C3IR_Ctx
(
const
Npp32f
* pConstants,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3032
3044
NppStatus
3045
nppiMulC_16f_C4R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
3046
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3047
3048
NppStatus
3049
nppiMulC_16f_C4R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
3050
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3051
3063
NppStatus
3064
nppiMulDeviceC_16f_C4R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
3065
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3066
3076
NppStatus
3077
nppiMulC_16f_C4IR_Ctx
(
const
Npp32f
aConstants[4],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3078
3079
NppStatus
3080
nppiMulC_16f_C4IR
(
const
Npp32f
aConstants[4],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3081
3091
NppStatus
3092
nppiMulDeviceC_16f_C4IR_Ctx
(
const
Npp32f
* pConstants,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3093
3105
NppStatus
3106
nppiMulC_32f_C1R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
3107
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3108
3109
NppStatus
3110
nppiMulC_32f_C1R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
3111
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3112
3124
NppStatus
3125
nppiMulDeviceC_32f_C1R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstant,
3126
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3127
3137
NppStatus
3138
nppiMulC_32f_C1IR_Ctx
(
const
Npp32f
nConstant,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3139
3140
NppStatus
3141
nppiMulC_32f_C1IR
(
const
Npp32f
nConstant,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3142
3152
NppStatus
3153
nppiMulDeviceC_32f_C1IR_Ctx
(
const
Npp32f
* pConstant,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3154
3166
NppStatus
3167
nppiMulC_32f_C3R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
3168
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3169
3170
NppStatus
3171
nppiMulC_32f_C3R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
3172
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3173
3185
NppStatus
3186
nppiMulDeviceC_32f_C3R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
3187
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3188
3198
NppStatus
3199
nppiMulC_32f_C3IR_Ctx
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3200
3201
NppStatus
3202
nppiMulC_32f_C3IR
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3203
3213
NppStatus
3214
nppiMulDeviceC_32f_C3IR_Ctx
(
const
Npp32f
* pConstants,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3215
3227
NppStatus
3228
nppiMulC_32f_AC4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
3229
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3230
3231
NppStatus
3232
nppiMulC_32f_AC4R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
3233
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3234
3246
NppStatus
3247
nppiMulDeviceC_32f_AC4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
3248
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3249
3250
3260
NppStatus
3261
nppiMulC_32f_AC4IR_Ctx
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3262
3263
NppStatus
3264
nppiMulC_32f_AC4IR
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3265
3275
NppStatus
3276
nppiMulDeviceC_32f_AC4IR_Ctx
(
const
Npp32f
* pConstants,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3277
3289
NppStatus
3290
nppiMulC_32f_C4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
3291
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3292
3293
NppStatus
3294
nppiMulC_32f_C4R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
3295
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3296
3308
NppStatus
3309
nppiMulDeviceC_32f_C4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
3310
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3311
3312
3322
NppStatus
3323
nppiMulC_32f_C4IR_Ctx
(
const
Npp32f
aConstants[4],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3324
3325
NppStatus
3326
nppiMulC_32f_C4IR
(
const
Npp32f
aConstants[4],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3327
3337
NppStatus
3338
nppiMulDeviceC_32f_C4IR_Ctx
(
const
Npp32f
* pConstants,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3339
3351
NppStatus
3352
nppiMulC_32fc_C1R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
nConstant,
3353
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3354
3355
NppStatus
3356
nppiMulC_32fc_C1R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
nConstant,
3357
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3358
3368
NppStatus
3369
nppiMulC_32fc_C1IR_Ctx
(
const
Npp32fc
nConstant,
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3370
3371
NppStatus
3372
nppiMulC_32fc_C1IR
(
const
Npp32fc
nConstant,
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3373
3385
NppStatus
3386
nppiMulC_32fc_C3R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
3387
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3388
3389
NppStatus
3390
nppiMulC_32fc_C3R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
3391
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3392
3402
NppStatus
3403
nppiMulC_32fc_C3IR_Ctx
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3404
3405
NppStatus
3406
nppiMulC_32fc_C3IR
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3407
3419
NppStatus
3420
nppiMulC_32fc_AC4R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
3421
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3422
3423
NppStatus
3424
nppiMulC_32fc_AC4R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
3425
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3426
3436
NppStatus
3437
nppiMulC_32fc_AC4IR_Ctx
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3438
3439
NppStatus
3440
nppiMulC_32fc_AC4IR
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3441
3453
NppStatus
3454
nppiMulC_32fc_C4R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[4],
3455
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3456
3457
NppStatus
3458
nppiMulC_32fc_C4R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[4],
3459
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3460
3470
NppStatus
3471
nppiMulC_32fc_C4IR_Ctx
(
const
Npp32fc
aConstants[4],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3472
3473
NppStatus
3474
nppiMulC_32fc_C4IR
(
const
Npp32fc
aConstants[4],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3475
3502
NppStatus
3503
nppiMulCScale_8u_C1R_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
nConstant,
3504
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3505
3506
NppStatus
3507
nppiMulCScale_8u_C1R
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
nConstant,
3508
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3509
3521
NppStatus
3522
nppiMulDeviceCScale_8u_C1R_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstant,
3523
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3524
3534
NppStatus
3535
nppiMulCScale_8u_C1IR_Ctx
(
const
Npp8u
nConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3536
3537
NppStatus
3538
nppiMulCScale_8u_C1IR
(
const
Npp8u
nConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3539
3549
NppStatus
3550
nppiMulDeviceCScale_8u_C1IR_Ctx
(
const
Npp8u
* pConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3551
3563
NppStatus
3564
nppiMulCScale_8u_C3R_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
3565
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3566
3567
NppStatus
3568
nppiMulCScale_8u_C3R
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
3569
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3570
3582
NppStatus
3583
nppiMulDeviceCScale_8u_C3R_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
3584
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3585
3595
NppStatus
3596
nppiMulCScale_8u_C3IR_Ctx
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3597
3598
NppStatus
3599
nppiMulCScale_8u_C3IR
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3600
3610
NppStatus
3611
nppiMulDeviceCScale_8u_C3IR_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3612
3624
NppStatus
3625
nppiMulCScale_8u_AC4R_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
3626
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3627
3628
NppStatus
3629
nppiMulCScale_8u_AC4R
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
3630
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3631
3643
NppStatus
3644
nppiMulDeviceCScale_8u_AC4R_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
3645
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3646
3656
NppStatus
3657
nppiMulCScale_8u_AC4IR_Ctx
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3658
3659
NppStatus
3660
nppiMulCScale_8u_AC4IR
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3661
3671
NppStatus
3672
nppiMulDeviceCScale_8u_AC4IR_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3673
3685
NppStatus
3686
nppiMulCScale_8u_C4R_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[4],
3687
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3688
3689
NppStatus
3690
nppiMulCScale_8u_C4R
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[4],
3691
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3692
3704
NppStatus
3705
nppiMulDeviceCScale_8u_C4R_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
3706
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3707
3717
NppStatus
3718
nppiMulCScale_8u_C4IR_Ctx
(
const
Npp8u
aConstants[4],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3719
3720
NppStatus
3721
nppiMulCScale_8u_C4IR
(
const
Npp8u
aConstants[4],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3722
3732
NppStatus
3733
nppiMulDeviceCScale_8u_C4IR_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3734
3746
NppStatus
3747
nppiMulCScale_16u_C1R_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
nConstant,
3748
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3749
3750
NppStatus
3751
nppiMulCScale_16u_C1R
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
nConstant,
3752
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3753
3765
NppStatus
3766
nppiMulDeviceCScale_16u_C1R_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstant,
3767
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3768
3778
NppStatus
3779
nppiMulCScale_16u_C1IR_Ctx
(
const
Npp16u
nConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3780
3781
NppStatus
3782
nppiMulCScale_16u_C1IR
(
const
Npp16u
nConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3783
3793
NppStatus
3794
nppiMulDeviceCScale_16u_C1IR_Ctx
(
const
Npp16u
* pConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3795
3807
NppStatus
3808
nppiMulCScale_16u_C3R_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
3809
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3810
3811
NppStatus
3812
nppiMulCScale_16u_C3R
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
3813
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3814
3826
NppStatus
3827
nppiMulDeviceCScale_16u_C3R_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
3828
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3829
3839
NppStatus
3840
nppiMulCScale_16u_C3IR_Ctx
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3841
3842
NppStatus
3843
nppiMulCScale_16u_C3IR
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3844
3854
NppStatus
3855
nppiMulDeviceCScale_16u_C3IR_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3856
3868
NppStatus
3869
nppiMulCScale_16u_AC4R_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
3870
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3871
3872
NppStatus
3873
nppiMulCScale_16u_AC4R
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
3874
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3875
3887
NppStatus
3888
nppiMulDeviceCScale_16u_AC4R_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
3889
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3890
3891
3901
NppStatus
3902
nppiMulCScale_16u_AC4IR_Ctx
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3903
3904
NppStatus
3905
nppiMulCScale_16u_AC4IR
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3906
3916
NppStatus
3917
nppiMulDeviceCScale_16u_AC4IR_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3918
3930
NppStatus
3931
nppiMulCScale_16u_C4R_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[4],
3932
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3933
3934
NppStatus
3935
nppiMulCScale_16u_C4R
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[4],
3936
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
3937
3949
NppStatus
3950
nppiMulDeviceCScale_16u_C4R_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
3951
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3952
3962
NppStatus
3963
nppiMulCScale_16u_C4IR_Ctx
(
const
Npp16u
aConstants[4],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3964
3965
NppStatus
3966
nppiMulCScale_16u_C4IR
(
const
Npp16u
aConstants[4],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
3967
3977
NppStatus
3978
nppiMulDeviceCScale_16u_C4IR_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
3979
4004
NppStatus
4005
nppiSubC_8u_C1RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
nConstant,
4006
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4007
4008
NppStatus
4009
nppiSubC_8u_C1RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
nConstant,
4010
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4011
4024
NppStatus
4025
nppiSubDeviceC_8u_C1RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstant,
4026
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4027
4038
NppStatus
4039
nppiSubC_8u_C1IRSfs_Ctx
(
const
Npp8u
nConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4040
4041
NppStatus
4042
nppiSubC_8u_C1IRSfs
(
const
Npp8u
nConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4043
4054
NppStatus
4055
nppiSubDeviceC_8u_C1IRSfs_Ctx
(
const
Npp8u
* pConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4056
4069
NppStatus
4070
nppiSubC_8u_C3RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
4071
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4072
NppStatus
4073
nppiSubC_8u_C3RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
4074
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4075
4088
NppStatus
4089
nppiSubDeviceC_8u_C3RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
4090
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4091
4102
NppStatus
4103
nppiSubC_8u_C3IRSfs_Ctx
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4104
4105
NppStatus
4106
nppiSubC_8u_C3IRSfs
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4107
4118
NppStatus
4119
nppiSubDeviceC_8u_C3IRSfs_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4120
4133
NppStatus
4134
nppiSubC_8u_AC4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
4135
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4136
4137
NppStatus
4138
nppiSubC_8u_AC4RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
4139
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4140
4153
NppStatus
4154
nppiSubDeviceC_8u_AC4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
4155
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4156
4167
NppStatus
4168
nppiSubC_8u_AC4IRSfs_Ctx
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4169
4170
NppStatus
4171
nppiSubC_8u_AC4IRSfs
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4172
4183
NppStatus
4184
nppiSubDeviceC_8u_AC4IRSfs_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4185
4198
NppStatus
4199
nppiSubC_8u_C4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[4],
4200
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4201
4202
NppStatus
4203
nppiSubC_8u_C4RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[4],
4204
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4205
4218
NppStatus
4219
nppiSubDeviceC_8u_C4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
4220
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4221
4232
NppStatus
4233
nppiSubC_8u_C4IRSfs_Ctx
(
const
Npp8u
aConstants[4],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4234
4235
NppStatus
4236
nppiSubC_8u_C4IRSfs
(
const
Npp8u
aConstants[4],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4237
4248
NppStatus
4249
nppiSubDeviceC_8u_C4IRSfs_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4250
4263
NppStatus
4264
nppiSubC_16u_C1RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
nConstant,
4265
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4266
4267
NppStatus
4268
nppiSubC_16u_C1RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
nConstant,
4269
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4270
4283
NppStatus
4284
nppiSubDeviceC_16u_C1RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstant,
4285
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4286
4297
NppStatus
4298
nppiSubC_16u_C1IRSfs_Ctx
(
const
Npp16u
nConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4299
4300
NppStatus
4301
nppiSubC_16u_C1IRSfs
(
const
Npp16u
nConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4302
4313
NppStatus
4314
nppiSubDeviceC_16u_C1IRSfs_Ctx
(
const
Npp16u
* pConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4315
4328
NppStatus
4329
nppiSubC_16u_C3RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
4330
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4331
4332
NppStatus
4333
nppiSubC_16u_C3RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
4334
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4335
4348
NppStatus
4349
nppiSubDeviceC_16u_C3RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
4350
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4351
4362
NppStatus
4363
nppiSubC_16u_C3IRSfs_Ctx
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4364
4365
NppStatus
4366
nppiSubC_16u_C3IRSfs
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4367
4378
NppStatus
4379
nppiSubDeviceC_16u_C3IRSfs_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4380
4393
NppStatus
4394
nppiSubC_16u_AC4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
4395
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4396
4397
NppStatus
4398
nppiSubC_16u_AC4RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
4399
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4400
4413
NppStatus
4414
nppiSubDeviceC_16u_AC4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
4415
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4416
4427
NppStatus
4428
nppiSubC_16u_AC4IRSfs_Ctx
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4429
4430
NppStatus
4431
nppiSubC_16u_AC4IRSfs
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4432
4443
NppStatus
4444
nppiSubDeviceC_16u_AC4IRSfs_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4445
4458
NppStatus
4459
nppiSubC_16u_C4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[4],
4460
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4461
4462
NppStatus
4463
nppiSubC_16u_C4RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[4],
4464
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4465
4478
NppStatus
4479
nppiSubDeviceC_16u_C4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
4480
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4481
4492
NppStatus
4493
nppiSubC_16u_C4IRSfs_Ctx
(
const
Npp16u
aConstants[4],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4494
4495
NppStatus
4496
nppiSubC_16u_C4IRSfs
(
const
Npp16u
aConstants[4],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4497
4508
NppStatus
4509
nppiSubDeviceC_16u_C4IRSfs_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4510
4523
NppStatus
4524
nppiSubC_16s_C1RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
nConstant,
4525
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4526
4527
NppStatus
4528
nppiSubC_16s_C1RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
nConstant,
4529
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4530
4543
NppStatus
4544
nppiSubDeviceC_16s_C1RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstant,
4545
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4546
4557
NppStatus
4558
nppiSubC_16s_C1IRSfs_Ctx
(
const
Npp16s
nConstant,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4559
4560
NppStatus
4561
nppiSubC_16s_C1IRSfs
(
const
Npp16s
nConstant,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4562
4573
NppStatus
4574
nppiSubDeviceC_16s_C1IRSfs_Ctx
(
const
Npp16s
* pConstant,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4575
4588
NppStatus
4589
nppiSubC_16s_C3RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
4590
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4591
4592
NppStatus
4593
nppiSubC_16s_C3RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
4594
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4595
4608
NppStatus
4609
nppiSubDeviceC_16s_C3RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstants,
4610
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4611
4622
NppStatus
4623
nppiSubC_16s_C3IRSfs_Ctx
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4624
4625
NppStatus
4626
nppiSubC_16s_C3IRSfs
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4627
4638
NppStatus
4639
nppiSubDeviceC_16s_C3IRSfs_Ctx
(
const
Npp16s
* pConstants,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4640
4653
NppStatus
4654
nppiSubC_16s_AC4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
4655
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4656
4657
NppStatus
4658
nppiSubC_16s_AC4RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
4659
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4660
4673
NppStatus
4674
nppiSubDeviceC_16s_AC4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstants,
4675
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4676
4687
NppStatus
4688
nppiSubC_16s_AC4IRSfs_Ctx
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4689
4690
NppStatus
4691
nppiSubC_16s_AC4IRSfs
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4692
4703
NppStatus
4704
nppiSubDeviceC_16s_AC4IRSfs_Ctx
(
const
Npp16s
* pConstants,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4705
4718
NppStatus
4719
nppiSubC_16s_C4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[4],
4720
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4721
4722
NppStatus
4723
nppiSubC_16s_C4RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[4],
4724
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4725
4738
NppStatus
4739
nppiSubDeviceC_16s_C4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstants,
4740
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4741
4752
NppStatus
4753
nppiSubC_16s_C4IRSfs_Ctx
(
const
Npp16s
aConstants[4],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4754
4755
NppStatus
4756
nppiSubC_16s_C4IRSfs
(
const
Npp16s
aConstants[4],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4757
4768
NppStatus
4769
nppiSubDeviceC_16s_C4IRSfs_Ctx
(
const
Npp16s
* pConstants,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4770
4783
NppStatus
4784
nppiSubC_16sc_C1RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
nConstant,
4785
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4786
4787
NppStatus
4788
nppiSubC_16sc_C1RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
nConstant,
4789
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4790
4801
NppStatus
4802
nppiSubC_16sc_C1IRSfs_Ctx
(
const
Npp16sc
nConstant,
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4803
4804
NppStatus
4805
nppiSubC_16sc_C1IRSfs
(
const
Npp16sc
nConstant,
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4806
4819
NppStatus
4820
nppiSubC_16sc_C3RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
4821
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4822
4823
NppStatus
4824
nppiSubC_16sc_C3RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
4825
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4826
4837
NppStatus
4838
nppiSubC_16sc_C3IRSfs_Ctx
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4839
4840
NppStatus
4841
nppiSubC_16sc_C3IRSfs
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4842
4855
NppStatus
4856
nppiSubC_16sc_AC4RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
4857
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4858
4859
NppStatus
4860
nppiSubC_16sc_AC4RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
4861
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4862
4873
NppStatus
4874
nppiSubC_16sc_AC4IRSfs_Ctx
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4875
4876
NppStatus
4877
nppiSubC_16sc_AC4IRSfs
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4878
4891
NppStatus
4892
nppiSubC_32s_C1RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
nConstant,
4893
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4894
4895
NppStatus
4896
nppiSubC_32s_C1RSfs
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
nConstant,
4897
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4898
4911
NppStatus
4912
nppiSubDeviceC_32s_C1RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pConstant,
4913
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4914
4925
NppStatus
4926
nppiSubC_32s_C1IRSfs_Ctx
(
const
Npp32s
nConstant,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4927
4928
NppStatus
4929
nppiSubC_32s_C1IRSfs
(
const
Npp32s
nConstant,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4930
4941
NppStatus
4942
nppiSubDeviceC_32s_C1IRSfs_Ctx
(
const
Npp32s
* pConstant,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4943
4956
NppStatus
4957
nppiSubC_32s_C3RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
aConstants[3],
4958
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4959
4960
NppStatus
4961
nppiSubC_32s_C3RSfs
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
aConstants[3],
4962
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4963
4976
NppStatus
4977
nppiSubDeviceC_32s_C3RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pConstants,
4978
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4979
4990
NppStatus
4991
nppiSubC_32s_C3IRSfs_Ctx
(
const
Npp32s
aConstants[3],
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
4992
4993
NppStatus
4994
nppiSubC_32s_C3IRSfs
(
const
Npp32s
aConstants[3],
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
4995
5006
NppStatus
5007
nppiSubDeviceC_32s_C3IRSfs_Ctx
(
const
Npp32s
* pConstants,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5008
5021
NppStatus
5022
nppiSubC_32sc_C1RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
nConstant,
5023
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5024
5025
NppStatus
5026
nppiSubC_32sc_C1RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
nConstant,
5027
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5028
5039
NppStatus
5040
nppiSubC_32sc_C1IRSfs_Ctx
(
const
Npp32sc
nConstant,
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5041
5042
NppStatus
5043
nppiSubC_32sc_C1IRSfs
(
const
Npp32sc
nConstant,
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5044
5057
NppStatus
5058
nppiSubC_32sc_C3RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
5059
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5060
5061
NppStatus
5062
nppiSubC_32sc_C3RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
5063
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5064
5075
NppStatus
5076
nppiSubC_32sc_C3IRSfs_Ctx
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5077
5078
NppStatus
5079
nppiSubC_32sc_C3IRSfs
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5080
5093
NppStatus
5094
nppiSubC_32sc_AC4RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
5095
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5096
5097
NppStatus
5098
nppiSubC_32sc_AC4RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
5099
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5100
5111
NppStatus
5112
nppiSubC_32sc_AC4IRSfs_Ctx
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5113
5114
NppStatus
5115
nppiSubC_32sc_AC4IRSfs
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5116
5128
NppStatus
5129
nppiSubC_16f_C1R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
5130
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5131
5132
NppStatus
5133
nppiSubC_16f_C1R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
5134
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
5135
5147
NppStatus
5148
nppiSubDeviceC_16f_C1R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstant,
5149
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5150
5160
NppStatus
5161
nppiSubC_16f_C1IR_Ctx
(
const
Npp32f
nConstant,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5162
5163
NppStatus
5164
nppiSubC_16f_C1IR
(
const
Npp32f
nConstant,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
5165
5175
NppStatus
5176
nppiSubDeviceC_16f_C1IR_Ctx
(
const
Npp32f
* pConstant,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5177
5189
NppStatus
5190
nppiSubC_16f_C3R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
5191
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5192
5193
NppStatus
5194
nppiSubC_16f_C3R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
5195
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
5196
5208
NppStatus
5209
nppiSubDeviceC_16f_C3R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
5210
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5211
5221
NppStatus
5222
nppiSubC_16f_C3IR_Ctx
(
const
Npp32f
aConstants[3],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5223
5224
NppStatus
5225
nppiSubC_16f_C3IR
(
const
Npp32f
aConstants[3],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
5226
5236
NppStatus
5237
nppiSubDeviceC_16f_C3IR_Ctx
(
const
Npp32f
* pConstants,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5238
5250
NppStatus
5251
nppiSubC_16f_C4R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
5252
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5253
5254
NppStatus
5255
nppiSubC_16f_C4R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
5256
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
5257
5269
NppStatus
5270
nppiSubDeviceC_16f_C4R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
5271
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5272
5282
NppStatus
5283
nppiSubC_16f_C4IR_Ctx
(
const
Npp32f
aConstants[4],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5284
5285
NppStatus
5286
nppiSubC_16f_C4IR
(
const
Npp32f
aConstants[4],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
5287
5297
NppStatus
5298
nppiSubDeviceC_16f_C4IR_Ctx
(
const
Npp32f
* pConstants,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5299
5311
NppStatus
5312
nppiSubC_32f_C1R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
5313
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5314
5315
NppStatus
5316
nppiSubC_32f_C1R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
5317
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
5318
5330
NppStatus
5331
nppiSubDeviceC_32f_C1R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstant,
5332
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5333
5343
NppStatus
5344
nppiSubC_32f_C1IR_Ctx
(
const
Npp32f
nConstant,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5345
5346
NppStatus
5347
nppiSubC_32f_C1IR
(
const
Npp32f
nConstant,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
5348
5358
NppStatus
5359
nppiSubDeviceC_32f_C1IR_Ctx
(
const
Npp32f
* pConstant,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5360
5372
NppStatus
5373
nppiSubC_32f_C3R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
5374
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5375
5376
NppStatus
5377
nppiSubC_32f_C3R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
5378
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
5379
5391
NppStatus
5392
nppiSubDeviceC_32f_C3R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
5393
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5394
5404
NppStatus
5405
nppiSubC_32f_C3IR_Ctx
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5406
5407
NppStatus
5408
nppiSubC_32f_C3IR
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
5409
5419
NppStatus
5420
nppiSubDeviceC_32f_C3IR_Ctx
(
const
Npp32f
* pConstants,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5421
5433
NppStatus
5434
nppiSubC_32f_AC4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
5435
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5436
5437
NppStatus
5438
nppiSubC_32f_AC4R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
5439
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
5440
5452
NppStatus
5453
nppiSubDeviceC_32f_AC4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
5454
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5455
5465
NppStatus
5466
nppiSubC_32f_AC4IR_Ctx
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5467
5468
NppStatus
5469
nppiSubC_32f_AC4IR
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
5470
5480
NppStatus
5481
nppiSubDeviceC_32f_AC4IR_Ctx
(
const
Npp32f
* pConstants,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5482
5494
NppStatus
5495
nppiSubC_32f_C4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
5496
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5497
5498
NppStatus
5499
nppiSubC_32f_C4R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
5500
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
5501
5513
NppStatus
5514
nppiSubDeviceC_32f_C4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
5515
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5516
5526
NppStatus
5527
nppiSubC_32f_C4IR_Ctx
(
const
Npp32f
aConstants[4],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5528
5529
NppStatus
5530
nppiSubC_32f_C4IR
(
const
Npp32f
aConstants[4],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
5531
5541
NppStatus
5542
nppiSubDeviceC_32f_C4IR_Ctx
(
const
Npp32f
* pConstants,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5543
5555
NppStatus
5556
nppiSubC_32fc_C1R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
nConstant,
5557
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5558
5559
NppStatus
5560
nppiSubC_32fc_C1R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
nConstant,
5561
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
5562
5572
NppStatus
5573
nppiSubC_32fc_C1IR_Ctx
(
const
Npp32fc
nConstant,
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5574
5575
NppStatus
5576
nppiSubC_32fc_C1IR
(
const
Npp32fc
nConstant,
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
5577
5589
NppStatus
5590
nppiSubC_32fc_C3R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
5591
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5592
5593
NppStatus
5594
nppiSubC_32fc_C3R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
5595
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
5596
5606
NppStatus
5607
nppiSubC_32fc_C3IR_Ctx
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5608
5609
NppStatus
5610
nppiSubC_32fc_C3IR
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
5611
5623
NppStatus
5624
nppiSubC_32fc_AC4R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
5625
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5626
5627
NppStatus
5628
nppiSubC_32fc_AC4R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
5629
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
5630
5640
NppStatus
5641
nppiSubC_32fc_AC4IR_Ctx
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5642
5643
NppStatus
5644
nppiSubC_32fc_AC4IR
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
5645
5657
NppStatus
5658
nppiSubC_32fc_C4R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[4],
5659
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5660
5661
NppStatus
5662
nppiSubC_32fc_C4R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[4],
5663
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
5664
5674
NppStatus
5675
nppiSubC_32fc_C4IR_Ctx
(
const
Npp32fc
aConstants[4],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
5676
5677
NppStatus
5678
nppiSubC_32fc_C4IR
(
const
Npp32fc
aConstants[4],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
5679
5706
NppStatus
5707
nppiDivC_8u_C1RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
nConstant,
5708
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5709
5710
NppStatus
5711
nppiDivC_8u_C1RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
nConstant,
5712
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5713
5726
NppStatus
5727
nppiDivDeviceC_8u_C1RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstant,
5728
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5729
5740
NppStatus
5741
nppiDivC_8u_C1IRSfs_Ctx
(
const
Npp8u
nConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5742
5743
NppStatus
5744
nppiDivC_8u_C1IRSfs
(
const
Npp8u
nConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5745
5756
NppStatus
5757
nppiDivDeviceC_8u_C1IRSfs_Ctx
(
const
Npp8u
* pConstant,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5758
5771
NppStatus
5772
nppiDivC_8u_C3RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
5773
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5774
5775
NppStatus
5776
nppiDivC_8u_C3RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
5777
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5778
5791
NppStatus
5792
nppiDivDeviceC_8u_C3RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
5793
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5794
5805
NppStatus
5806
nppiDivC_8u_C3IRSfs_Ctx
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5807
5808
NppStatus
5809
nppiDivC_8u_C3IRSfs
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5810
5821
NppStatus
5822
nppiDivDeviceC_8u_C3IRSfs_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5823
5836
NppStatus
5837
nppiDivC_8u_AC4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
5838
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5839
5840
NppStatus
5841
nppiDivC_8u_AC4RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[3],
5842
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5843
5856
NppStatus
5857
nppiDivDeviceC_8u_AC4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
5858
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5859
5870
NppStatus
5871
nppiDivC_8u_AC4IRSfs_Ctx
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5872
5873
NppStatus
5874
nppiDivC_8u_AC4IRSfs
(
const
Npp8u
aConstants[3],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5875
5886
NppStatus
5887
nppiDivDeviceC_8u_AC4IRSfs_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5888
5901
NppStatus
5902
nppiDivC_8u_C4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[4],
5903
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5904
5905
NppStatus
5906
nppiDivC_8u_C4RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
aConstants[4],
5907
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5908
5921
NppStatus
5922
nppiDivDeviceC_8u_C4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pConstants,
5923
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5924
5935
NppStatus
5936
nppiDivC_8u_C4IRSfs_Ctx
(
const
Npp8u
aConstants[4],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5937
5938
NppStatus
5939
nppiDivC_8u_C4IRSfs
(
const
Npp8u
aConstants[4],
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5940
5951
NppStatus
5952
nppiDivDeviceC_8u_C4IRSfs_Ctx
(
const
Npp8u
* pConstants,
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5953
5966
NppStatus
5967
nppiDivC_16u_C1RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
nConstant,
5968
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5969
5970
NppStatus
5971
nppiDivC_16u_C1RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
nConstant,
5972
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
5973
5986
NppStatus
5987
nppiDivDeviceC_16u_C1RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstant,
5988
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
5989
6000
NppStatus
6001
nppiDivC_16u_C1IRSfs_Ctx
(
const
Npp16u
nConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6002
6003
NppStatus
6004
nppiDivC_16u_C1IRSfs
(
const
Npp16u
nConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6005
6016
NppStatus
6017
nppiDivDeviceC_16u_C1IRSfs_Ctx
(
const
Npp16u
* pConstant,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6018
6031
NppStatus
6032
nppiDivC_16u_C3RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
6033
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6034
6035
NppStatus
6036
nppiDivC_16u_C3RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
6037
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6038
6051
NppStatus
6052
nppiDivDeviceC_16u_C3RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
6053
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6054
6065
NppStatus
6066
nppiDivC_16u_C3IRSfs_Ctx
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6067
6068
NppStatus
6069
nppiDivC_16u_C3IRSfs
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6070
6081
NppStatus
6082
nppiDivDeviceC_16u_C3IRSfs_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6083
6096
NppStatus
6097
nppiDivC_16u_AC4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
6098
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6099
6100
NppStatus
6101
nppiDivC_16u_AC4RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[3],
6102
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6103
6116
NppStatus
6117
nppiDivDeviceC_16u_AC4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
6118
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6119
6120
6131
NppStatus
6132
nppiDivC_16u_AC4IRSfs_Ctx
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6133
6134
NppStatus
6135
nppiDivC_16u_AC4IRSfs
(
const
Npp16u
aConstants[3],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6136
6147
NppStatus
6148
nppiDivDeviceC_16u_AC4IRSfs_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6149
6162
NppStatus
6163
nppiDivC_16u_C4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[4],
6164
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6165
6166
NppStatus
6167
nppiDivC_16u_C4RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
aConstants[4],
6168
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6169
6182
NppStatus
6183
nppiDivDeviceC_16u_C4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pConstants,
6184
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6185
6196
NppStatus
6197
nppiDivC_16u_C4IRSfs_Ctx
(
const
Npp16u
aConstants[4],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6198
6199
NppStatus
6200
nppiDivC_16u_C4IRSfs
(
const
Npp16u
aConstants[4],
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6201
6212
NppStatus
6213
nppiDivDeviceC_16u_C4IRSfs_Ctx
(
const
Npp16u
* pConstants,
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6214
6227
NppStatus
6228
nppiDivC_16s_C1RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
nConstant,
6229
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6230
6231
NppStatus
6232
nppiDivC_16s_C1RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
nConstant,
6233
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6234
6247
NppStatus
6248
nppiDivDeviceC_16s_C1RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstant,
6249
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6250
6261
NppStatus
6262
nppiDivC_16s_C1IRSfs_Ctx
(
const
Npp16s
nConstant,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6263
6264
NppStatus
6265
nppiDivC_16s_C1IRSfs
(
const
Npp16s
nConstant,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6266
6277
NppStatus
6278
nppiDivDeviceC_16s_C1IRSfs_Ctx
(
const
Npp16s
* pConstant,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6279
6292
NppStatus
6293
nppiDivC_16s_C3RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
6294
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6295
6296
NppStatus
6297
nppiDivC_16s_C3RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
6298
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6299
6312
NppStatus
6313
nppiDivDeviceC_16s_C3RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstants,
6314
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6315
6326
NppStatus
6327
nppiDivC_16s_C3IRSfs_Ctx
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6328
6329
NppStatus
6330
nppiDivC_16s_C3IRSfs
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6331
6342
NppStatus
6343
nppiDivDeviceC_16s_C3IRSfs_Ctx
(
const
Npp16s
* pConstants,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6344
6357
NppStatus
6358
nppiDivC_16s_AC4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
6359
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6360
6361
NppStatus
6362
nppiDivC_16s_AC4RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[3],
6363
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6364
6377
NppStatus
6378
nppiDivDeviceC_16s_AC4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstants,
6379
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6380
6391
NppStatus
6392
nppiDivC_16s_AC4IRSfs_Ctx
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6393
6394
NppStatus
6395
nppiDivC_16s_AC4IRSfs
(
const
Npp16s
aConstants[3],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6396
6407
NppStatus
6408
nppiDivDeviceC_16s_AC4IRSfs_Ctx
(
const
Npp16s
* pConstants,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6409
6422
NppStatus
6423
nppiDivC_16s_C4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[4],
6424
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6425
6426
NppStatus
6427
nppiDivC_16s_C4RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
aConstants[4],
6428
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6429
6442
NppStatus
6443
nppiDivDeviceC_16s_C4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pConstants,
6444
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6445
6456
NppStatus
6457
nppiDivC_16s_C4IRSfs_Ctx
(
const
Npp16s
aConstants[4],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6458
6459
NppStatus
6460
nppiDivC_16s_C4IRSfs
(
const
Npp16s
aConstants[4],
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6461
6472
NppStatus
6473
nppiDivDeviceC_16s_C4IRSfs_Ctx
(
const
Npp16s
* pConstants,
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6474
6487
NppStatus
6488
nppiDivC_16sc_C1RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
nConstant,
6489
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6490
6491
NppStatus
6492
nppiDivC_16sc_C1RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
nConstant,
6493
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6494
6505
NppStatus
6506
nppiDivC_16sc_C1IRSfs_Ctx
(
const
Npp16sc
nConstant,
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6507
6508
NppStatus
6509
nppiDivC_16sc_C1IRSfs
(
const
Npp16sc
nConstant,
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6510
6523
NppStatus
6524
nppiDivC_16sc_C3RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
6525
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6526
6527
NppStatus
6528
nppiDivC_16sc_C3RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
6529
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6530
6541
NppStatus
6542
nppiDivC_16sc_C3IRSfs_Ctx
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6543
6544
NppStatus
6545
nppiDivC_16sc_C3IRSfs
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6546
6559
NppStatus
6560
nppiDivC_16sc_AC4RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
6561
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6562
6563
NppStatus
6564
nppiDivC_16sc_AC4RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
aConstants[3],
6565
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6566
6577
NppStatus
6578
nppiDivC_16sc_AC4IRSfs_Ctx
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6579
6580
NppStatus
6581
nppiDivC_16sc_AC4IRSfs
(
const
Npp16sc
aConstants[3],
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6582
6595
NppStatus
6596
nppiDivC_32s_C1RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
nConstant,
6597
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6598
6599
NppStatus
6600
nppiDivC_32s_C1RSfs
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
nConstant,
6601
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6602
6615
NppStatus
6616
nppiDivDeviceC_32s_C1RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pConstant,
6617
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6618
6629
NppStatus
6630
nppiDivC_32s_C1IRSfs_Ctx
(
const
Npp32s
nConstant,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6631
6632
NppStatus
6633
nppiDivC_32s_C1IRSfs
(
const
Npp32s
nConstant,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6634
6645
NppStatus
6646
nppiDivDeviceC_32s_C1IRSfs_Ctx
(
const
Npp32s
* pConstant,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6647
6660
NppStatus
6661
nppiDivC_32s_C3RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
aConstants[3],
6662
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6663
6664
NppStatus
6665
nppiDivC_32s_C3RSfs
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
aConstants[3],
6666
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6667
6680
NppStatus
6681
nppiDivDeviceC_32s_C3RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pConstants,
6682
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6683
6694
NppStatus
6695
nppiDivC_32s_C3IRSfs_Ctx
(
const
Npp32s
aConstants[3],
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6696
6697
NppStatus
6698
nppiDivC_32s_C3IRSfs
(
const
Npp32s
aConstants[3],
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6699
6710
NppStatus
6711
nppiDivDeviceC_32s_C3IRSfs_Ctx
(
const
Npp32s
* pConstants,
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6712
6725
NppStatus
6726
nppiDivC_32sc_C1RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
nConstant,
6727
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6728
6729
NppStatus
6730
nppiDivC_32sc_C1RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
nConstant,
6731
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6732
6743
NppStatus
6744
nppiDivC_32sc_C1IRSfs_Ctx
(
const
Npp32sc
nConstant,
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6745
6746
NppStatus
6747
nppiDivC_32sc_C1IRSfs
(
const
Npp32sc
nConstant,
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6748
6761
NppStatus
6762
nppiDivC_32sc_C3RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
6763
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6764
6765
NppStatus
6766
nppiDivC_32sc_C3RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
6767
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6768
6779
NppStatus
6780
nppiDivC_32sc_C3IRSfs_Ctx
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6781
6782
NppStatus
6783
nppiDivC_32sc_C3IRSfs
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6784
6797
NppStatus
6798
nppiDivC_32sc_AC4RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
6799
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6800
6801
NppStatus
6802
nppiDivC_32sc_AC4RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
aConstants[3],
6803
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6804
6815
NppStatus
6816
nppiDivC_32sc_AC4IRSfs_Ctx
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
6817
6818
NppStatus
6819
nppiDivC_32sc_AC4IRSfs
(
const
Npp32sc
aConstants[3],
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
6820
6832
NppStatus
6833
nppiDivC_16f_C1R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
6834
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
6835
6836
NppStatus
6837
nppiDivC_16f_C1R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
6838
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
6839
6851
NppStatus
6852
nppiDivDeviceC_16f_C1R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstant,
6853
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
6854
6864
NppStatus
6865
nppiDivC_16f_C1IR_Ctx
(
const
Npp32f
nConstant,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
6866
6867
NppStatus
6868
nppiDivC_16f_C1IR
(
const
Npp32f
nConstant,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
6869
6879
NppStatus
6880
nppiDivDeviceC_16f_C1IR_Ctx
(
const
Npp32f
* pConstant,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
6881
6893
NppStatus
6894
nppiDivC_16f_C3R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
6895
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
6896
6897
NppStatus
6898
nppiDivC_16f_C3R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
6899
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
6900
6912
NppStatus
6913
nppiDivDeviceC_16f_C3R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
6914
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
6915
6925
NppStatus
6926
nppiDivC_16f_C3IR_Ctx
(
const
Npp32f
aConstants[3],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
6927
6928
NppStatus
6929
nppiDivC_16f_C3IR
(
const
Npp32f
aConstants[3],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
6930
6940
NppStatus
6941
nppiDivDeviceC_16f_C3IR_Ctx
(
const
Npp32f
* pConstants,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
6942
6954
NppStatus
6955
nppiDivC_16f_C4R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
6956
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
6957
6958
NppStatus
6959
nppiDivC_16f_C4R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
6960
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
6961
6973
NppStatus
6974
nppiDivDeviceC_16f_C4R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
6975
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
6976
6986
NppStatus
6987
nppiDivC_16f_C4IR_Ctx
(
const
Npp32f
aConstants[4],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
6988
6989
NppStatus
6990
nppiDivC_16f_C4IR
(
const
Npp32f
aConstants[4],
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
6991
7001
NppStatus
7002
nppiDivDeviceC_16f_C4IR_Ctx
(
const
Npp32f
* pConstants,
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7003
7015
NppStatus
7016
nppiDivC_32f_C1R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
7017
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7018
7019
NppStatus
7020
nppiDivC_32f_C1R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
nConstant,
7021
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
7022
7034
NppStatus
7035
nppiDivDeviceC_32f_C1R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstant,
7036
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7037
7047
NppStatus
7048
nppiDivC_32f_C1IR_Ctx
(
const
Npp32f
nConstant,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7049
7050
NppStatus
7051
nppiDivC_32f_C1IR
(
const
Npp32f
nConstant,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
7052
7062
NppStatus
7063
nppiDivDeviceC_32f_C1IR_Ctx
(
const
Npp32f
* pConstant,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7064
7076
NppStatus
7077
nppiDivC_32f_C3R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
7078
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7079
7080
NppStatus
7081
nppiDivC_32f_C3R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
7082
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
7083
7095
NppStatus
7096
nppiDivDeviceC_32f_C3R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
7097
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7098
7108
NppStatus
7109
nppiDivC_32f_C3IR_Ctx
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7110
7111
NppStatus
7112
nppiDivC_32f_C3IR
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
7113
7123
NppStatus
7124
nppiDivDeviceC_32f_C3IR_Ctx
(
const
Npp32f
* pConstants,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7125
7137
NppStatus
7138
nppiDivC_32f_AC4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
7139
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7140
7141
NppStatus
7142
nppiDivC_32f_AC4R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[3],
7143
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
7144
7156
NppStatus
7157
nppiDivDeviceC_32f_AC4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
7158
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7159
7169
NppStatus
7170
nppiDivC_32f_AC4IR_Ctx
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7171
7172
NppStatus
7173
nppiDivC_32f_AC4IR
(
const
Npp32f
aConstants[3],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
7174
7184
NppStatus
7185
nppiDivDeviceC_32f_AC4IR_Ctx
(
const
Npp32f
* pConstants,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7186
7198
NppStatus
7199
nppiDivC_32f_C4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
7200
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7201
7202
NppStatus
7203
nppiDivC_32f_C4R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
aConstants[4],
7204
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
7205
7217
NppStatus
7218
nppiDivDeviceC_32f_C4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pConstants,
7219
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7220
7230
NppStatus
7231
nppiDivC_32f_C4IR_Ctx
(
const
Npp32f
aConstants[4],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7232
7233
NppStatus
7234
nppiDivC_32f_C4IR
(
const
Npp32f
aConstants[4],
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
7235
7245
NppStatus
7246
nppiDivDeviceC_32f_C4IR_Ctx
(
const
Npp32f
* pConstants,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7247
7259
NppStatus
7260
nppiDivC_32fc_C1R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
nConstant,
7261
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7262
7263
NppStatus
7264
nppiDivC_32fc_C1R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
nConstant,
7265
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
7266
7276
NppStatus
7277
nppiDivC_32fc_C1IR_Ctx
(
const
Npp32fc
nConstant,
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7278
7279
NppStatus
7280
nppiDivC_32fc_C1IR
(
const
Npp32fc
nConstant,
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
7281
7293
NppStatus
7294
nppiDivC_32fc_C3R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
7295
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7296
7297
NppStatus
7298
nppiDivC_32fc_C3R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
7299
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
7300
7310
NppStatus
7311
nppiDivC_32fc_C3IR_Ctx
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7312
7313
NppStatus
7314
nppiDivC_32fc_C3IR
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
7315
7327
NppStatus
7328
nppiDivC_32fc_AC4R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
7329
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7330
7331
NppStatus
7332
nppiDivC_32fc_AC4R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[3],
7333
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
7334
7344
NppStatus
7345
nppiDivC_32fc_AC4IR_Ctx
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7346
7347
NppStatus
7348
nppiDivC_32fc_AC4IR
(
const
Npp32fc
aConstants[3],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
7349
7361
NppStatus
7362
nppiDivC_32fc_C4R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[4],
7363
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7364
7365
NppStatus
7366
nppiDivC_32fc_C4R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
aConstants[4],
7367
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
7368
7378
NppStatus
7379
nppiDivC_32fc_C4IR_Ctx
(
const
Npp32fc
aConstants[4],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
7380
7381
NppStatus
7382
nppiDivC_32fc_C4IR
(
const
Npp32fc
aConstants[4],
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
7383
7409
NppStatus
7410
nppiAbsDiffC_8u_C1R_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
Npp8u
nConstant,
NppStreamContext
nppStreamCtx);
7411
7412
NppStatus
7413
nppiAbsDiffC_8u_C1R
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
Npp8u
nConstant);
7414
7426
NppStatus
7427
nppiAbsDiffDeviceC_8u_C1R_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
Npp8u
* pConstant,
NppStreamContext
nppStreamCtx);
7428
7440
NppStatus
7441
nppiAbsDiffC_16u_C1R_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
Npp16u
nConstant,
NppStreamContext
nppStreamCtx);
7442
7443
NppStatus
7444
nppiAbsDiffC_16u_C1R
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
Npp16u
nConstant);
7445
7457
NppStatus
7458
nppiAbsDiffDeviceC_16u_C1R_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
Npp16u
* pConstant,
NppStreamContext
nppStreamCtx);
7459
7471
NppStatus
7472
nppiAbsDiffC_32f_C1R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
Npp32f
nConstant,
NppStreamContext
nppStreamCtx);
7473
7474
NppStatus
7475
nppiAbsDiffC_32f_C1R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
Npp32f
nConstant);
7476
7488
NppStatus
7489
nppiAbsDiffDeviceC_32f_C1R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
Npp32f
* pConstant,
NppStreamContext
nppStreamCtx);
7490
7514
NppStatus
7515
nppiAdd_8u_C1RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
7516
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7517
7518
NppStatus
7519
nppiAdd_8u_C1RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
7520
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7521
7533
NppStatus
7534
nppiAdd_8u_C1IRSfs_Ctx
(
const
Npp8u
* pSrc,
int
nSrcStep,
7535
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7536
7537
NppStatus
7538
nppiAdd_8u_C1IRSfs
(
const
Npp8u
* pSrc,
int
nSrcStep,
7539
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7540
7554
NppStatus
7555
nppiAdd_8u_C3RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
7556
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7557
7558
NppStatus
7559
nppiAdd_8u_C3RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
7560
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7561
7573
NppStatus
7574
nppiAdd_8u_C3IRSfs_Ctx
(
const
Npp8u
* pSrc,
int
nSrcStep,
7575
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7576
7577
NppStatus
7578
nppiAdd_8u_C3IRSfs
(
const
Npp8u
* pSrc,
int
nSrcStep,
7579
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7580
7594
NppStatus
7595
nppiAdd_8u_AC4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
7596
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7597
7598
NppStatus
7599
nppiAdd_8u_AC4RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
7600
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7601
7613
NppStatus
7614
nppiAdd_8u_AC4IRSfs_Ctx
(
const
Npp8u
* pSrc,
int
nSrcStep,
7615
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7616
7617
NppStatus
7618
nppiAdd_8u_AC4IRSfs
(
const
Npp8u
* pSrc,
int
nSrcStep,
7619
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7620
7634
NppStatus
7635
nppiAdd_8u_C4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
7636
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7637
7638
NppStatus
7639
nppiAdd_8u_C4RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
7640
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7641
7653
NppStatus
7654
nppiAdd_8u_C4IRSfs_Ctx
(
const
Npp8u
* pSrc,
int
nSrcStep,
7655
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7656
7657
NppStatus
7658
nppiAdd_8u_C4IRSfs
(
const
Npp8u
* pSrc,
int
nSrcStep,
7659
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7660
7674
NppStatus
7675
nppiAdd_16u_C1RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
7676
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7677
7678
NppStatus
7679
nppiAdd_16u_C1RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
7680
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7681
7693
NppStatus
7694
nppiAdd_16u_C1IRSfs_Ctx
(
const
Npp16u
* pSrc,
int
nSrcStep,
7695
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7696
7697
NppStatus
7698
nppiAdd_16u_C1IRSfs
(
const
Npp16u
* pSrc,
int
nSrcStep,
7699
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7700
7714
NppStatus
7715
nppiAdd_16u_C3RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
7716
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7717
7718
NppStatus
7719
nppiAdd_16u_C3RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
7720
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7721
7733
NppStatus
7734
nppiAdd_16u_C3IRSfs_Ctx
(
const
Npp16u
* pSrc,
int
nSrcStep,
7735
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7736
7737
NppStatus
7738
nppiAdd_16u_C3IRSfs
(
const
Npp16u
* pSrc,
int
nSrcStep,
7739
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7740
7754
NppStatus
7755
nppiAdd_16u_AC4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
7756
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7757
7758
NppStatus
7759
nppiAdd_16u_AC4RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
7760
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7761
7773
NppStatus
7774
nppiAdd_16u_AC4IRSfs_Ctx
(
const
Npp16u
* pSrc,
int
nSrcStep,
7775
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7776
7777
NppStatus
7778
nppiAdd_16u_AC4IRSfs
(
const
Npp16u
* pSrc,
int
nSrcStep,
7779
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7780
7794
NppStatus
7795
nppiAdd_16u_C4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
7796
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7797
7798
NppStatus
7799
nppiAdd_16u_C4RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
7800
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7801
7813
NppStatus
7814
nppiAdd_16u_C4IRSfs_Ctx
(
const
Npp16u
* pSrc,
int
nSrcStep,
7815
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7816
7817
NppStatus
7818
nppiAdd_16u_C4IRSfs
(
const
Npp16u
* pSrc,
int
nSrcStep,
7819
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7820
7834
NppStatus
7835
nppiAdd_16s_C1RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
7836
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7837
7838
NppStatus
7839
nppiAdd_16s_C1RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
7840
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7841
7853
NppStatus
7854
nppiAdd_16s_C1IRSfs_Ctx
(
const
Npp16s
* pSrc,
int
nSrcStep,
7855
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7856
7857
NppStatus
7858
nppiAdd_16s_C1IRSfs
(
const
Npp16s
* pSrc,
int
nSrcStep,
7859
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7860
7874
NppStatus
7875
nppiAdd_16s_C3RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
7876
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7877
7878
NppStatus
7879
nppiAdd_16s_C3RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
7880
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7881
7893
NppStatus
7894
nppiAdd_16s_C3IRSfs_Ctx
(
const
Npp16s
* pSrc,
int
nSrcStep,
7895
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7896
7897
NppStatus
7898
nppiAdd_16s_C3IRSfs
(
const
Npp16s
* pSrc,
int
nSrcStep,
7899
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7900
7914
NppStatus
7915
nppiAdd_16s_AC4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
7916
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7917
7918
NppStatus
7919
nppiAdd_16s_AC4RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
7920
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7921
7933
NppStatus
7934
nppiAdd_16s_AC4IRSfs_Ctx
(
const
Npp16s
* pSrc,
int
nSrcStep,
7935
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7936
7937
NppStatus
7938
nppiAdd_16s_AC4IRSfs
(
const
Npp16s
* pSrc,
int
nSrcStep,
7939
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7940
7954
NppStatus
7955
nppiAdd_16s_C4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
7956
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7957
7958
NppStatus
7959
nppiAdd_16s_C4RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
7960
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7961
7973
NppStatus
7974
nppiAdd_16s_C4IRSfs_Ctx
(
const
Npp16s
* pSrc,
int
nSrcStep,
7975
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7976
7977
NppStatus
7978
nppiAdd_16s_C4IRSfs
(
const
Npp16s
* pSrc,
int
nSrcStep,
7979
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
7980
7994
NppStatus
7995
nppiAdd_16sc_C1RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
* pSrc2,
int
nSrc2Step,
7996
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
7997
7998
NppStatus
7999
nppiAdd_16sc_C1RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
* pSrc2,
int
nSrc2Step,
8000
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8001
8013
NppStatus
8014
nppiAdd_16sc_C1IRSfs_Ctx
(
const
Npp16sc
* pSrc,
int
nSrcStep,
8015
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8016
8017
NppStatus
8018
nppiAdd_16sc_C1IRSfs
(
const
Npp16sc
* pSrc,
int
nSrcStep,
8019
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8020
8034
NppStatus
8035
nppiAdd_16sc_C3RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
* pSrc2,
int
nSrc2Step,
8036
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8037
8038
NppStatus
8039
nppiAdd_16sc_C3RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
* pSrc2,
int
nSrc2Step,
8040
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8041
8053
NppStatus
8054
nppiAdd_16sc_C3IRSfs_Ctx
(
const
Npp16sc
* pSrc,
int
nSrcStep,
8055
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8056
8057
NppStatus
8058
nppiAdd_16sc_C3IRSfs
(
const
Npp16sc
* pSrc,
int
nSrcStep,
8059
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8060
8074
NppStatus
8075
nppiAdd_16sc_AC4RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
* pSrc2,
int
nSrc2Step,
8076
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8077
8078
NppStatus
8079
nppiAdd_16sc_AC4RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
* pSrc2,
int
nSrc2Step,
8080
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8081
8093
NppStatus
8094
nppiAdd_16sc_AC4IRSfs_Ctx
(
const
Npp16sc
* pSrc,
int
nSrcStep,
8095
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8096
8097
NppStatus
8098
nppiAdd_16sc_AC4IRSfs
(
const
Npp16sc
* pSrc,
int
nSrcStep,
8099
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8100
8114
NppStatus
8115
nppiAdd_32s_C1RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pSrc2,
int
nSrc2Step,
8116
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8117
8118
NppStatus
8119
nppiAdd_32s_C1RSfs
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pSrc2,
int
nSrc2Step,
8120
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8121
8136
NppStatus
nppiAdd_32s_C1R_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
8137
const
Npp32s
* pSrc2,
int
nSrc2Step,
8138
Npp32s
* pDst,
int
nDstStep,
8139
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8140
8141
NppStatus
nppiAdd_32s_C1R
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
8142
const
Npp32s
* pSrc2,
int
nSrc2Step,
8143
Npp32s
* pDst,
int
nDstStep,
8144
NppiSize
oSizeROI);
8145
8157
NppStatus
8158
nppiAdd_32s_C1IRSfs_Ctx
(
const
Npp32s
* pSrc,
int
nSrcStep,
8159
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8160
8161
NppStatus
8162
nppiAdd_32s_C1IRSfs
(
const
Npp32s
* pSrc,
int
nSrcStep,
8163
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8164
8178
NppStatus
8179
nppiAdd_32s_C3RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pSrc2,
int
nSrc2Step,
8180
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8181
8182
NppStatus
8183
nppiAdd_32s_C3RSfs
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pSrc2,
int
nSrc2Step,
8184
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8185
8197
NppStatus
8198
nppiAdd_32s_C3IRSfs_Ctx
(
const
Npp32s
* pSrc,
int
nSrcStep,
8199
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8200
8201
NppStatus
8202
nppiAdd_32s_C3IRSfs
(
const
Npp32s
* pSrc,
int
nSrcStep,
8203
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8204
8218
NppStatus
8219
nppiAdd_32sc_C1RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
* pSrc2,
int
nSrc2Step,
8220
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8221
8222
NppStatus
8223
nppiAdd_32sc_C1RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
* pSrc2,
int
nSrc2Step,
8224
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8225
8237
NppStatus
8238
nppiAdd_32sc_C1IRSfs_Ctx
(
const
Npp32sc
* pSrc,
int
nSrcStep,
8239
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8240
8241
NppStatus
8242
nppiAdd_32sc_C1IRSfs
(
const
Npp32sc
* pSrc,
int
nSrcStep,
8243
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8244
8258
NppStatus
8259
nppiAdd_32sc_C3RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
* pSrc2,
int
nSrc2Step,
8260
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8261
8262
NppStatus
8263
nppiAdd_32sc_C3RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
* pSrc2,
int
nSrc2Step,
8264
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8265
8277
NppStatus
8278
nppiAdd_32sc_C3IRSfs_Ctx
(
const
Npp32sc
* pSrc,
int
nSrcStep,
8279
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8280
8281
NppStatus
8282
nppiAdd_32sc_C3IRSfs
(
const
Npp32sc
* pSrc,
int
nSrcStep,
8283
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8284
8298
NppStatus
8299
nppiAdd_32sc_AC4RSfs_Ctx
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
* pSrc2,
int
nSrc2Step,
8300
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8301
8302
NppStatus
8303
nppiAdd_32sc_AC4RSfs
(
const
Npp32sc
* pSrc1,
int
nSrc1Step,
const
Npp32sc
* pSrc2,
int
nSrc2Step,
8304
Npp32sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8305
8317
NppStatus
8318
nppiAdd_32sc_AC4IRSfs_Ctx
(
const
Npp32sc
* pSrc,
int
nSrcStep,
8319
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
8320
8321
NppStatus
8322
nppiAdd_32sc_AC4IRSfs
(
const
Npp32sc
* pSrc,
int
nSrcStep,
8323
Npp32sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
8324
8337
NppStatus
8338
nppiAdd_16f_C1R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp16f
* pSrc2,
int
nSrc2Step,
8339
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8340
8341
NppStatus
8342
nppiAdd_16f_C1R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp16f
* pSrc2,
int
nSrc2Step,
8343
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
8344
8355
NppStatus
8356
nppiAdd_16f_C1IR_Ctx
(
const
Npp16f
* pSrc,
int
nSrcStep,
8357
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8358
8359
NppStatus
8360
nppiAdd_16f_C1IR
(
const
Npp16f
* pSrc,
int
nSrcStep,
8361
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8362
8375
NppStatus
8376
nppiAdd_16f_C3R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp16f
* pSrc2,
int
nSrc2Step,
8377
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8378
8379
NppStatus
8380
nppiAdd_16f_C3R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp16f
* pSrc2,
int
nSrc2Step,
8381
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
8382
8393
NppStatus
8394
nppiAdd_16f_C3IR_Ctx
(
const
Npp16f
* pSrc,
int
nSrcStep,
8395
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8396
8397
NppStatus
8398
nppiAdd_16f_C3IR
(
const
Npp16f
* pSrc,
int
nSrcStep,
8399
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8400
8413
NppStatus
8414
nppiAdd_16f_C4R_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp16f
* pSrc2,
int
nSrc2Step,
8415
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8416
8417
NppStatus
8418
nppiAdd_16f_C4R
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp16f
* pSrc2,
int
nSrc2Step,
8419
Npp16f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
8420
8431
NppStatus
8432
nppiAdd_16f_C4IR_Ctx
(
const
Npp16f
* pSrc,
int
nSrcStep,
8433
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8434
8435
NppStatus
8436
nppiAdd_16f_C4IR
(
const
Npp16f
* pSrc,
int
nSrcStep,
8437
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8438
8451
NppStatus
8452
nppiAdd_32f_C1R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pSrc2,
int
nSrc2Step,
8453
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8454
8455
NppStatus
8456
nppiAdd_32f_C1R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pSrc2,
int
nSrc2Step,
8457
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
8458
8469
NppStatus
8470
nppiAdd_32f_C1IR_Ctx
(
const
Npp32f
* pSrc,
int
nSrcStep,
8471
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8472
8473
NppStatus
8474
nppiAdd_32f_C1IR
(
const
Npp32f
* pSrc,
int
nSrcStep,
8475
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8476
8489
NppStatus
8490
nppiAdd_32f_C3R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pSrc2,
int
nSrc2Step,
8491
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8492
8493
NppStatus
8494
nppiAdd_32f_C3R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pSrc2,
int
nSrc2Step,
8495
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
8496
8507
NppStatus
8508
nppiAdd_32f_C3IR_Ctx
(
const
Npp32f
* pSrc,
int
nSrcStep,
8509
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8510
8511
NppStatus
8512
nppiAdd_32f_C3IR
(
const
Npp32f
* pSrc,
int
nSrcStep,
8513
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8514
8527
NppStatus
8528
nppiAdd_32f_AC4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pSrc2,
int
nSrc2Step,
8529
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8530
8531
NppStatus
8532
nppiAdd_32f_AC4R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pSrc2,
int
nSrc2Step,
8533
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
8534
8545
NppStatus
8546
nppiAdd_32f_AC4IR_Ctx
(
const
Npp32f
* pSrc,
int
nSrcStep,
8547
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8548
8549
NppStatus
8550
nppiAdd_32f_AC4IR
(
const
Npp32f
* pSrc,
int
nSrcStep,
8551
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8552
8565
NppStatus
8566
nppiAdd_32f_C4R_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pSrc2,
int
nSrc2Step,
8567
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8568
8569
NppStatus
8570
nppiAdd_32f_C4R
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pSrc2,
int
nSrc2Step,
8571
Npp32f
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
8572
8583
NppStatus
8584
nppiAdd_32f_C4IR_Ctx
(
const
Npp32f
* pSrc,
int
nSrcStep,
8585
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8586
8587
NppStatus
8588
nppiAdd_32f_C4IR
(
const
Npp32f
* pSrc,
int
nSrcStep,
8589
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8590
8603
NppStatus
8604
nppiAdd_32fc_C1R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
* pSrc2,
int
nSrc2Step,
8605
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8606
8607
NppStatus
8608
nppiAdd_32fc_C1R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
* pSrc2,
int
nSrc2Step,
8609
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
8610
8621
NppStatus
8622
nppiAdd_32fc_C1IR_Ctx
(
const
Npp32fc
* pSrc,
int
nSrcStep,
8623
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8624
8625
NppStatus
8626
nppiAdd_32fc_C1IR
(
const
Npp32fc
* pSrc,
int
nSrcStep,
8627
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8628
8641
NppStatus
8642
nppiAdd_32fc_C3R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
* pSrc2,
int
nSrc2Step,
8643
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8644
8645
NppStatus
8646
nppiAdd_32fc_C3R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
* pSrc2,
int
nSrc2Step,
8647
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
8648
8659
NppStatus
8660
nppiAdd_32fc_C3IR_Ctx
(
const
Npp32fc
* pSrc,
int
nSrcStep,
8661
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8662
8663
NppStatus
8664
nppiAdd_32fc_C3IR
(
const
Npp32fc
* pSrc,
int
nSrcStep,
8665
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8666
8679
NppStatus
8680
nppiAdd_32fc_AC4R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
* pSrc2,
int
nSrc2Step,
8681
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8682
8683
NppStatus
8684
nppiAdd_32fc_AC4R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
* pSrc2,
int
nSrc2Step,
8685
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
8686
8697
NppStatus
8698
nppiAdd_32fc_AC4IR_Ctx
(
const
Npp32fc
* pSrc,
int
nSrcStep,
8699
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8700
8701
NppStatus
8702
nppiAdd_32fc_AC4IR
(
const
Npp32fc
* pSrc,
int
nSrcStep,
8703
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8704
8717
NppStatus
8718
nppiAdd_32fc_C4R_Ctx
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
* pSrc2,
int
nSrc2Step,
8719
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8720
8721
NppStatus
8722
nppiAdd_32fc_C4R
(
const
Npp32fc
* pSrc1,
int
nSrc1Step,
const
Npp32fc
* pSrc2,
int
nSrc2Step,
8723
Npp32fc
* pDst,
int
nDstStep,
NppiSize
oSizeROI);
8724
8735
NppStatus
8736
nppiAdd_32fc_C4IR_Ctx
(
const
Npp32fc
* pSrc,
int
nSrcStep,
8737
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8738
8739
NppStatus
8740
nppiAdd_32fc_C4IR
(
const
Npp32fc
* pSrc,
int
nSrcStep,
8741
Npp32fc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8742
8766
NppStatus
8767
nppiAddSquare_8u32f_C1IMR_Ctx
(
const
Npp8u
* pSrc,
int
nSrcStep,
const
Npp8u
* pMask,
int
nMaskStep,
8768
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8769
8770
NppStatus
8771
nppiAddSquare_8u32f_C1IMR
(
const
Npp8u
* pSrc,
int
nSrcStep,
const
Npp8u
* pMask,
int
nMaskStep,
8772
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8773
8784
NppStatus
8785
nppiAddSquare_8u32f_C1IR_Ctx
(
const
Npp8u
* pSrc,
int
nSrcStep,
8786
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8787
8788
NppStatus
8789
nppiAddSquare_8u32f_C1IR
(
const
Npp8u
* pSrc,
int
nSrcStep,
8790
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8791
8804
NppStatus
8805
nppiAddSquare_16u32f_C1IMR_Ctx
(
const
Npp16u
* pSrc,
int
nSrcStep,
const
Npp8u
* pMask,
int
nMaskStep,
8806
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8807
8808
NppStatus
8809
nppiAddSquare_16u32f_C1IMR
(
const
Npp16u
* pSrc,
int
nSrcStep,
const
Npp8u
* pMask,
int
nMaskStep,
8810
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8811
8822
NppStatus
8823
nppiAddSquare_16u32f_C1IR_Ctx
(
const
Npp16u
* pSrc,
int
nSrcStep,
8824
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8825
8826
NppStatus
8827
nppiAddSquare_16u32f_C1IR
(
const
Npp16u
* pSrc,
int
nSrcStep,
8828
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8829
8842
NppStatus
8843
nppiAddSquare_32f_C1IMR_Ctx
(
const
Npp32f
* pSrc,
int
nSrcStep,
const
Npp8u
* pMask,
int
nMaskStep,
8844
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8845
8846
NppStatus
8847
nppiAddSquare_32f_C1IMR
(
const
Npp32f
* pSrc,
int
nSrcStep,
const
Npp8u
* pMask,
int
nMaskStep,
8848
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8849
8860
NppStatus
8861
nppiAddSquare_32f_C1IR_Ctx
(
const
Npp32f
* pSrc,
int
nSrcStep,
8862
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8863
8864
NppStatus
8865
nppiAddSquare_32f_C1IR
(
const
Npp32f
* pSrc,
int
nSrcStep,
8866
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8867
8892
NppStatus
8893
nppiAddProduct_8u32f_C1IMR_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
8894
const
Npp8u
* pMask,
int
nMaskStep,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8895
8896
NppStatus
8897
nppiAddProduct_8u32f_C1IMR
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
8898
const
Npp8u
* pMask,
int
nMaskStep,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8899
8912
NppStatus
8913
nppiAddProduct_8u32f_C1IR_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
8914
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8915
8916
NppStatus
8917
nppiAddProduct_8u32f_C1IR
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
8918
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8919
8934
NppStatus
8935
nppiAddProduct_16u32f_C1IMR_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
8936
const
Npp8u
* pMask,
int
nMaskStep,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8937
8938
NppStatus
8939
nppiAddProduct_16u32f_C1IMR
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
8940
const
Npp8u
* pMask,
int
nMaskStep,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8941
8954
NppStatus
8955
nppiAddProduct_16u32f_C1IR_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
8956
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8957
8958
NppStatus
8959
nppiAddProduct_16u32f_C1IR
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
8960
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8961
8976
NppStatus
8977
nppiAddProduct_32f_C1IMR_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pSrc2,
int
nSrc2Step,
8978
const
Npp8u
* pMask,
int
nMaskStep,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8979
8980
NppStatus
8981
nppiAddProduct_32f_C1IMR
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pSrc2,
int
nSrc2Step,
8982
const
Npp8u
* pMask,
int
nMaskStep,
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
8983
8996
NppStatus
8997
nppiAddProduct_32f_C1IR_Ctx
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pSrc2,
int
nSrc2Step,
8998
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
8999
9000
NppStatus
9001
nppiAddProduct_32f_C1IR
(
const
Npp32f
* pSrc1,
int
nSrc1Step,
const
Npp32f
* pSrc2,
int
nSrc2Step,
9002
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
9003
9016
NppStatus
9017
nppiAddProduct_16f_C1IR_Ctx
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp16f
* pSrc2,
int
nSrc2Step,
9018
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
9019
9020
NppStatus
9021
nppiAddProduct_16f_C1IR
(
const
Npp16f
* pSrc1,
int
nSrc1Step,
const
Npp16f
* pSrc2,
int
nSrc2Step,
9022
Npp16f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI);
9023
9047
NppStatus
9048
nppiAddWeighted_8u32f_C1IMR_Ctx
(
const
Npp8u
* pSrc,
int
nSrcStep,
const
Npp8u
* pMask,
int
nMaskStep,
9049
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
Npp32f
nAlpha,
NppStreamContext
nppStreamCtx);
9050
9051
NppStatus
9052
nppiAddWeighted_8u32f_C1IMR
(
const
Npp8u
* pSrc,
int
nSrcStep,
const
Npp8u
* pMask,
int
nMaskStep,
9053
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
Npp32f
nAlpha);
9054
9066
NppStatus
9067
nppiAddWeighted_8u32f_C1IR_Ctx
(
const
Npp8u
* pSrc,
int
nSrcStep,
9068
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
Npp32f
nAlpha,
NppStreamContext
nppStreamCtx);
9069
9070
NppStatus
9071
nppiAddWeighted_8u32f_C1IR
(
const
Npp8u
* pSrc,
int
nSrcStep,
9072
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
Npp32f
nAlpha);
9073
9087
NppStatus
9088
nppiAddWeighted_16u32f_C1IMR_Ctx
(
const
Npp16u
* pSrc,
int
nSrcStep,
const
Npp8u
* pMask,
int
nMaskStep,
9089
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
Npp32f
nAlpha,
NppStreamContext
nppStreamCtx);
9090
9091
NppStatus
9092
nppiAddWeighted_16u32f_C1IMR
(
const
Npp16u
* pSrc,
int
nSrcStep,
const
Npp8u
* pMask,
int
nMaskStep,
9093
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
Npp32f
nAlpha);
9094
9106
NppStatus
9107
nppiAddWeighted_16u32f_C1IR_Ctx
(
const
Npp16u
* pSrc,
int
nSrcStep,
9108
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
Npp32f
nAlpha,
NppStreamContext
nppStreamCtx);
9109
9110
NppStatus
9111
nppiAddWeighted_16u32f_C1IR
(
const
Npp16u
* pSrc,
int
nSrcStep,
9112
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
Npp32f
nAlpha);
9113
9127
NppStatus
9128
nppiAddWeighted_32f_C1IMR_Ctx
(
const
Npp32f
* pSrc,
int
nSrcStep,
const
Npp8u
* pMask,
int
nMaskStep,
9129
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
Npp32f
nAlpha,
NppStreamContext
nppStreamCtx);
9130
9131
NppStatus
9132
nppiAddWeighted_32f_C1IMR
(
const
Npp32f
* pSrc,
int
nSrcStep,
const
Npp8u
* pMask,
int
nMaskStep,
9133
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
Npp32f
nAlpha);
9134
9146
NppStatus
9147
nppiAddWeighted_32f_C1IR_Ctx
(
const
Npp32f
* pSrc,
int
nSrcStep,
9148
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
Npp32f
nAlpha,
NppStreamContext
nppStreamCtx);
9149
9150
NppStatus
9151
nppiAddWeighted_32f_C1IR
(
const
Npp32f
* pSrc,
int
nSrcStep,
9152
Npp32f
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
Npp32f
nAlpha);
9153
9177
NppStatus
9178
nppiMul_8u_C1RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
9179
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9180
9181
NppStatus
9182
nppiMul_8u_C1RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
9183
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9184
9196
NppStatus
9197
nppiMul_8u_C1IRSfs_Ctx
(
const
Npp8u
* pSrc,
int
nSrcStep,
9198
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9199
9200
NppStatus
9201
nppiMul_8u_C1IRSfs
(
const
Npp8u
* pSrc,
int
nSrcStep,
9202
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9203
9217
NppStatus
9218
nppiMul_8u_C3RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
9219
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9220
9221
NppStatus
9222
nppiMul_8u_C3RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
9223
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9224
9236
NppStatus
9237
nppiMul_8u_C3IRSfs_Ctx
(
const
Npp8u
* pSrc,
int
nSrcStep,
9238
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9239
9240
NppStatus
9241
nppiMul_8u_C3IRSfs
(
const
Npp8u
* pSrc,
int
nSrcStep,
9242
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9243
9257
NppStatus
9258
nppiMul_8u_AC4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
9259
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9260
9261
NppStatus
9262
nppiMul_8u_AC4RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
9263
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9264
9276
NppStatus
9277
nppiMul_8u_AC4IRSfs_Ctx
(
const
Npp8u
* pSrc,
int
nSrcStep,
9278
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9279
9280
NppStatus
9281
nppiMul_8u_AC4IRSfs
(
const
Npp8u
* pSrc,
int
nSrcStep,
9282
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9283
9297
NppStatus
9298
nppiMul_8u_C4RSfs_Ctx
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
9299
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9300
9301
NppStatus
9302
nppiMul_8u_C4RSfs
(
const
Npp8u
* pSrc1,
int
nSrc1Step,
const
Npp8u
* pSrc2,
int
nSrc2Step,
9303
Npp8u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9304
9316
NppStatus
9317
nppiMul_8u_C4IRSfs_Ctx
(
const
Npp8u
* pSrc,
int
nSrcStep,
9318
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9319
9320
NppStatus
9321
nppiMul_8u_C4IRSfs
(
const
Npp8u
* pSrc,
int
nSrcStep,
9322
Npp8u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9323
9337
NppStatus
9338
nppiMul_16u_C1RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
9339
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9340
9341
NppStatus
9342
nppiMul_16u_C1RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
9343
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9344
9356
NppStatus
9357
nppiMul_16u_C1IRSfs_Ctx
(
const
Npp16u
* pSrc,
int
nSrcStep,
9358
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9359
9360
NppStatus
9361
nppiMul_16u_C1IRSfs
(
const
Npp16u
* pSrc,
int
nSrcStep,
9362
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9363
9377
NppStatus
9378
nppiMul_16u_C3RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
9379
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9380
9381
NppStatus
9382
nppiMul_16u_C3RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
9383
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9384
9396
NppStatus
9397
nppiMul_16u_C3IRSfs_Ctx
(
const
Npp16u
* pSrc,
int
nSrcStep,
9398
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9399
9400
NppStatus
9401
nppiMul_16u_C3IRSfs
(
const
Npp16u
* pSrc,
int
nSrcStep,
9402
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9403
9417
NppStatus
9418
nppiMul_16u_AC4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
9419
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9420
9421
NppStatus
9422
nppiMul_16u_AC4RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
9423
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9424
9436
NppStatus
9437
nppiMul_16u_AC4IRSfs_Ctx
(
const
Npp16u
* pSrc,
int
nSrcStep,
9438
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9439
9440
NppStatus
9441
nppiMul_16u_AC4IRSfs
(
const
Npp16u
* pSrc,
int
nSrcStep,
9442
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9443
9457
NppStatus
9458
nppiMul_16u_C4RSfs_Ctx
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
9459
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9460
9461
NppStatus
9462
nppiMul_16u_C4RSfs
(
const
Npp16u
* pSrc1,
int
nSrc1Step,
const
Npp16u
* pSrc2,
int
nSrc2Step,
9463
Npp16u
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9464
9476
NppStatus
9477
nppiMul_16u_C4IRSfs_Ctx
(
const
Npp16u
* pSrc,
int
nSrcStep,
9478
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9479
9480
NppStatus
9481
nppiMul_16u_C4IRSfs
(
const
Npp16u
* pSrc,
int
nSrcStep,
9482
Npp16u
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9483
9497
NppStatus
9498
nppiMul_16s_C1RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
9499
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9500
9501
NppStatus
9502
nppiMul_16s_C1RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
9503
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9504
9516
NppStatus
9517
nppiMul_16s_C1IRSfs_Ctx
(
const
Npp16s
* pSrc,
int
nSrcStep,
9518
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9519
9520
NppStatus
9521
nppiMul_16s_C1IRSfs
(
const
Npp16s
* pSrc,
int
nSrcStep,
9522
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9523
9537
NppStatus
9538
nppiMul_16s_C3RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
9539
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9540
9541
NppStatus
9542
nppiMul_16s_C3RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
9543
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9544
9556
NppStatus
9557
nppiMul_16s_C3IRSfs_Ctx
(
const
Npp16s
* pSrc,
int
nSrcStep,
9558
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9559
9560
NppStatus
9561
nppiMul_16s_C3IRSfs
(
const
Npp16s
* pSrc,
int
nSrcStep,
9562
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9563
9577
NppStatus
9578
nppiMul_16s_AC4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
9579
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9580
9581
NppStatus
9582
nppiMul_16s_AC4RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
9583
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9584
9596
NppStatus
9597
nppiMul_16s_AC4IRSfs_Ctx
(
const
Npp16s
* pSrc,
int
nSrcStep,
9598
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9599
9600
NppStatus
9601
nppiMul_16s_AC4IRSfs
(
const
Npp16s
* pSrc,
int
nSrcStep,
9602
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9603
9617
NppStatus
9618
nppiMul_16s_C4RSfs_Ctx
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
9619
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9620
9621
NppStatus
9622
nppiMul_16s_C4RSfs
(
const
Npp16s
* pSrc1,
int
nSrc1Step,
const
Npp16s
* pSrc2,
int
nSrc2Step,
9623
Npp16s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9624
9636
NppStatus
9637
nppiMul_16s_C4IRSfs_Ctx
(
const
Npp16s
* pSrc,
int
nSrcStep,
9638
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9639
9640
NppStatus
9641
nppiMul_16s_C4IRSfs
(
const
Npp16s
* pSrc,
int
nSrcStep,
9642
Npp16s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9643
9657
NppStatus
9658
nppiMul_16sc_C1RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
* pSrc2,
int
nSrc2Step,
9659
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9660
9661
NppStatus
9662
nppiMul_16sc_C1RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
* pSrc2,
int
nSrc2Step,
9663
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9664
9676
NppStatus
9677
nppiMul_16sc_C1IRSfs_Ctx
(
const
Npp16sc
* pSrc,
int
nSrcStep,
9678
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9679
9680
NppStatus
9681
nppiMul_16sc_C1IRSfs
(
const
Npp16sc
* pSrc,
int
nSrcStep,
9682
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9683
9697
NppStatus
9698
nppiMul_16sc_C3RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
* pSrc2,
int
nSrc2Step,
9699
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9700
9701
NppStatus
9702
nppiMul_16sc_C3RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
* pSrc2,
int
nSrc2Step,
9703
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9704
9716
NppStatus
9717
nppiMul_16sc_C3IRSfs_Ctx
(
const
Npp16sc
* pSrc,
int
nSrcStep,
9718
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9719
9720
NppStatus
9721
nppiMul_16sc_C3IRSfs
(
const
Npp16sc
* pSrc,
int
nSrcStep,
9722
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9723
9737
NppStatus
9738
nppiMul_16sc_AC4RSfs_Ctx
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
* pSrc2,
int
nSrc2Step,
9739
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9740
9741
NppStatus
9742
nppiMul_16sc_AC4RSfs
(
const
Npp16sc
* pSrc1,
int
nSrc1Step,
const
Npp16sc
* pSrc2,
int
nSrc2Step,
9743
Npp16sc
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9744
9756
NppStatus
9757
nppiMul_16sc_AC4IRSfs_Ctx
(
const
Npp16sc
* pSrc,
int
nSrcStep,
9758
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9759
9760
NppStatus
9761
nppiMul_16sc_AC4IRSfs
(
const
Npp16sc
* pSrc,
int
nSrcStep,
9762
Npp16sc
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9763
9777
NppStatus
9778
nppiMul_32s_C1RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pSrc2,
int
nSrc2Step,
9779
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9780
9781
NppStatus
9782
nppiMul_32s_C1RSfs
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pSrc2,
int
nSrc2Step,
9783
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9784
9799
NppStatus
nppiMul_32s_C1R_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
9800
const
Npp32s
* pSrc2,
int
nSrc2Step,
9801
Npp32s
* pDst,
int
nDstStep,
9802
NppiSize
oSizeROI,
NppStreamContext
nppStreamCtx);
9803
9804
NppStatus
nppiMul_32s_C1R
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
9805
const
Npp32s
* pSrc2,
int
nSrc2Step,
9806
Npp32s
* pDst,
int
nDstStep,
9807
NppiSize
oSizeROI);
9808
9820
NppStatus
9821
nppiMul_32s_C1IRSfs_Ctx
(
const
Npp32s
* pSrc,
int
nSrcStep,
9822
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9823
9824
NppStatus
9825
nppiMul_32s_C1IRSfs
(
const
Npp32s
* pSrc,
int
nSrcStep,
9826
Npp32s
* pSrcDst,
int
nSrcDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9827
9841
NppStatus
9842
nppiMul_32s_C3RSfs_Ctx
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pSrc2,
int
nSrc2Step,
9843
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor,
NppStreamContext
nppStreamCtx);
9844
9845
NppStatus
9846
nppiMul_32s_C3RSfs
(
const
Npp32s
* pSrc1,
int
nSrc1Step,
const
Npp32s
* pSrc2,
int
nSrc2Step,
9847
Npp32s
* pDst,
int
nDstStep,
NppiSize
oSizeROI,
int
nScaleFactor);
9848
9860
NppStatus
9861
nppiMul_32s_C3IRSfs_Ctx
(
const
Npp32s
* pSrc,
int
nSrcStep,