comparison src/OPERATORS/op-ui32-ui32.cc @ 4963:573d23f9c9cf

[project @ 2004-09-03 15:43:29 by jwe]
author jwe
date Fri, 03 Sep 2004 15:43:30 +0000
parents 7a3a480e8645
children 269c3d6c0569
comparison
equal deleted inserted replaced
4962:0ab18cbe8b5f 4963:573d23f9c9cf
86 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmi16, uint32_, int16_); 86 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmi16, uint32_, int16_);
87 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui16, uint32_, uint16_); 87 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui16, uint32_, uint16_);
88 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmi32, uint32_, int32_); 88 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmi32, uint32_, int32_);
89 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmi64, uint32_, int64_); 89 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmi64, uint32_, int64_);
90 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui64, uint32_, uint64_); 90 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui64, uint32_, uint64_);
91
92 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (uint32, int8);
93 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (uint32, uint8);
94 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (uint32, int16);
95 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (uint32, uint16);
96 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (uint32, int32);
97 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (uint32, int64);
98 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (uint32, uint64);
91 } 99 }
92 100
93 /* 101 /*
94 ;;; Local Variables: *** 102 ;;; Local Variables: ***
95 ;;; mode: C++ *** 103 ;;; mode: C++ ***