diff options
author | siddhu8990 | 2015-08-20 01:20:26 +0530 |
---|---|---|
committer | siddhu8990 | 2015-08-20 01:20:26 +0530 |
commit | 222a3e39441ad408dacdc39d46d687dee5a6bf3c (patch) | |
tree | 04f0409dc26f4efb46d13b42e89d1979807bea50 /src/c/elementaryFunctions/uint8 | |
parent | aba32804a6cbd6fb16e13e86364e643022a2941a (diff) | |
download | Scilab2C_fossee_old-222a3e39441ad408dacdc39d46d687dee5a6bf3c.tar.gz Scilab2C_fossee_old-222a3e39441ad408dacdc39d46d687dee5a6bf3c.tar.bz2 Scilab2C_fossee_old-222a3e39441ad408dacdc39d46d687dee5a6bf3c.zip |
Support for disp added
Diffstat (limited to 'src/c/elementaryFunctions/uint8')
-rw-r--r-- | src/c/elementaryFunctions/uint8/i16uint8a.c | 18 | ||||
-rw-r--r-- | src/c/elementaryFunctions/uint8/i16uint8s.c | 18 | ||||
-rw-r--r-- | src/c/elementaryFunctions/uint8/i8uint8a.c | 18 | ||||
-rw-r--r-- | src/c/elementaryFunctions/uint8/i8uint8s.c | 18 | ||||
-rw-r--r-- | src/c/elementaryFunctions/uint8/u16uint8a.c | 18 | ||||
-rw-r--r-- | src/c/elementaryFunctions/uint8/u16uint8s.c | 18 |
6 files changed, 108 insertions, 0 deletions
diff --git a/src/c/elementaryFunctions/uint8/i16uint8a.c b/src/c/elementaryFunctions/uint8/i16uint8a.c new file mode 100644 index 0000000..9cfdcf8 --- /dev/null +++ b/src/c/elementaryFunctions/uint8/i16uint8a.c @@ -0,0 +1,18 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Arnaud Torset + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ + +#include "uint8.h" + +void i16uint8a(int16* x, int size, uint8* out) { + int i = 0; + for (i=0;i<size;i++) out[i] = i16uint8s(x[i]); +} diff --git a/src/c/elementaryFunctions/uint8/i16uint8s.c b/src/c/elementaryFunctions/uint8/i16uint8s.c new file mode 100644 index 0000000..9b84d70 --- /dev/null +++ b/src/c/elementaryFunctions/uint8/i16uint8s.c @@ -0,0 +1,18 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Arnaud Torset + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ + + +#include "uint8.h" + +uint8 i16uint8s(int16 x) { + return (uint8) x; +} diff --git a/src/c/elementaryFunctions/uint8/i8uint8a.c b/src/c/elementaryFunctions/uint8/i8uint8a.c new file mode 100644 index 0000000..34c65d1 --- /dev/null +++ b/src/c/elementaryFunctions/uint8/i8uint8a.c @@ -0,0 +1,18 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Arnaud Torset + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ + +#include "uint8.h" + +void i8uint8a(int8* x, int size, uint8* out) { + int i = 0; + for (i=0;i<size;i++) out[i] = i8uint8s(x[i]); +} diff --git a/src/c/elementaryFunctions/uint8/i8uint8s.c b/src/c/elementaryFunctions/uint8/i8uint8s.c new file mode 100644 index 0000000..0f57a50 --- /dev/null +++ b/src/c/elementaryFunctions/uint8/i8uint8s.c @@ -0,0 +1,18 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Arnaud Torset + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ + + +#include "uint8.h" + +uint8 i8uint8s(int8 x) { + return (uint8) x; +} diff --git a/src/c/elementaryFunctions/uint8/u16uint8a.c b/src/c/elementaryFunctions/uint8/u16uint8a.c new file mode 100644 index 0000000..bfb2499 --- /dev/null +++ b/src/c/elementaryFunctions/uint8/u16uint8a.c @@ -0,0 +1,18 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Arnaud Torset + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ + +#include "uint8.h" + +void u16uint8a(uint16* x, int size, uint8* out) { + int i = 0; + for (i=0;i<size;i++) out[i] = u16uint8s(x[i]); +} diff --git a/src/c/elementaryFunctions/uint8/u16uint8s.c b/src/c/elementaryFunctions/uint8/u16uint8s.c new file mode 100644 index 0000000..be883eb --- /dev/null +++ b/src/c/elementaryFunctions/uint8/u16uint8s.c @@ -0,0 +1,18 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Arnaud Torset + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ + + +#include "uint8.h" + +uint8 u16uint8s(uint16 x) { + return (uint8) x; +} |