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

1 2 3 4

  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
084-unbalanced-parentheses.c 1 #define FUNC(x) (2*(x))
2 FUNC(23
  /external/mesa3d/src/glsl/glcpp/tests/
084-unbalanced-parentheses.c 1 #define FUNC(x) (2*(x))
2 FUNC(23
  /external/clang/test/Preprocessor/
macro_fn_lparen_scan2.c 1 // RUN: %clang_cc1 -E %s | grep 'FUNC (3 +1);'
4 #define FUNC(a) (a+1)
6 F(FUNC) FUNC (3); /* final token sequence is FUNC(3+1) */
macro_rparen_scan2.c 5 #define FUNC(a) a
7 static int glob = (1 + FUNC(1 R_PAREN );
  /external/eigen/lapack/
lapack_common.h 15 #define EIGEN_LAPACK_FUNC(FUNC,ARGLIST) \
16 extern "C" { int EIGEN_BLAS_FUNC(FUNC) ARGLIST; } \
17 int EIGEN_BLAS_FUNC(FUNC) ARGLIST
  /external/chromium_org/third_party/npapi/npspy/extern/plugin/
npupp.h 76 #define NewNPP_InitializeProc(FUNC) \
77 ((NPP_InitializeUPP) (FUNC))
78 #define CallNPP_InitializeProc(FUNC) \
79 (*(FUNC))()
83 #define NewNPP_ShutdownProc(FUNC) \
84 ((NPP_ShutdownUPP) (FUNC))
85 #define CallNPP_ShutdownProc(FUNC) \
86 (*(FUNC))()
90 #define NewNPP_NewProc(FUNC) \
91 ((NPP_NewUPP) (FUNC))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/
glapi_dispatch.c 55 #define NAME(func) mgl##func
57 #define NAME(func) gl##func
63 #define DISPATCH(FUNC, ARGS, MESSAGE) \
65 GET_DISPATCH()->FUNC ARGS
67 #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
69 return GET_DISPATCH()->FUNC ARGS
73 #define DISPATCH(FUNC, ARGS, MESSAGE) \
74 GET_DISPATCH()->FUNC ARG
    [all...]
  /external/llvm/test/MC/ELF/
gnu-type-diagnostics.s 3 .type TYPE FUNC
5 // CHECK: .type TYPE FUNC
  /external/mesa3d/src/mapi/glapi/
glapi_dispatch.c 55 #define NAME(func) mgl##func
57 #define NAME(func) gl##func
63 #define DISPATCH(FUNC, ARGS, MESSAGE) \
65 GET_DISPATCH()->FUNC ARGS
67 #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
69 return GET_DISPATCH()->FUNC ARGS
73 #define DISPATCH(FUNC, ARGS, MESSAGE) \
74 GET_DISPATCH()->FUNC ARG
    [all...]
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderLog.h 31 #define CHECK_VA_STATUS_RETURN(FUNC)\
33 LOG_E(FUNC" failed. vaStatus = %d\n", vaStatus);\
37 #define CHECK_VA_STATUS_GOTO_CLEANUP(FUNC)\
39 LOG_E(FUNC" failed. vaStatus = %d\n", vaStatus);\
44 #define CHECK_ENCODE_STATUS_RETURN(FUNC)\
46 LOG_E(FUNC"Failed. ret = 0x%08x\n", ret); \
50 #define CHECK_ENCODE_STATUS_CLEANUP(FUNC)\
52 LOG_E(FUNC"Failed, ret = 0x%08x\n", ret); \
  /external/clang/test/CodeGenCXX/
apple-kext-indirect-call.C 9 void FUNC(Base* p) {
  /external/valgrind/main/none/tests/s390x/
condloadstore.c 75 #define INSNVALCCINIT(insn, value, ccset, INIT, FUNC) \
77 FUNC(insn, value, ccset, INIT, 0); \
78 FUNC(insn, value, ccset, INIT, 1); \
79 FUNC(insn, value, ccset, INIT, 2); \
80 FUNC(insn, value, ccset, INIT, 3); \
81 FUNC(insn, value, ccset, INIT, 4); \
82 FUNC(insn, value, ccset, INIT, 5); \
83 FUNC(insn, value, ccset, INIT, 6); \
84 FUNC(insn, value, ccset, INIT, 7); \
85 FUNC(insn, value, ccset, INIT, 8);
    [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXComponentDefines.h 22 #define DECLARE_HANDLER(CLASS, FUNC)\
23 static OMX_ERRORTYPE Get##FUNC(void *inst, OMX_PTR pStructure) {\
24 return ((CLASS*)inst)->Get##FUNC(pStructure);\
26 static OMX_ERRORTYPE Set##FUNC(void *inst, OMX_PTR pStructure) {\
27 return ((CLASS*)inst)->Set##FUNC(pStructure);\
29 OMX_ERRORTYPE Get##FUNC(OMX_PTR pStructure);\
30 OMX_ERRORTYPE Set##FUNC(OMX_PTR pStructure);
57 #define CHECK_RETURN_VALUE(FUNC)\
59 LOGE(FUNC" failed: Error code = 0x%x", ret);\
85 #define CHECK_BS_STATUS(FUNC) \
    [all...]
  /external/eigen/test/eigen2/
main.h 143 #define CALL_SUBTEST(FUNC) do { \
144 g_test_stack.push_back(EI_PP_MAKE_STRING(FUNC)); \
145 FUNC; \
232 #define CALL_SUBTEST_1(FUNC) CALL_SUBTEST(FUNC)
234 #define CALL_SUBTEST_1(FUNC)
238 #define CALL_SUBTEST_2(FUNC) CALL_SUBTEST(FUNC)
240 #define CALL_SUBTEST_2(FUNC)
244 #define CALL_SUBTEST_3(FUNC) CALL_SUBTEST(FUNC
    [all...]
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderTrace.h 69 #define CHECK_STATUS(FUNC)\
72 WTRACE(FUNC" failed. status = %d", status);\
74 ETRACE(FUNC" failed. status = %d", status);\
79 #define CHECK_VA_STATUS(FUNC)\
81 ETRACE(FUNC" failed. vaStatus = 0x%x", vaStatus);\
85 #define CHECK_VBP_STATUS(FUNC)\
87 ETRACE(FUNC" failed. vbpStatus = %d", (int)vbpStatus);\
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/libgl-xlib/
xlib.c 122 #define NAME(func) mgl##func
124 #define NAME(func) gl##func
127 #define DISPATCH(FUNC, ARGS, MESSAGE) \
128 GET_DISPATCH()->FUNC ARGS
130 #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
131 return GET_DISPATCH()->FUNC ARGS
  /external/compiler-rt/test/asan/TestCases/Linux/
preinit_test.cc 30 int FUNC() {
  /external/mesa3d/src/gallium/targets/libgl-xlib/
xlib.c 122 #define NAME(func) mgl##func
124 #define NAME(func) gl##func
127 #define DISPATCH(FUNC, ARGS, MESSAGE) \
128 GET_DISPATCH()->FUNC ARGS
130 #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
131 return GET_DISPATCH()->FUNC ARGS
  /external/chromium_org/third_party/libwebp/dsp/
upsampling.c 37 #define UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \
49 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \
53 FUNC(bottom_y[0], uv0 & 0xff, (uv0 >> 16), bottom_dst); \
65 FUNC(top_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \
67 FUNC(top_y[2 * x - 0], uv1 & 0xff, (uv1 >> 16), \
73 FUNC(bottom_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \
75 FUNC(bottom_y[2 * x + 0], uv1 & 0xff, (uv1 >> 16), \
84 FUNC(top_y[len - 1], uv0 & 0xff, (uv0 >> 16), \
89 FUNC(bottom_y[len - 1], uv0 & 0xff, (uv0 >> 16), \
112 #define DUAL_SAMPLE_FUNC(FUNC_NAME, FUNC) \
    [all...]
upsampling_sse2.c 107 #define CONVERT2RGB(FUNC, XSTEP, top_y, bottom_y, \
111 FUNC(top_y[(cur_x) + n], r_u[n], r_v[n], \
116 FUNC(bottom_y[(cur_x) + n], r_u[64 + n], r_v[64 + n], \
122 #define CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, \
124 FUNC##32(top_y + (cur_x), r_u, r_v, top_dst + (cur_x) * XSTEP); \
126 FUNC##32(bottom_y + (cur_x), r_u + 64, r_v + 64, \
131 #define SSE2_UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \
148 FUNC(top_y[0], u0_t, v0_t, top_dst); \
152 FUNC(bottom_y[0], u0_b, v0_b, bottom_dst); \
159 CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, top_dst, bottom_dst, pos);
    [all...]
  /external/webp/src/dsp/
upsampling.c 37 #define UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \
49 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \
53 FUNC(bottom_y[0], uv0 & 0xff, (uv0 >> 16), bottom_dst); \
65 FUNC(top_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \
67 FUNC(top_y[2 * x - 0], uv1 & 0xff, (uv1 >> 16), \
73 FUNC(bottom_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \
75 FUNC(bottom_y[2 * x + 0], uv1 & 0xff, (uv1 >> 16), \
84 FUNC(top_y[len - 1], uv0 & 0xff, (uv0 >> 16), \
89 FUNC(bottom_y[len - 1], uv0 & 0xff, (uv0 >> 16), \
112 #define DUAL_SAMPLE_FUNC(FUNC_NAME, FUNC) \
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammar.g3 45 FUNC;
55 | func NEWLINE -> func
59 func: ID '(' formalPar ')' '=' expr -> ^(FUNC ID formalPar expr)
62 functionDefinitions.Add($func.tree);
ProfileGrammar.g3 45 FUNC;
55 | func NEWLINE -> func
59 func: ID '(' formalPar ')' '=' expr -> ^(FUNC ID formalPar expr)
62 functionDefinitions.Add($func.tree);
  /external/clang/test/CodeGen/
builtin-expect.c 6 void FUNC() {
  /external/ltrace/etc/
libm.so.conf 400 ; 15: 000000000003c000 15 FUNC GLOBAL DEFAULT 13 __finitel@@GLIBC_2.2.5
401 ; 44: 0000000000027be0 286 FUNC GLOBAL DEFAULT 13 __clog10@@GLIBC_2.2.5
402 ; 50: 00000000000068d0 85 FUNC GLOBAL DEFAULT 13 feholdexcept@@GLIBC_2.2.5
403 ; 56: 0000000000028900 10 FUNC GLOBAL DEFAULT 13 __signbit@@GLIBC_2.2.5
404 ; 61: 0000000000006ae0 53 FUNC GLOBAL DEFAULT 13 feenableexcept@@GLIBC_2.2.5
405 ; 65: 0000000000006760 29 FUNC GLOBAL DEFAULT 13 fegetexceptflag@@GLIBC_2.2.5
406 ; 68: 0000000000006a60 52 FUNC GLOBAL DEFAULT 13 feupdateenv@@GLIBC_2.2.5
407 ; 75: 0000000000006840 25 FUNC GLOBAL DEFAULT 13 fetestexcept@@GLIBC_2.2.5
408 ; 89: 0000000000025500 80 FUNC GLOBAL DEFAULT 13 __fpclassify@@GLIBC_2.2.5
409 ; 99: 0000000000033370 310 FUNC GLOBAL DEFAULT 13 __clog10f@@GLIBC_2.2.
    [all...]

Completed in 997 milliseconds

1 2 3 4