Lines Matching refs:theclass
151 enum address_class theclass; in sympy_is_constant() local
155 theclass = SYMBOL_CLASS (symbol); in sympy_is_constant()
157 return PyBool_FromLong (theclass == LOC_CONST || theclass == LOC_CONST_BYTES); in sympy_is_constant()
164 enum address_class theclass; in sympy_is_function() local
168 theclass = SYMBOL_CLASS (symbol); in sympy_is_function()
170 return PyBool_FromLong (theclass == LOC_BLOCK); in sympy_is_function()
177 enum address_class theclass; in sympy_is_variable() local
181 theclass = SYMBOL_CLASS (symbol); in sympy_is_variable()
184 && (theclass == LOC_LOCAL || theclass == LOC_REGISTER in sympy_is_variable()
185 || theclass == LOC_STATIC || theclass == LOC_COMPUTED in sympy_is_variable()
186 || theclass == LOC_OPTIMIZED_OUT)); in sympy_is_variable()