00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifdef HAVE_CONFIG_H
00024 #include <config.h>
00025 #endif
00026
00027 #include "mx-i32nda-i8.h"
00028 #include "mx-i32nda-ui8.h"
00029 #include "mx-i32nda-i16.h"
00030 #include "mx-i32nda-ui16.h"
00031 #include "mx-i32nda-ui32.h"
00032 #include "mx-i32nda-i64.h"
00033 #include "mx-i32nda-ui64.h"
00034
00035 #include "mx-i32nda-i8nda.h"
00036 #include "mx-i32nda-ui8nda.h"
00037 #include "mx-i32nda-i16nda.h"
00038 #include "mx-i32nda-ui16nda.h"
00039 #include "mx-i32nda-ui32nda.h"
00040 #include "mx-i32nda-i64nda.h"
00041 #include "mx-i32nda-ui64nda.h"
00042
00043 #include "mx-i32-i8nda.h"
00044 #include "mx-i32-ui8nda.h"
00045 #include "mx-i32-i16nda.h"
00046 #include "mx-i32-ui16nda.h"
00047 #include "mx-i32-ui32nda.h"
00048 #include "mx-i32-i64nda.h"
00049 #include "mx-i32-ui64nda.h"
00050
00051 #include "mx-i32nda-s.h"
00052 #include "mx-s-i32nda.h"
00053
00054 #include "mx-i32nda-nda.h"
00055 #include "mx-nda-i32nda.h"
00056
00057 #include "mx-i32-nda.h"
00058 #include "mx-nda-i32.h"
00059
00060 #include "gripes.h"
00061 #include "oct-obj.h"
00062 #include "ov.h"
00063 #include "ov-int16.h"
00064 #include "ov-int32.h"
00065 #include "ov-int64.h"
00066 #include "ov-int8.h"
00067 #include "ov-uint16.h"
00068 #include "ov-uint32.h"
00069 #include "ov-uint64.h"
00070 #include "ov-uint8.h"
00071 #include "ov-scalar.h"
00072 #include "ov-float.h"
00073 #include "ov-complex.h"
00074 #include "ov-flt-complex.h"
00075 #include "ov-re-mat.h"
00076 #include "ov-flt-re-mat.h"
00077 #include "ov-cx-mat.h"
00078 #include "ov-flt-cx-mat.h"
00079 #include "ov-typeinfo.h"
00080 #include "ov-null-mat.h"
00081 #include "ops.h"
00082 #include "xdiv.h"
00083 #include "xpow.h"
00084
00085 #include "op-int.h"
00086
00087 OCTAVE_INT_OPS (int32)
00088
00089 OCTAVE_MS_INT_ASSIGN_OPS (mi8, int32_, int8_, int8_)
00090 OCTAVE_MS_INT_ASSIGN_OPS (mui8, int32_, uint8_, uint8_)
00091 OCTAVE_MS_INT_ASSIGN_OPS (mi16, int32_, int16_, int16_)
00092 OCTAVE_MS_INT_ASSIGN_OPS (mui16, int32_, uint16_, uint16_)
00093 OCTAVE_MS_INT_ASSIGN_OPS (mui32, int32_, uint32_, uint32_)
00094 OCTAVE_MS_INT_ASSIGN_OPS (mi64, int32_, int64_, int64_)
00095 OCTAVE_MS_INT_ASSIGN_OPS (mui64, int32_, uint64_, uint64_)
00096
00097 OCTAVE_MM_INT_ASSIGN_OPS (mmi8, int32_, int8_, int8_)
00098 OCTAVE_MM_INT_ASSIGN_OPS (mmui8, int32_, uint8_, uint8_)
00099 OCTAVE_MM_INT_ASSIGN_OPS (mmi16, int32_, int16_, int16_)
00100 OCTAVE_MM_INT_ASSIGN_OPS (mmui16, int32_, uint16_, uint16_)
00101 OCTAVE_MM_INT_ASSIGN_OPS (mmui32, int32_, uint32_, uint32_)
00102 OCTAVE_MM_INT_ASSIGN_OPS (mmi64, int32_, int64_, int64_)
00103 OCTAVE_MM_INT_ASSIGN_OPS (mmui64, int32_, uint64_, uint64_)
00104
00105 OCTAVE_MIXED_INT_CMP_OPS (int32, int8)
00106 OCTAVE_MIXED_INT_CMP_OPS (int32, uint8)
00107 OCTAVE_MIXED_INT_CMP_OPS (int32, int16)
00108 OCTAVE_MIXED_INT_CMP_OPS (int32, uint16)
00109 OCTAVE_MIXED_INT_CMP_OPS (int32, uint32)
00110 OCTAVE_MIXED_INT_CMP_OPS (int32, int64)
00111 OCTAVE_MIXED_INT_CMP_OPS (int32, uint64)
00112
00113 void
00114 install_i32_i32_ops (void)
00115 {
00116 OCTAVE_INSTALL_INT_OPS (int32);
00117
00118 OCTAVE_INSTALL_MS_INT_ASSIGN_OPS (mi8, int32_, int8_);
00119 OCTAVE_INSTALL_MS_INT_ASSIGN_OPS (mui8, int32_, uint8_);
00120 OCTAVE_INSTALL_MS_INT_ASSIGN_OPS (mi16, int32_, int16_);
00121 OCTAVE_INSTALL_MS_INT_ASSIGN_OPS (mui16, int32_, uint16_);
00122 OCTAVE_INSTALL_MS_INT_ASSIGN_OPS (mui32, int32_, uint32_);
00123 OCTAVE_INSTALL_MS_INT_ASSIGN_OPS (mi64, int32_, int64_);
00124 OCTAVE_INSTALL_MS_INT_ASSIGN_OPS (mui64, int32_, uint64_);
00125
00126 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmi8, int32_, int8_);
00127 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui8, int32_, uint8_);
00128 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmi16, int32_, int16_);
00129 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui16, int32_, uint16_);
00130 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui32, int32_, uint32_);
00131 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmi64, int32_, int64_);
00132 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui64, int32_, uint64_);
00133
00134 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, int8);
00135 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, uint8);
00136 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, int16);
00137 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, uint16);
00138 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, uint32);
00139 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, int64);
00140 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, uint64);
00141
00142 OCTAVE_INSTALL_MIXED_INT_CMP_OPS (int32, int8);
00143 OCTAVE_INSTALL_MIXED_INT_CMP_OPS (int32, uint8);
00144 OCTAVE_INSTALL_MIXED_INT_CMP_OPS (int32, int16);
00145 OCTAVE_INSTALL_MIXED_INT_CMP_OPS (int32, uint16);
00146 OCTAVE_INSTALL_MIXED_INT_CMP_OPS (int32, uint32);
00147 OCTAVE_INSTALL_MIXED_INT_CMP_OPS (int32, int64);
00148 OCTAVE_INSTALL_MIXED_INT_CMP_OPS (int32, uint64);
00149 }