HomeSort by relevance Sort by last modified time
    Searched refs:fn (Results 176 - 200 of 2092) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
thread_info.h 16 long (*fn)(struct restart_block *); member in struct:restart_block
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
thread_info.h 16 long (*fn)(struct restart_block *); member in struct:restart_block
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
thread_info.h 16 long (*fn)(struct restart_block *); member in struct:restart_block
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
thread_info.h 16 long (*fn)(struct restart_block *); member in struct:restart_block
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
thread_info.h 16 long (*fn)(struct restart_block *); member in struct:restart_block
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
__init__.py 26 for fn in os.listdir(here):
27 if fn.startswith("test") and fn.endswith(".py"):
28 modname = "distutils.tests." + fn[:-3]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
__init__.py 11 for fn in os.listdir(here):
12 if fn.startswith("test") and fn.endswith(".py"):
13 modname = "unittest.test." + fn[:-3]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
__init__.py 26 for fn in os.listdir(here):
27 if fn.startswith("test") and fn.endswith(".py"):
28 modname = "distutils.tests." + fn[:-3]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
__init__.py 11 for fn in os.listdir(here):
12 if fn.startswith("test") and fn.endswith(".py"):
13 modname = "unittest.test." + fn[:-3]
  /system/core/init/
ueventd_parser.h 24 int ueventd_parse_config_file(const char *fn);
  /system/extras/ext4_utils/
canned_fs_config.h 22 int load_canned_fs_config(const char* fn);
  /packages/apps/Launcher2/
fill_screens.py 34 def pull_file(fn):
35 print "pull_file: " + fn
38 + " " + fn);
43 def push_file(fn):
44 print "push_file: " + fn
46 + " " + fn
52 def process_file(fn):
53 print "process_file: " + fn
54 conn = sqlite3.connect(fn)
  /packages/apps/Launcher3/
fill_screens.py 34 def pull_file(fn):
35 print "pull_file: " + fn
38 + " " + fn);
43 def push_file(fn):
44 print "push_file: " + fn
46 + " " + fn
52 def process_file(fn):
53 print "process_file: " + fn
54 conn = sqlite3.connect(fn)
  /external/valgrind/main/drd/tests/
annotate_barrier_xml.stderr.exp 43 <fn>barrier_init</fn>
51 <fn>barriers_and_races</fn>
59 <fn>main</fn>
76 <fn>barrier_wait</fn>
84 <fn>threadfunc</fn>
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
windowsx.h16 94 #define HANDLE_MSG(hwnd,message,fn) case (message): return HANDLE_##message((hwnd),(wParam),(lParam),(fn))
96 #define HANDLE_WM_COMPACTING(hwnd,wParam,lParam,fn) ((fn)((hwnd),(UINT)(wParam)),0L)
97 #define FORWARD_WM_COMPACTING(hwnd,compactRatio,fn) (void)(fn)((hwnd),WM_COMPACTING,(WPARAM)(UINT)(compactRatio),0L)
99 #define HANDLE_WM_WININICHANGE(hwnd,wParam,lParam,fn) ((fn)((hwnd),(LPCSTR)(lParam)),0L)
100 #define FORWARD_WM_WININICHANGE(hwnd,lpszSectionName,fn) (void)(fn)((hwnd),WM_WININICHANGE,0,(LPARAM)(LPCSTR)(lpszSectionName)
    [all...]
windowsx.h 72 #define HANDLE_MSG(hwnd,message,fn) case (message): return HANDLE_##message((hwnd),(wParam),(lParam),(fn))
73 #define HANDLE_WM_COMPACTING(hwnd,wParam,lParam,fn) ((fn)((hwnd),(UINT)(wParam)),(LRESULT)0)
74 #define FORWARD_WM_COMPACTING(hwnd,compactRatio,fn) (void)(fn)((hwnd),WM_COMPACTING,(WPARAM)(UINT)(compactRatio),(LPARAM)0)
75 #define HANDLE_WM_WININICHANGE(hwnd,wParam,lParam,fn) ((fn)((hwnd),(LPCTSTR)(lParam)),(LRESULT)0)
76 #define FORWARD_WM_WININICHANGE(hwnd,lpszSectionName,fn) (void)(fn)((hwnd),WM_WININICHANGE,(WPARAM)0,(LPARAM)(LPCTSTR)(lpszSectionName)
    [all...]
  /frameworks/base/data/sounds/
