Home
last modified time | relevance | path

Searched refs:cfunc (Results 1 – 7 of 7) sorted by relevance

/external/stlport/stlport/stl/
D_cmath.h163 # define _STLP_MATH_INLINE(float_type, func, cfunc) \ argument
164 inline float_type func (float_type x) { return _STLP_CMATH_FUNC_NAMESPACE::cfunc(x); }
165 # define _STLP_MATH_INLINE2(float_type, type, func, cfunc) \ argument
166 … inline float_type func (float_type x, type y) { return _STLP_CMATH_FUNC_NAMESPACE::cfunc(x, y); }
167 # define _STLP_MATH_INLINE_D(float_type, func, cfunc) argument
168 # define _STLP_MATH_INLINE2_D(float_type, type, func, cfunc) argument
171 # define _STLP_MATH_INLINE(float_type, func, cfunc) \ argument
172 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::__##cfunc(x); }
173 # define _STLP_MATH_INLINE_D(float_type, func, cfunc) \ argument
174 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::cfunc(x); }
[all …]
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
Denums.c7013 typedef int (*cfunc)(const void *, const void *); typedef
7055 (cfunc) compar_nr); in _mesa_lookup_enum_by_nr()
7109 (cfunc) compar_name); in _mesa_lookup_enum_by_name()
/external/opencv/cxcore/src/
Dcxsumpixels.cpp961 CvReduceToColFunc cfunc = in cvReduce() local
998 if( !cfunc ) in cvReduce()
1002 IPPI_CALL( cfunc( src->data.ptr, src->step ? src->step : CV_STUB_STEP, in cvReduce()
/external/chromium_org/third_party/cython/src/Cython/
DShadow.py96 cclass = ccall = cfunc = _EmptyDecoratorAndManager()
/external/chromium_org/third_party/cython/src/Cython/Compiler/
DNodes.py2245 cfunc = ExprNodes.NameNode(self.pos, name=self.entry.name)
2248 cfunc = ExprNodes.AttributeNode(self.pos, obj=self_arg, attribute=self.entry.name)
2250 …c_call = ExprNodes.SimpleCallNode(self.pos, function=cfunc, args=[ExprNodes.NameNode(self.pos, nam…
2498 def as_cfunction(self, cfunc=None, scope=None, overridable=True, returns=None): argument
2503 if cfunc is None:
2519 cfunc = CVarDefNode(self.pos, type=cfunc_type)
2522 scope = cfunc.scope
2523 cfunc_type = cfunc.type
2526 error(cfunc.pos, "previous declaration here")
2558 directive_locals = getattr(cfunc, 'directive_locals', {}),
DExprNodes.py3995 cfunc = '__Pyx_PyList_GetSlice'
3999 cfunc = '__Pyx_PyTuple_GetSlice'
4001 cfunc = '__Pyx_PySequence_GetSlice'
4005 cfunc,
/external/chromium_org/third_party/cython/src/
DCHANGES.rst654 * Improved pure syntax including cython.cclass, cython.cfunc, and cython.ccall.