Home
last modified time | relevance | path

Searched refs:Oper (Results 1 – 25 of 1625) sorted by relevance

12345678910>>...65

/dports/cad/alliance/alliance/src/bdd/src/
H A Dbddapply.c142 long Oper; in loc_applybddterm()
148 if ( Oper == ABL_OR )
168 if ( Oper == ABL_AND )
180 ( Oper == ABL_XOR ) )
197 long Oper;
218 long Oper; in loc_applybdd()
348 long Oper;
427 long Oper; in loc_applybddlist()
453 long Oper;
465 if ( Oper == ABL_NOT )
[all …]
H A Dbddhoper.c138 long getbddhoperkey( Table, Oper, BddLeft, BddRight ) in getbddhoperkey() argument
141 long Oper;
145 return( ( ((unsigned long)Oper ) +
259 bddhoper *addbddhoper( HashTable, Oper, BddLeft, BddRight, BddFather ) in addbddhoper() argument
262 long Oper;
280 ( ! ( Oper & BDD_OPER_MASK ) ) )
299 HashOper->OPERATOR = Oper;
316 bddhoper *searchbddhoper( HashTable, Oper, BddLeft, BddRight ) in searchbddhoper() argument
319 long Oper;
336 ( ! ( Oper & BDD_OPER_MASK ) ) )
[all …]
/dports/cad/alliance/alliance/src/vex/src/
H A Dvexis.c351 long Oper; in isvexpositiveoper()
370 long Oper; in isvexnegativeoper()
387 int isvexunaryoper( Oper ) in isvexunaryoper() argument
389 long Oper; in isvexunaryoper()
406 int isvexbinaryoper( Oper ) in isvexbinaryoper() argument
408 long Oper; in isvexbinaryoper()
425 int isvexternaryoper( Oper ) in isvexternaryoper() argument
427 long Oper; in isvexternaryoper()
485 long Oper;
487 VexIsOper = Oper;
[all …]
H A Dvexunflat.c89 long Oper; local
100 Oper = GetVexOperValue( Expr );
102 if ( ( Oper == VEX_OR ) ||
103 ( Oper == VEX_AND ) ||
104 ( Oper == VEX_XOR ) ||
105 ( Oper == VEX_NOR ) ||
106 ( Oper == VEX_NAND ) ||
107 ( Oper == VEX_NXOR ) ||
108 ( Oper == VEX_ADD ) ||
109 ( Oper == VEX_MUL ) )
[all …]
H A Dvexsimp.c358 long Oper; local
511 long Oper; local
551 if ( ( Oper == VEX_AND ) || ( Oper == VEX_NAND ) )
554 if ( ( Oper == VEX_OR ) || ( Oper == VEX_NOR ) )
557 if ( ( Oper == VEX_XOR ) || ( Oper == VEX_NXOR ) )
633 Oper = getvexnotoper( Oper );
637 Oper = Oper - VEX_OR;
930 if ( Oper != VEX_EQ ) vexerror( VEX_OPERATOR_ERROR, Oper );
1271 long Oper; local
1333 long Oper; local
[all …]
H A Dvexget.c450 long Oper; in getvexopername()
469 long Oper; in getvexoperverilogname()
488 long Oper; in getvexoperuppername()
509 int Oper; local
513 for ( Oper = 0; Oper < VEX_MAX_OPERATOR; Oper++ )
517 return( Oper );
592 long getvexnotoper( Oper ) in getvexnotoper() argument
594 long Oper; in getvexnotoper()
919 long Oper; local
1100 long Oper; local
[all …]
H A Dvexoptim.c91 long Oper; local
118 Oper = GetVexOperValue( Expr );
119 NotOper = getvexnotoper( Oper );
121 if ( Oper == VEX_NOT )
152 long Oper; in optimvexbinexpr()
164 Binary = isvexbinaryoper( Oper );
168 vexerror( VEX_OPERATOR_ERROR, Oper );
171 Negative = isvexnegativeoper( Oper );
183 ( Oper != VEX_CONCAT ) ) )
185 Expr = createvexoper( Oper, Width );
[all …]
H A Dvexcreate.c241 vexexpr *createvexoper( Oper, Width ) in createvexoper() argument
243 long Oper; in createvexoper()
248 if ( ( Oper < 0 ) ||
249 ( Oper >= VEX_MAX_OPERATOR ) )
266 SetVexOperValue( Node, Oper );
279 long Oper; in createvexbinexpr()
286 if ( ! isvexbinaryoper( Oper ) )
307 long Oper; in createvexunaryexpr()
313 if ( ! isvexunaryoper( Oper ) )
332 long Oper; in createvexternaryexpr()
[all …]
/dports/science/cdo/cdo-2.0.0/src/
H A DMath.cc144 enum struct Oper enum
174 cdo_operator_add("abs", (int)Oper::Abs, 0, nullptr); in addOperators()
175 cdo_operator_add("int", (int)Oper::Int, 0, nullptr); in addOperators()
176 cdo_operator_add("nint", (int)Oper::Nint, 0, nullptr); in addOperators()
177 cdo_operator_add("sqr", (int)Oper::Sqr, 0, nullptr); in addOperators()
210 if (operfunc == Oper::Pow) in Math()
227 …if (operfunc == Oper::Re || operfunc == Oper::Im || operfunc == Oper::Abs || operfunc == Oper::Arg) in Math()
281 case Oper::Sqrt: in Math()
297 case Oper::Pow: in Math()
300 case Oper::Rand: in Math()
[all …]
/dports/cad/alliance/alliance/src/abl/src/
H A Dabloptim.c85 long Oper; in optimablbinexpr()
155 long Oper; local
178 Oper = ABL_OPER( Expr );
181 if ( Oper == ABL_NOT )
211 long Oper; in optimablxorbinexpr()
219 if ( ( Oper != ABL_XOR ) &&
220 ( Oper != ABL_NXOR ) )
228 if ( Oper == ABL_XOR )
252 long Oper; in optimablunaryexpr()
262 if ( Oper == ABL_NOT )
[all …]
H A Dablcreate.c140 ablexpr *createabloper( Oper ) in createabloper() argument
142 long Oper; in createabloper()
163 long Oper; in createablbinexpr()
174 Expr = createabloper( Oper );
228 long Oper; in createablxorbinexpr()
236 if ( ( Oper != ABL_XOR ) &&
237 ( Oper != ABL_NXOR ) )
245 if ( Oper == ABL_XOR )
269 long Oper; in createablunaryexpr()
274 if ( ! isablunaryoper( Oper ) )
[all …]
H A Dablsimp.c149 long Oper; local
157 Oper = ABL_OPER( Expr );
159 if ( Oper == ABL_NOT )
169 Oper = getablopernot( Oper );
181 if ( isablunaryoper( Oper ) )
290 long Oper; local
298 Oper = ABL_OPER( Expr );
300 if ( Oper == ABL_NOT )
310 if ( isablunaryoper( Oper ) )
319 Oper = getablopernot( Oper );
[all …]
H A Dablstr.c180 long Oper; in loc_strablinfix() local
211 Oper = -1; in loc_strablinfix()
275 if ( Oper == -1 ) in loc_strablinfix()
323 if ( Oper == -1 ) in loc_strablinfix()
349 long Oper; in loc_strablprefix() local
371 if ( Oper == -1 ) in loc_strablprefix()
449 if ( Oper == -1 ) in loc_strablprefix()
474 long Oper; in loc_strablpostfix() local
504 Oper = -1; in loc_strablpostfix()
536 if ( Oper == -1 ) in loc_strablpostfix()
[all …]
H A Dablget.c129 char *getablopername( Oper ) in getablopername() argument
131 long Oper; in getablopername()
148 char *getabloperuppername( Oper ) in getabloperuppername() argument
150 long Oper; in getabloperuppername()
167 int getabloperpolar( Oper ) in getabloperpolar() argument
169 long Oper; in getabloperpolar()
186 int getablopernot( Oper ) in getablopernot() argument
188 long Oper; in getablopernot()
209 int Oper; local
213 for ( Oper = 0; Oper < ABL_MAX_OPERATOR; Oper++ )
[all …]
H A Dablis.c106 int isablunaryoper( Oper ) in isablunaryoper() argument
108 long Oper; in isablunaryoper()
125 int isablbinaryoper( Oper ) in isablbinaryoper() argument
127 long Oper; in isablbinaryoper()
135 return( AblOperBinary[ Oper ] );
144 int isabloperinexpr( Expr, Oper ) in isabloperinexpr() argument
147 long Oper;
154 if ( ABL_OPER( Expr ) == Oper )
319 long Oper; local
355 Oper = ABL_OPER( Expr1 );
[all …]
H A Dablview.c153 long Oper; local
163 Oper = ABL_OPER( Expr );
199 long Oper; local
209 Oper = ABL_OPER( Expr );
245 long Oper; local
256 Oper = ABL_OPER( Expr );
267 if ( isablunaryoper( Oper ) )
303 long Oper; local
323 Oper = ABL_OPER( Expr );
332 if ( isablunaryoper( Oper ) )
[all …]
H A Dablpolar.c114 long Oper; local
132 Oper = ABL_OPER( Expr );
134 if ( isablunaryoper( Oper ) )
136 if ( Oper == ABL_NOT )
146 (void *)Oper ) );
158 NewOper = AblPolarOperTable[ Oper ][ Polar ];
194 long Oper; local
210 Oper = ABL_OPER( Expr );
212 if ( isablunaryoper( Oper ) )
214 if ( Oper == ABL_NOT )
[all …]
H A Dabldev.c89 long Oper; local
96 Oper = ABL_OPER( Expr );
98 if ( ( Oper == ABL_XOR ) ||
99 ( Oper == ABL_NXOR ) )
106 ExprDev = optimablxorbinexpr( Oper,
115 (void *)Oper ) );
141 long Oper; local
148 Oper = ABL_OPER( Expr );
150 if ( ( Oper == ABL_XOR ) ||
151 ( Oper == ABL_NXOR ) )
[all …]
H A Dablctlsimp.c82 long Oper; local
92 Oper = ABL_OPER( Expr );
94 if ( ( Oper == ABL_AF ||
95 Oper == ABL_AG ||
96 Oper == ABL_AX ||
97 Oper == ABL_EF ||
98 Oper == ABL_EG ||
183 if ( Oper == ABL_AU )
212 if ( Oper == ABL_AND ||
213 Oper == ABL_OR )
[all …]
H A Dablunflat.c83 long Oper; local
89 Oper = ABL_OPER( Expr );
91 Binary = isablbinaryoper( Oper );
95 Polar = getabloperpolar( Oper );
101 Oper = getablopernot( Oper );
102 SET_ABL_OPER( Expr, Oper );
111 ScanExpr = createabloper( Oper );
/dports/science/libint2/libint-2.7.1/src/bin/libint/
H A Dintegral_1_1.h36 typedef Oper OperType;
40 typedef GenIntegralSet_1_1<BFS,Oper,AuxQuanta> this_type;
112 template <class BFS, class Oper, class AuxQuanta>
119 template <class BFS, class Oper, class AuxQuanta>
132 template <class BFS, class Oper, class AuxQuanta>
140 template <class BFS, class Oper, class AuxQuanta>
141 const SafePtr< GenIntegralSet_1_1<BFS,Oper,AuxQuanta> >
158 template <class BFS, class Oper, class AuxQuanta>
159 const SafePtr< GenIntegralSet_1_1<BFS,Oper,AuxQuanta> >
181 template <class BFS, class Oper, class AuxQuanta>
[all …]
H A Dintegral_11_11.h36 typedef Oper OperType;
40 typedef GenIntegralSet_11_11<BFS,Oper,AuxQuanta> this_type;
110 template <class BFS, class Oper, class AuxQuanta>
117 template <class BFS, class Oper, class AuxQuanta>
134 template <class BFS, class Oper, class AuxQuanta>
142 template <class BFS, class Oper, class AuxQuanta>
143 const SafePtr< GenIntegralSet_11_11<BFS,Oper,AuxQuanta> >
160 template <class BFS, class Oper, class AuxQuanta>
161 const SafePtr< GenIntegralSet_11_11<BFS,Oper,AuxQuanta> >
189 template <class BFS, class Oper, class AuxQuanta>
[all …]
H A Dcomp_xyz.h32 template <typename F, typename Oper, typename AuxQuanta = EmptySet>
33 class CR_XYZ_1_1 : public GenericRecurrenceRelation< CR_XYZ_1_1<F,Oper,AuxQuanta>,
35 GenIntegralSet_1_1<F,Oper,AuxQuanta> >
38 typedef CR_XYZ_1_1<F, Oper, AuxQuanta> ThisType;
40 typedef Oper OperType;
41 typedef GenIntegralSet_1_1<F,Oper,AuxQuanta> TargetType;
62 void compute(const BasisFunctionType& bra, const BasisFunctionType& ket, const Oper& oper);
65 template <typename F, typename Oper, typename AuxQuanta>
66 CR_XYZ_1_1<F,Oper,AuxQuanta>::CR_XYZ_1_1(const SafePtr< TargetType >& Tint, in CR_XYZ_1_1()
/dports/cad/alliance/alliance/src/vasy/src/
H A Dvasy_drvvex.c214 long Oper; local
225 Oper = GetVexOperValue( Expr );
227 if ( VasyVerilog ) String = getvexoperverilogname( Oper );
228 else String = getvexoperuppername( Oper );
232 VasyError( VASY_ERROR_IN_DRVVEX, Oper );
237 if ( isvexunaryoper( Oper ) )
239 if ( ( Oper == VEX_EVENT ) ||
240 ( Oper == VEX_DRIVER ) )
250 if ( Oper == VEX_NEG )
264 if ( isvexpositiveoper( Oper ) )
[all …]
/dports/math/gap/gap-4.11.0/pkg/fr-2.4.6/gap/
H A Dperlist.gd34 ## <Oper Name="PrePeriod" Arg="list"/>
35 ## <Oper Name="Period" Arg="list"/>
60 ## <Ref Oper="Filtered" BookName="ref"/>,
61 ## <Ref Oper="First" BookName="ref"/>,
62 ## <Ref Oper="ForAll" BookName="ref"/>,
63 ## <Ref Oper="ForAny" BookName="ref"/>,
64 ## <Ref Oper="Number" BookName="ref"/>.
104 ## <Oper Name="IsConfinal" Arg="l,m"/>
122 ## <Oper Name="ConfinalityClass" Arg="l"/>
177 ## <Oper Name="NewFIFO" Arg="[l]"/>
[all …]

12345678910>>...65