AudioPackage13_48.mk 19 PRODUCT_COPY_FILES += $(foreach fn,$(ALARM_FILES),\
20 $(LOCAL_PATH)/alarms/material/ogg/$(fn)_48k.ogg:system/media/audio/alarms/$(fn).ogg)
22 PRODUCT_COPY_FILES += $(foreach fn,$(NOTIFICATION_FILES),\
23 $(LOCAL_PATH)/notifications/material/ogg/$(fn)_48k.ogg:system/media/audio/notifications/$(fn).ogg)
25 PRODUCT_COPY_FILES += $(foreach fn,$(RINGTONE_FILES),\
26 $(LOCAL_PATH)/ringtones/material/ogg/$(fn)_48k.ogg:system/media/audio/ringtones/$(fn).ogg)
28 PRODUCT_COPY_FILES += $(foreach fn,$(EFFECT_FILES),
    [all...]
  /external/valgrind/main/callgrind/
context.c 140 static UWord cxt_hash_val(fn_node** fn, UInt size)
144 while(*fn != 0) {
145 hash = (hash<<7) + (hash>>25) + (UWord)(*fn);
146 fn--;
154 static Bool is_cxt(UWord hash, fn_node** fn, Context* cxt)
162 cxt_fn = &(cxt->fn[0]);
163 while((*fn != 0) && (count>0)) {
164 if (*cxt_fn != *fn) return False;
165 fn--;
175 static Context* new_cxt(fn_node** fn)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_rem_pio2f.c 49 double w,r,fn; local
58 /* Use a specialized rint() to get fn. Assume round-to-nearest. */
59 STRICT_ASSIGN(double,fn,x*invpio2+0x1.8p52);
60 fn = fn-0x1.8p52;
62 n = irint(fn);
64 n = (int32_t)fn;
66 r = x-fn*pio2_1;
67 w = fn*pio2_1t;
s_fdim.c 32 #define DECL(type, fn) \
34 fn(type x, type y) \
  /external/chromium_org/sync/internal_api/public/util/
weak_handle.cc 28 const base::Closure& fn) const {
29 if (!owner_loop_proxy_->PostTask(from_here, fn)) {
  /external/chromium_org/tools/json_schema_compiler/
memoize.py 5 def memoize(fn):
6 '''Decorates |fn| to memoize.
12 memory[full_args] = fn(*args, **optargs)
  /external/clang/test/Index/
print-type.c 3 int *f(int *p, char *x, FooType z, int arr[5], void (*fn)(int)) {
4 fn(*p);
23 // CHECK: ParmDecl=fn:3:55 (Definition) [type=void (*)(int)] [typekind=Pointer] [canonicaltype=void (*)(int)] [canonicaltypekind=Pointer] [isPOD=1] [pointeetype=void (int)] [pointeekind=Unexposed]
26 // CHECK: CallExpr=fn:3:55 [type=void] [typekind=Void] [args= [int] [Int]] [isPOD=0]
27 // CHECK: DeclRefExpr=fn:3:55 [type=void (*)(int)] [typekind=Pointer] [canonicaltype=void (*)(int)] [canonicaltypekind=Pointer] [isPOD=1] [pointeetype=void (int)] [pointeekind=Unexposed]
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_thread.h 78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
81 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthread, _endthread)
83 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, NULL, NULL)
85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
88 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_thread.h 78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
81 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthread, _endthread)
83 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, NULL, NULL)
85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
88 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);

Completed in 5836 milliseconds

1 2 3 4 5 6 78 91011>>