HomeSort by relevance Sort by last modified time
    Searched refs:cfunc (Results 1 - 25 of 34) sorted by null

1 2

  /frameworks/native/opengl/tools/glgen/src/
CodeEmitter.java 20 void emitCode(CFunc cfunc, String original);
JFunc.java 24 CFunc cfunc; field in class:JFunc
36 public JFunc(CFunc cfunc) {
37 this.cfunc = cfunc;
40 public CFunc getCFunc() {
41 return cfunc;
121 public static JFunc convert(CFunc cfunc, boolean useArray)
    [all...]
EGLCodeEmitter.java 50 public void emitCode(CFunc cfunc, String original) {
51 emitCode(cfunc, original, null, mJavaImplStream,
GLESCodeEmitter.java 48 public void emitCode(CFunc cfunc, String original) {
49 emitCode(cfunc, original, null, mJavaImplStream,
JniCodeEmitter.java 70 public void emitCode(CFunc cfunc, String original,
78 if (cfunc.hasTypedPointerArg()) {
79 jfunc = JFunc.convert(cfunc, true);
103 if (cfunc.hasEGLHandleArg()) {
108 jfunc = JFunc.convert(cfunc, false);
225 boolean isNullAllowed(CFunc cfunc, String cname) {
226 String[] checks = mChecker.getChecks(cfunc.getName());
241 boolean hasCheckTest(CFunc cfunc)
780 CFunc cfunc = jfunc.getCFunc(); local
    [all...]
Jsr239CodeEmitter.java 83 public void emitCode(CFunc cfunc, String original) {
84 emitCode(cfunc, original, mJavaInterfaceStream, mJavaImplStream, mCStream);
CFunc.java 19 public class CFunc {
33 public CFunc(String original) {
118 public static CFunc parseCFunc(String s) {
119 CFunc cfunc = new CFunc(s); local
137 cfunc.setName(fname);
138 cfunc.setType(ftype);
173 cfunc.addArgument(argName, argType);
176 return cfunc;
    [all...]
GenerateEGL.java 44 CFunc cfunc = CFunc.parseCFunc(s); local
46 String fname = cfunc.getName();
65 emitter.emitCode(cfunc, s);
GenerateGLES.java 44 CFunc cfunc = CFunc.parseCFunc(s); local
45 String fname = cfunc.getName();
64 emitter.emitCode(cfunc, s);
GenerateGL.java 46 CFunc cfunc = CFunc.parseCFunc(s); local
48 String fname = cfunc.getName();
69 emitter.emitCode(cfunc, s);
  /external/vboot_reference/tests/
common.sh 55 local cfunc=${x#* }
56 cfunc=${cfunc##*/}
59 echo -e "${COL_RED}ERROR at ${cfunc}, line ${cline}${spacer}${args}" \
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 163 # define _STLP_MATH_INLINE(float_type, func, cfunc) \
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) \
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)
168 # define _STLP_MATH_INLINE2_D(float_type, type, func, cfunc)
171 # define _STLP_MATH_INLINE(float_type, func, cfunc) \
172 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::__##cfunc(x); }
173 # define _STLP_MATH_INLINE_D(float_type, func, cfunc) \
174 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::cfunc(x);
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 163 # define _STLP_MATH_INLINE(float_type, func, cfunc) \
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) \
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)
168 # define _STLP_MATH_INLINE2_D(float_type, type, func, cfunc)
171 # define _STLP_MATH_INLINE(float_type, func, cfunc) \
172 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::__##cfunc(x); }
173 # define _STLP_MATH_INLINE_D(float_type, func, cfunc) \
174 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::cfunc(x);
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 163 # define _STLP_MATH_INLINE(float_type, func, cfunc) \
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) \
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)
168 # define _STLP_MATH_INLINE2_D(float_type, type, func, cfunc)
171 # define _STLP_MATH_INLINE(float_type, func, cfunc) \
172 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::__##cfunc(x); }
173 # define _STLP_MATH_INLINE_D(float_type, func, cfunc) \
174 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::cfunc(x);
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/testplugin/src/plugin2/
plugin2.go 12 // void cfunc() {} // uses cgo_topofstack
  /prebuilts/go/linux-x86/misc/cgo/testplugin/src/plugin2/
plugin2.go 12 // void cfunc() {} // uses cgo_topofstack
  /system/core/toolbox/upstream-netbsd/bin/dd/
extern.h 71 extern void (*cfunc)(void);
args.c 180 cfunc = ddflags & C_BLOCK ? block : unblock;
185 cfunc = unblock;
188 cfunc = block;
196 cfunc = def;
dd.c 80 void (*cfunc)(void); /* conversion function */ variable
430 (*cfunc)();
442 if (cfunc == def)
444 else if (cfunc == block)
446 else if (cfunc == unblock)
  /prebuilts/go/darwin-x86/src/runtime/
syscall_windows_test.go 573 uintptr_t cfunc(callback f, uintptr_t n) {
603 proc := dll.MustFindProc("cfunc")
638 uintptr_t cfunc(uintptr_t a, double b, float c, double d) {
668 proc := dll.MustFindProc("cfunc")
867 uintptr_t cfunc() {
886 dll.MustFindProc("cfunc")
  /prebuilts/go/linux-x86/src/runtime/
syscall_windows_test.go 573 uintptr_t cfunc(callback f, uintptr_t n) {
603 proc := dll.MustFindProc("cfunc")
638 uintptr_t cfunc(uintptr_t a, double b, float c, double d) {
668 proc := dll.MustFindProc("cfunc")
867 uintptr_t cfunc() {
886 dll.MustFindProc("cfunc")
  /external/opencv/cxcore/src/
cxsumpixels.cpp 961 CvReduceToColFunc cfunc = local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
trace.py 285 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) in calls:
294 print " %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc)
  /external/python/cpython2/Lib/
trace.py 285 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) in calls:
294 print " %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
trace.py 285 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) in calls:
294 print " %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc)

Completed in 5077 milliseconds

1 2