HomeSort by relevance Sort by last modified time
    Searched defs:func (Results 176 - 200 of 438) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/e2fsprogs/lib/ext2fs/
ext2fsP.h 51 int (*func)(ext2_ino_t dir, member in struct:dir_context
  /external/eigen/blas/
level2_impl.h 15 static functype func[4]; local
21 func[k] = 0;
23 func[NOTR] = (internal::general_matrix_vector_product<int,Scalar,ColMajor,false,Scalar,false>::run);
24 func[TR ] = (internal::general_matrix_vector_product<int,Scalar,RowMajor,false,Scalar,false>::run);
25 func[ADJ ] = (internal::general_matrix_vector_product<int,Scalar,RowMajor,Conj, Scalar,false>::run);
65 func[code](actual_m, actual_n, a, *lda, actual_b, 1, actual_c, 1, alpha);
76 static functype func[16]; local
82 func[k] = 0;
84 func[NOTR | (UP << 2) | (NUNIT << 3)] = (internal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Upper|0, false,ColMajor>::run);
85 func[TR | (UP << 2) | (NUNIT << 3)] = (internal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft (…)
131 static functype func[16]; local
332 static functype func[16]; local
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java 243 * Verifies that {@code func} produces a {@link NullPointerException} or
248 * @param instance the instance to invoke {@code func} on, or null if
249 * {@code func} is static
251 private void testFunctorParameter(Object instance, Functor func,
253 if (parameterIsPrimitiveOrNullable(func, paramIndex)) {
256 Object[] params = buildParamList(func, paramIndex);
258 func.invoke(instance, params);
259 Assert.fail("No exception thrown from " + func +
268 "wrong exception thrown from " + func + ": " + cause);
275 Functor func, int paramIndex)
    [all...]
  /external/opencv/cxcore/src/
cxlut.cpp 300 CvLUT_TransformFunc func = depth == CV_8U ? lut_8u_tab[cn-1] : local
303 if( !func )
306 IPPI_CALL( func( src->data.ptr, src->step, dst->data.ptr,
311 CvLUT_TransformCnFunc func = local
314 if( !func )
317 IPPI_CALL( func( src->data.ptr, src->step, dst->data.ptr,
  /external/qemu/distrib/sdl-1.2.15/src/audio/arts/
SDL_artsaudio.c 74 void **func; member in struct:__anon13295
106 *arts_functions[i].func = SDL_LoadFunction(arts_handle, arts_functions[i].name);
107 if ( !*arts_functions[i].func ) {
  /external/qemu/distrib/sdl-1.2.15/src/audio/esd/
SDL_esdaudio.c 68 void **func; member in struct:__anon13296
93 *esd_functions[i].func = SDL_LoadFunction(esd_handle, esd_functions[i].name);
94 if ( !*esd_functions[i].func ) {
  /external/qemu/distrib/sdl-1.2.15/src/thread/
SDL_thread.c 173 int (SDLCALL *func)(void *); member in struct:__anon13341
196 userfunc = args->func;
234 args->func = fn;
  /external/qemu/distrib/sdl-1.2.15/src/timer/
SDL_timer.c 238 SDL_TimerCallback func = (SDL_TimerCallback) param; local
239 return (*func)(ms);
  /external/qemu/distrib/sdl-1.2.15/src/timer/macos/
FastTimes.c 339 Ptr func = NULL; local
347 if (/* error = */ FindSymbol(connID, funcName, &func, &symClass))
350 return(func);
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_wingl.c 648 void *func; local
651 func = this->gl_data->wglGetProcAddress(proc);
652 if ( ! func ) {
654 func = GetProcAddress(this->gl_config.dll_handle, proc);
656 return func;
  /external/qemu/
ioport.c 64 IOPortReadFunc *func = ioport_read_table[index][address]; local
65 if (!func)
66 func = default_func[index];
67 return func(ioport_opaque[address], address);
77 IOPortWriteFunc *func = ioport_write_table[index][address]; local
78 if (!func)
79 func = default_func[index];
80 func(ioport_opaque[address], address, data);
140 IOPortReadFunc *func, void *opaque)
149 ioport_read_table[bsize][i] = func;
    [all...]
  /external/stlport/src/
cxa.c 55 } func; member in struct:exit_function
70 int __cxa_atexit(void (*func)(void *), void *arg, void *d)
78 new->func.cxa.fn = (void (*) (void *, int)) func;
79 new->func.cxa.arg = arg;
80 new->func.cxa.dso_handle = d;
175 if ( (d == NULL || d == f->func.cxa.dso_handle) && (f->flavor == ef_cxa) ) {
177 (*f->func.cxa.fn) (f->func.cxa.arg, 0);
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonRelocator.cpp 32 ApplyFunctionType func; member in struct:ApplyFunctionTriple
64 return ApplyFunctions[type].func(pRelocation, *this);
  /frameworks/native/cmds/servicemanager/
binder.h 50 void (*func)(struct binder_state *bs, void *ptr); member in struct:binder_death
95 void binder_loop(struct binder_state *bs, binder_handler func);
  /frameworks/rs/cpu_ref/
rsCpuScriptGroup.cpp 61 ScriptGroupRootFunc_t func; local
62 func = (ScriptGroupRootFunc_t)sl->fnPtrs[ct];
95 func(p, xstart, xend, instep, outstep);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
TestThread.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
  /ndk/sources/cxx-stl/stlport/src/
cxa.c 55 } func; member in struct:exit_function
70 int __cxa_atexit(void (*func)(void *), void *arg, void *d)
78 new->func.cxa.fn = (void (*) (void *, int)) func;
79 new->func.cxa.arg = arg;
80 new->func.cxa.dso_handle = d;
175 if ( (d == NULL || d == f->func.cxa.dso_handle) && (f->flavor == ef_cxa) ) {
177 (*f->func.cxa.fn) (f->func.cxa.arg, 0);
  /system/core/sh/
var.h 57 void (*func)(const char *); member in struct:var
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 1031 Function func = m_functionTable.getFunction(funcID); local
1038 if (func instanceof FuncExtFunctionAvailable)
1039 ((FuncExtFunctionAvailable) func).setFunctionTable(m_functionTable);
1041 func.postCompileStep(this);
1052 func.setArg(compile(p), i);
1055 func.checkNumberArgs(i);
1067 return func;
    [all...]
  /bionic/libc/kernel/common/linux/
interrupt.h 115 void (*func)(unsigned long); member in struct:tasklet_struct
119 #define DECLARE_TASKLET(name, func, data) struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(0), func, data }
120 #define DECLARE_TASKLET_DISABLED(name, func, data) struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(1), func, data }
  /bionic/libc/upstream-netbsd/libc/isc/
ev_timers.c 63 evTimerFunc func; member in struct:__anon676
187 evTimerFunc func,
197 "evSetTimer(ctx %p, func %p, uap %p, due %ld.%09ld, inter %ld.%09ld)\n",
198 ctx, func, uap,
225 id->func = func;
305 evTimerFunc func,
337 timer->func = func;
364 evTimerFunc func,
    [all...]
  /development/ndk/platforms/android-3/include/linux/
interrupt.h 103 void (*func)(unsigned long); member in struct:tasklet_struct
107 #define DECLARE_TASKLET(name, func, data) struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(0), func, data }
109 #define DECLARE_TASKLET_DISABLED(name, func, data) struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(1), func, data }
  /external/chromium/chrome/browser/ui/views/infobars/
infobar_view.cc 136 GetStockIconInfo func = reinterpret_cast<GetStockIconInfo>( local
138 (*func)(SIID_SHIELD, SHGSI_ICON | SHGSI_SMALLICON, &icon_info);
  /external/clang/test/SemaCXX/
class.cpp 31 typedef int func(); typedef in class:C
32 func tm;
33 func *ptm;
34 func btm : 1; // expected-error {{bit-field 'btm' has non-integral type}}
conversion.cpp 97 void func();
117 void func() { function in namespace:test4
128 void func() { function in namespace:test5
132 template void func<3>();
136 decltype(nullptr) func() { function in namespace:test6

Completed in 1037 milliseconds

1 2 3 4 5 6 78 91011>>