HomeSort by relevance Sort by last modified time
    Searched defs:func (Results 351 - 375 of 1347) sorted by null

<<11121314151617181920>>

  /external/eigen/bench/
benchGeometry.cpp 23 struct func;
26 struct func<res, arg1, arg2, TV> struct
36 struct func<res, arg1, arg2, TMATV> struct
46 struct func<res, arg1, arg2, TMATVMAT> struct
55 template <class func, class arg1, class arg2>
71 a2 = func::run( a1, a2 );
84 typedef func<Vec,Trans,Vec,op> Func;\
85 test_transform< Func, Trans, Vec >::run();\
92 typedef func<Trans,Trans,Trans,op> Func;
    [all...]
  /external/icu/icu4c/source/test/perf/normperf/
dtfmtrtperf.cpp 42 DateTimeRoundTripFunction* func= new DateTimeRoundTripFunction(1); local
43 return func;
47 DateTimeRoundTripFunction* func= new DateTimeRoundTripFunction(10); local
48 return func;
52 DateTimeRoundTripFunction* func= new DateTimeRoundTripFunction(11); local
53 return func;
57 DateTimeRoundTripFunction* func= new DateTimeRoundTripFunction(21); local
58 return func;
  /external/icu/icu4c/source/test/perf/strsrchperf/
strsrchperf.cpp 99 StringSearchPerfFunction* func = new StringSearchPerfFunction(ICUForwardSearch, srch, src, srcLen, pttrn, pttrnLen); local
100 return func;
104 StringSearchPerfFunction* func = new StringSearchPerfFunction(ICUBackwardSearch, srch, src, srcLen, pttrn, pttrnLen); local
105 return func;
  /external/iproute2/include/
namespace.h 48 int netns_foreach(int (*func)(char *nsname, void *arg), void *arg);
51 int (*func)(char *nsname, void *arg); member in struct:netns_func
  /external/ipsec-tools/src/racoon/
schedule.h 48 void (*func) __P((void *)); /* call this function when timeout. */ member in struct:sched
79 struct sched *sched_new __P((time_t, void (*func) __P((void *)), void *));
  /external/kernel-headers/original/uapi/linux/
pg.h 47 char func; /* PG_RESET or PG_COMMAND */ member in struct:pg_write_hdr
  /external/libcxx/test/libcxx/thread/thread.condition/
PR30202_notify_from_pthread_created_thread.pass.cpp 40 void* func(void*) function
54 int res = pthread_create(&id, 0, &func, nullptr);
67 std::thread t(&func, nullptr);
  /external/libunwind/tests/
test-ptrace-misc.c 40 func (int arg) function
57 arr[i] = func (arg - 1);
103 v = func (v);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 30 (* func - This type represents a function definition itself. *)
31 type func = Function of proto * expr type
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 35 (* func - This type represents a function definition itself. *)
36 type func = Function of proto * expr type
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 38 (* func - This type represents a function definition itself. *)
39 type func = Function of proto * expr type
  /external/llvm/lib/Support/
Threading.cpp 81 void (*func)(void*); member in struct:ThreadInfo
87 info->func(info->param);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_unlock/
2-1.c 36 void *func(void *parm);
49 rc = pthread_create(&threads[i], NULL, func, NULL);
69 void *func(void *parm) function
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
posix_thread.hpp 41 start_thread(new func<Function>(f));
67 class func class in class:asio::detail::posix_thread
71 func(Function f) function in class:asio::detail::posix_thread::func
  /external/python/cpython2/Lib/ctypes/test/
test_funcptr.py 17 def func(*args): function in function:CFuncPtrTestCase.test_basic
20 x = X(func)
30 def func(a, b): function in function:CFuncPtrTestCase.test_first
33 s = StdCallback(func)
34 c = CdeclCallback(func)
test_refcounts.py 39 def func(*args): function in function:RefcountTestCase.test_refcount
41 # this is the standard refcount for func
42 self.assertEqual(grc(func), 2)
44 # the CFuncPtr instance holds at least one refcount on func:
45 f = OtherCallback(func)
46 self.assertGreater(grc(func), 2)
50 self.assertGreaterEqual(grc(func), 2)
54 self.assertEqual(grc(func), 2)
59 x.a = OtherCallback(func)
61 # the CFuncPtr instance holds at least one refcount on func
89 def func(a, b): function in function:AnotherLeak.test_callback
    [all...]
test_simplesubclasses.py 22 def func(): function in function:Test.test_ignore_retval
25 cb = proto(func)
31 def func(arg): function in function:Test.test_int_callback
35 cb = CFUNCTYPE(None, MyInt)(func)
40 cb = CFUNCTYPE(c_int, c_int)(func)
  /external/python/cpython2/Lib/test/
test_dis.py 87 def do_disassembly_test(self, func, expected):
91 dis.dis(func)
132 def func(count): function in function:DisTests.test_big_linenos
134 func = "def foo():\n " + "".join(["\n "] * count + ["spam\n"])
135 exec func in namespace
141 self.do_disassembly_test(func(i), expected)
146 self.do_disassembly_test(func(i), expected)
  /external/python/cpython3/Include/
classobject.h 39 PyObject *func; member in struct:__anon33119
52 (((PyInstanceMethodObject *)meth) -> func)
  /external/python/cpython3/Lib/ctypes/test/
test_funcptr.py 17 def func(*args): function in function:CFuncPtrTestCase.test_basic
20 x = X(func)
30 def func(a, b): function in function:CFuncPtrTestCase.test_first
33 s = StdCallback(func)
34 c = CdeclCallback(func)
test_refcounts.py 42 def func(*args): function in function:RefcountTestCase.test_refcount
44 # this is the standard refcount for func
45 self.assertEqual(grc(func), 2)
47 # the CFuncPtr instance holds at least one refcount on func:
48 f = OtherCallback(func)
49 self.assertGreater(grc(func), 2)
53 self.assertGreaterEqual(grc(func), 2)
57 self.assertEqual(grc(func), 2)
62 x.a = OtherCallback(func)
64 # the CFuncPtr instance holds at least one refcount on func
92 def func(a, b): function in function:AnotherLeak.test_callback
    [all...]
  /external/smali/deodexerant/
deodexerant.c 36 void * func; member in struct:InlineOperation
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 30 (* func - This type represents a function definition itself. *)
31 type func = Function of proto * expr type
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 35 (* func - This type represents a function definition itself. *)
36 type func = Function of proto * expr type
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 38 (* func - This type represents a function definition itself. *)
39 type func = Function of proto * expr type

Completed in 1216 milliseconds

<<11121314151617181920>>