/external/libedit/src/ |
hist.h | 57 #define HIST_FUN_INTERNAL(el, fn, arg) \ 59 fn, arg)) == -1) ? NULL : (el)->el_history.ev.str) 61 #define HIST_FUN(el, fn, arg) \ 62 (((el)->el_flags & NARROW_HISTORY) ? hist_convert(el, fn, arg) : \ 63 HIST_FUN_INTERNAL(el, fn, arg)) 65 #define HIST_FUN(el, fn, arg) HIST_FUN_INTERNAL(el, fn, arg)
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-linkonce/ |
y.s | 1 ;# Library file y.s has linkonce entries for fn and fn2. Note 2 ;# that this version of fn has different code, as if compiled 17 .section .gnu.linkonce.t.fn,"ax",@progbits 18 .weak fn 19 .type fn,@function 20 fn: label 24 .size fn,.Lf-.Le
|
/external/libvpx/libvpx/vp8/common/ |
reconintra.c | 54 intra_pred_fn fn; local 61 fn = dc_pred[x->left_available][x->up_available][SIZE_16]; 63 fn = pred[mode][SIZE_16]; 66 fn(ypred_ptr, y_stride, yabove_row, yleft_col); 77 intra_pred_fn fn; local 85 fn = dc_pred[x->left_available][x->up_available][SIZE_8]; 87 fn = pred[uvmode][SIZE_8]; 90 fn(upred_ptr, pred_stride, uabove_row, uleft_col); 91 fn(vpred_ptr, pred_stride, vabove_row, vleft_col);
|
/external/skia/tools/ |
ok_vias.cpp | 11 static std::unique_ptr<Src> proxy(Src* original, std::function<bool(SkCanvas*)> fn) { 14 std::function<bool(SkCanvas*)> fn; member in struct:__anon29969 18 bool draw(SkCanvas* canvas) override { return fn(canvas); } 21 src.fn = fn;
|
/external/valgrind/exp-sgcheck/tests/ |
hsg.stderr.exp | 41 <fn>addup_wrongly</fn> 49 <fn>main</fn> 69 <fn>addup_wrongly</fn> 77 <fn>do_other_stuff</fn> 85 <fn>main</fn> [all...] |
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/ |
tlslib-o32.s | 5 .globl fn 6 .ent fn 7 .type fn,@function 8 fn: label 48 .end fn
|
/external/compiler-rt/lib/asan/ |
asan_win_dll_thunk.cc | 108 static fntype fn = (fntype)getRealProcAddressOrDie(#name); \ 109 fn(); \ 116 static fntype fn = (fntype)getRealProcAddressOrDie(#name); \ 117 fn(arg); \ 124 static fntype fn = (fntype)getRealProcAddressOrDie(#name); \ 125 fn(arg1, arg2); \ 132 static fntype fn = (fntype)getRealProcAddressOrDie(#name); \ 133 fn(arg1, arg2, arg3); \ 140 static fntype fn = (fntype)getRealProcAddressOrDie(#name); \ 141 return fn(); \ 208 static fntype fn = 0; local [all...] |
/prebuilts/go/darwin-x86/src/runtime/ |
syscall_windows.go | 43 func compileCallback(fn eface, cleanstack bool) (code uintptr) { 44 if fn._type == nil || (fn._type.kind&kindMask) != kindFunc { 47 ft := (*functype)(unsafe.Pointer(fn._type)) 68 if cbs.ctxt[i].gobody == fn.data && cbs.ctxt[i].isCleanstack() == cleanstack { 77 c.gobody = fn.data 99 c.fn = getLoadLibraryEx() 113 c.fn = getLoadLibrary() 130 c.fn = getLoadLibrary() 145 c.fn = getGetProcAddress( [all...] |
/prebuilts/go/linux-x86/src/runtime/ |
syscall_windows.go | 43 func compileCallback(fn eface, cleanstack bool) (code uintptr) { 44 if fn._type == nil || (fn._type.kind&kindMask) != kindFunc { 47 ft := (*functype)(unsafe.Pointer(fn._type)) 68 if cbs.ctxt[i].gobody == fn.data && cbs.ctxt[i].isCleanstack() == cleanstack { 77 c.gobody = fn.data 99 c.fn = getLoadLibraryEx() 113 c.fn = getLoadLibrary() 130 c.fn = getLoadLibrary() 145 c.fn = getGetProcAddress( [all...] |
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue13799.go | 44 // of map. Assign to fn declared outside of loop triggers escape of closure. 48 var fn func() // ERROR "moved to heap: fn$" 50 // var fn func() // this makes it work, because fn stays off heap 52 fn = func() { // ERROR "func literal escapes to heap$" 56 fn() // ERROR "&fn escapes to heap$" 59 fn() 72 // var fn func( [all...] |
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue13799.go | 44 // of map. Assign to fn declared outside of loop triggers escape of closure. 48 var fn func() // ERROR "moved to heap: fn$" 50 // var fn func() // this makes it work, because fn stays off heap 52 fn = func() { // ERROR "func literal escapes to heap$" 56 fn() // ERROR "&fn escapes to heap$" 59 fn() 72 // var fn func( [all...] |
/bionic/libm/upstream-freebsd/lib/msun/ld128/ |
e_rem_pio2l.h | 65 long double z,w,t,r,fn; local 77 /* Use a specialized rint() to get fn. Assume round-to-nearest. */ 78 fn = x*invpio2+0x1.8p112; 79 fn = fn-0x1.8p112; 81 n = i64rint(fn); 83 n = fn; 85 r = x-fn*pio2_1; 86 w = fn*pio2_1t; /* 1st round good to 180 bit */ 97 w = fn*pio2_2; [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_rem_pio2.c | 57 double z,w,t,r,fn; local 130 /* Use a specialized rint() to get fn. Assume round-to-nearest. */ 131 STRICT_ASSIGN(double,fn,x*invpio2+0x1.8p52); 132 fn = fn-0x1.8p52; 134 n = irint(fn); 136 n = (int32_t)fn; 138 r = x-fn*pio2_1; 139 w = fn*pio2_1t; /* 1st round good to 85 bit */ 148 w = fn*pio2_2; [all...] |
/external/autotest/utils/ |
parallel.py | 30 for fn in function_list: 31 functions[fn] = set() 34 for fn, deps in functions.iteritems(): 35 dependents[fn] = [] 36 for fn, deps in functions.iteritems(): 38 dependents[dep].append(fn) 58 for fn, deps in self.functions.iteritems(): 60 self.ready_to_run.append(fn) 71 fn = self.pid_map.pop(pid) 73 errors.append("%s failed" % fn.__name__ [all...] |
/external/compiler-rt/test/asan/TestCases/Posix/ |
start-deactivated.cc | 42 typedef void (*Fn)(); 59 void *fn = dlsym(dso, "do_another_bad_thing"); local 60 if (!fn) { 70 ((Fn)fn)();
|
/external/eigen/bench/tensors/ |
benchmark.h | 23 Benchmark(const char* name, void (*fn)(int)) { 24 Register(name, fn, NULL); 39 void Register(const char* name, void (*fn)(int), void (*fn_range)(int, int));
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
MimeTypesFileTypeDetector.java | 40 Path fn = path.getFileName(); local 41 if (fn == null) 44 String ext = getExtension(fn.toString());
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
tlsd.s | 8 .globl fn 9 .type fn,@function 10 fn: label
|
tlspic.s | 5 .globl fn 6 .type fn,@function 7 fn: label
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/ |
tlspic.s | 3 .global fn 4 .type fn, @function 5 fn: label
|
/build/make/tools/ |
compare_fileslist.py | 41 for fn,sz in lines: 42 if not data.has_key(fn): 43 data[fn] = {} 44 data[fn][index] = sz 47 for fn,sizes in data.iteritems(): 48 row = [fn] 59 .fn, .sz, .z, .d { 66 .fn { 86 print " <td class='fn'>%s</td>" % cgi.escape(combo) 98 print " <td class='fn'>%s</td>" % cgi.escape(row[0] [all...] |
/build/make/tools/droiddoc/templates-pdk/assets/ |
jquery-history.js | 62 $.fn.history = function(fn) { 63 $(this).bind('history', fn); 66 $.fn.historyadd = function(fn) { 67 $(this).bind('historyadd', fn);
|
/external/clang/test/SemaCXX/ |
decltype.cpp | 24 auto call(F&& fn) -> decltype(fn(T())) { function in struct:Future 25 return fn(T()); 29 auto then(F&& fn) -> decltype(call(fn)) 31 return fn(T());
|
/external/doclava/res/assets/templates/assets/ |
jquery-history.js | 62 $.fn.history = function(fn) { 63 $(this).bind('history', fn); 66 $.fn.historyadd = function(fn) { 67 $(this).bind('historyadd', fn);
|
/frameworks/minikin/app/ |
HyphTool.cpp | 14 Hyphenator* loadHybFile(const char* fn, int minPrefix, int minSuffix) { 16 int status = stat(fn, &statbuf); 18 fprintf(stderr, "error opening %s\n", fn); 22 FILE* f = fopen(fn, "rb"); 24 fprintf(stderr, "error opening %s\n", fn); 31 fprintf(stderr, "error reading %s\n", fn);
|