summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/elementaryFunctions/interfaces/int_round.h
diff options
context:
space:
mode:
authorsiddhu89902015-09-03 02:06:47 +0530
committersiddhu89902015-09-03 02:06:47 +0530
commit3704cdf7eb9551353ac9175aa10be444755b8e22 (patch)
treee7d66716e67137209a55d880ebb58a7f69ce3484 /2.3-1/src/c/elementaryFunctions/interfaces/int_round.h
parent5675f7cd91515d5e88fd151943c3ec5cde57ceaa (diff)
downloadScilab2C-3704cdf7eb9551353ac9175aa10be444755b8e22.tar.gz
Scilab2C-3704cdf7eb9551353ac9175aa10be444755b8e22.tar.bz2
Scilab2C-3704cdf7eb9551353ac9175aa10be444755b8e22.zip
Intermediate commit. Not to be used
Diffstat (limited to '2.3-1/src/c/elementaryFunctions/interfaces/int_round.h')
-rw-r--r--2.3-1/src/c/elementaryFunctions/interfaces/int_round.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_round.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_round.h
index a5da230c..7d013c1e 100644
--- a/2.3-1/src/c/elementaryFunctions/interfaces/int_round.h
+++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_round.h
@@ -23,6 +23,14 @@
#define z0roundz0(in) zrounds(in)
+#define u80roundu80(in) u8rounds(in)
+
+#define i80roundi80(in) i8rounds(in)
+
+#define u160roundu160(in) u16rounds(in)
+
+#define i160roundi160(in) i16rounds(in)
+
#define s2rounds2(in,size,out) srounda(in, size[0]*size[1], out)
#define d2roundd2(in,size,out) drounda(in, size[0]*size[1], out)
@@ -31,4 +39,12 @@
#define z2roundz2(in,size,out) zrounda(in, size[0]*size[1], out)
+#define u82roundu82(in,size,out) u8rounda(in, size[0]*size[1], out)
+
+#define i82roundi82(in,size,out) i8rounda(in, size[0]*size[1], out)
+
+#define u162roundu162(in,size,out) u16rounda(in, size[0]*size[1], out)
+
+#define i162roundi162(in,size,out) i16rounda(in, size[0]*size[1], out)
+
#endif /* !__INT_ROUND_H__ */