HomeSort by relevance Sort by last modified time
    Searched refs:fn (Results 501 - 525 of 2854) sorted by null

<<21222324252627282930>>

  /prebuilts/go/darwin-x86/src/runtime/cgo/
libcgo.h 37 void (*fn)(void); member in struct:ThreadStart
66 * Call fn in the 6c world.
68 void crosscall_amd64(void (*fn)(void));
71 * Call fn in the 8c world.
73 void crosscall_386(void (*fn)(void));
  /prebuilts/go/darwin-x86/src/runtime/
syscall_solaris.go 30 func syscall_sysvicall6(fn, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr) {
32 fn: fn,
43 func syscall_rawsysvicall6(fn, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr) {
45 fn: fn,
60 fn: uintptr(unsafe.Pointer(&libc_chdir)),
71 fn: uintptr(unsafe.Pointer(&libc_chroot)),
88 fn: uintptr(unsafe.Pointer(&libc_execve)),
105 fn: uintptr(unsafe.Pointer(&libc_fcntl))
    [all...]
stubs.go 23 // mcall switches from the g to the g0 stack and invokes fn(g),
26 // It is up to fn to arrange for that later execution, typically by recording
29 // fn must not return at all; typically it ends by calling schedule, to let the m
34 // This must NOT be go:noescape: if fn is a stack-allocated closure,
35 // fn puts g on a run queue, and g executes before fn returns, the
37 func mcall(fn func(*g))
39 // systemstack runs fn on a system stack.
42 // systemstack calls fn directly and returns.
45 // to the per-OS-thread stack, calls fn, and switches back
    [all...]
  /prebuilts/go/linux-x86/src/runtime/cgo/
libcgo.h 37 void (*fn)(void); member in struct:ThreadStart
66 * Call fn in the 6c world.
68 void crosscall_amd64(void (*fn)(void));
71 * Call fn in the 8c world.
73 void crosscall_386(void (*fn)(void));
  /prebuilts/go/linux-x86/src/runtime/
syscall_solaris.go 30 func syscall_sysvicall6(fn, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr) {
32 fn: fn,
43 func syscall_rawsysvicall6(fn, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr) {
45 fn: fn,
60 fn: uintptr(unsafe.Pointer(&libc_chdir)),
71 fn: uintptr(unsafe.Pointer(&libc_chroot)),
88 fn: uintptr(unsafe.Pointer(&libc_execve)),
105 fn: uintptr(unsafe.Pointer(&libc_fcntl))
    [all...]
stubs.go 23 // mcall switches from the g to the g0 stack and invokes fn(g),
26 // It is up to fn to arrange for that later execution, typically by recording
29 // fn must not return at all; typically it ends by calling schedule, to let the m
34 // This must NOT be go:noescape: if fn is a stack-allocated closure,
35 // fn puts g on a run queue, and g executes before fn returns, the
37 func mcall(fn func(*g))
39 // systemstack runs fn on a system stack.
42 // systemstack calls fn directly and returns.
45 // to the per-OS-thread stack, calls fn, and switches back
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fnmatch.py 15 def check_match(self, filename, pattern, should_match=1, fn=fnmatch):
17 self.assertTrue(fn(filename, pattern),
21 self.assertTrue(not fn(filename, pattern),
test_socketserver.py 82 for fn in self.test_files:
84 os.remove(fn)
98 fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
103 if fn[1] == ':':
104 fn = fn[2:]
105 if fn[0] in (os.sep, os.altsep):
106 fn = fn[1:]
108 fn = fn.replace(os.sep, os.altsep
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fnmatch.py 15 def check_match(self, filename, pattern, should_match=1, fn=fnmatch):
17 self.assertTrue(fn(filename, pattern),
21 self.assertTrue(not fn(filename, pattern),
test_socketserver.py 82 for fn in self.test_files:
84 os.remove(fn)
98 fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
103 if fn[1] == ':':
104 fn = fn[2:]
105 if fn[0] in (os.sep, os.altsep):
106 fn = fn[1:]
108 fn = fn.replace(os.sep, os.altsep
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
tlsnopic.s 11 .globl fn
12 .type fn,@function
13 fn: label
  /libcore/ojluni/src/main/java/java/util/concurrent/
CompletableFuture.java 576 Function<? super T,? extends V> fn; field in class:CompletableFuture.UniApply
579 Function<? super T,? extends V> fn) {
580 super(executor, dep, src); this.fn = fn;
585 !d.uniApply(a = src, fn, mode > 0 ? null : this))
587 dep = null; src = null; fn = null;
632 Consumer<? super T> fn; field in class:CompletableFuture.UniAccept
634 CompletableFuture<T> src, Consumer<? super T> fn) {
635 super(executor, dep, src); this.fn = fn;
687 Runnable fn; field in class:CompletableFuture.UniRun
735 BiConsumer<? super T, ? super Throwable> fn; field in class:CompletableFuture.UniWhenComplete
798 BiFunction<? super T, Throwable, ? extends V> fn; field in class:CompletableFuture.UniHandle
854 Function<? super Throwable, ? extends T> fn; field in class:CompletableFuture.UniExceptionally
951 Function<? super T, ? extends CompletionStage<V>> fn; field in class:CompletableFuture.UniCompose
1094 BiFunction<? super T,? super U,? extends V> fn; field in class:CompletableFuture.BiApply
1165 BiConsumer<? super T,? super U> fn; field in class:CompletableFuture.BiAccept
1237 Runnable fn; field in class:CompletableFuture.BiRun
1373 Function<? super T,? extends V> fn; field in class:CompletableFuture.OrApply
1437 Consumer<? super T> fn; field in class:CompletableFuture.OrAccept
1501 Runnable fn; field in class:CompletableFuture.OrRun
1610 CompletableFuture<T> dep; Supplier<? extends T> fn; field in class:CompletableFuture.AsyncSupply
1646 CompletableFuture<Void> dep; Runnable fn; field in class:CompletableFuture.AsyncRun
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
compile.go 69 p.fn(f)
143 fn func(*Func)
332 {name: "early phielim", fn: phielim},
333 {name: "early copyelim", fn: copyelim},
334 {name: "early deadcode", fn: deadcode}, // remove generated dead code to avoid doing pointless work during opt
335 {name: "short circuit", fn: shortcircuit},
336 {name: "decompose user", fn: decomposeUser, required: true},
337 {name: "opt", fn: opt, required: true}, // TODO: split required rules and optimizing rules
338 {name: "zero arg cse", fn: zcse, required: true}, // required to merge OpSB values
339 {name: "opt deadcode", fn: deadcode, required: true}, // remove any blocks orphaned during op
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
compile.go 69 p.fn(f)
143 fn func(*Func)
332 {name: "early phielim", fn: phielim},
333 {name: "early copyelim", fn: copyelim},
334 {name: "early deadcode", fn: deadcode}, // remove generated dead code to avoid doing pointless work during opt
335 {name: "short circuit", fn: shortcircuit},
336 {name: "decompose user", fn: decomposeUser, required: true},
337 {name: "opt", fn: opt, required: true}, // TODO: split required rules and optimizing rules
338 {name: "zero arg cse", fn: zcse, required: true}, // required to merge OpSB values
339 {name: "opt deadcode", fn: deadcode, required: true}, // remove any blocks orphaned during op
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_functoolsmodule.c 94 PyObject *fn; member in struct:__anon5395
127 pto->fn = func;
154 Py_XDECREF(pto->fn);
167 assert (PyCallable_Check(pto->fn));
201 ret = PyObject_Call(pto->fn, argappl, kwappl);
210 Py_VISIT(pto->fn);
223 {"func", T_OBJECT, OFF(fn), READONLY,
283 return Py_BuildValue("O(O)(OOOO)", Py_TYPE(pto), pto->fn, pto->fn,
291 PyObject *fn, *fnargs, *kw, *dict; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_socketserver.py 77 for fn in self.test_files:
79 os.remove(fn)
93 fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
98 if fn[1] == ':':
99 fn = fn[2:]
100 if fn[0] in (os.sep, os.altsep):
101 fn = fn[1:]
103 fn = fn.replace(os.sep, os.altsep)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_functoolsmodule.c 94 PyObject *fn; member in struct:__anon5705
127 pto->fn = func;
158 Py_XDECREF(pto->fn);
171 assert (PyCallable_Check(pto->fn));
205 ret = PyObject_Call(pto->fn, argappl, kwappl);
214 Py_VISIT(pto->fn);
227 {"func", T_OBJECT, OFF(fn), READONLY,
287 return Py_BuildValue("O(O)(OOOO)", Py_TYPE(pto), pto->fn, pto->fn,
295 PyObject *fn, *fnargs, *kw, *dict; local
    [all...]
  /external/skia/src/core/
SkColorSpaceXform_A2B.cpp 151 SkColorSpaceTransferFn fn; local
152 SkAssertResult(named_to_parametric(&fn, e.gammaNamed()));
153 this->addTransferFns(fn, currentChannels);
173 SkColorSpaceTransferFn fn; local
174 SkAssertResult(gamma_to_parametric(&fn, gammas, channel));
175 this->addTransferFn(fn, channel);
240 SkColorSpaceTransferFn fn; local
241 SkAssertResult(gamma_to_parametric(&fn, gammas, channel));
242 this->addTransferFn(fn.invert(), channel);
250 void SkColorSpaceXform_A2B::addTransferFns(const SkColorSpaceTransferFn& fn, int channelCount)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_socketserver.py 82 for fn in self.test_files:
84 os.remove(fn)
98 fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
103 if fn[1] == ':':
104 fn = fn[2:]
105 if fn[0] in (os.sep, os.altsep):
106 fn = fn[1:]
108 fn = fn.replace(os.sep, os.altsep
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_socketserver.py 82 for fn in self.test_files:
84 os.remove(fn)
98 fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
103 if fn[1] == ':':
104 fn = fn[2:]
105 if fn[0] in (os.sep, os.altsep):
106 fn = fn[1:]
108 fn = fn.replace(os.sep, os.altsep
    [all...]
  /external/okhttp/website/static/
bootstrap.min.js 6 !function(e){"use strict";e(function(){e.support.transition=function(){var e=function(){var e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},n;for(n in t)if(e.style[n]!==undefined)return t[n]}();return e&&{end:e}}()})}(window.jQuery),!function(e){"use strict";var t='[data-dismiss="alert"]',n=function(n){e(n).on("click",t,this.close)};n.prototype.close=function(t){function s(){i.trigger("closed").remove()}var n=e(this),r=n.attr("data-target"),i;r||(r=n.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,"")),i=e(r),t&&t.preventDefault(),i.length||(i=n.hasClass("alert")?n:n.parent()),i.trigger(t=e.Event("close"));if(t.isDefaultPrevented())return;i.removeClass("in"),e.support.transition&&i.hasClass("fade")?i.on(e.support.transition.end,s):s()};var r=e.fn.alert;e.fn.alert=function(t){return this.each(function(){var r=e(this),i=r.data("alert");i||r.data("alert",i=new n(this)),typeof t=="string"&&i[t].call(r)})},e.fn.alert.Constructor=n,e.fn.alert.noConflict=function(){return e.fn.alert=r,this},e(document).on("click.alert.data-api",t,n.prototype.close)}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.button.defaults,n)};t.prototype.setState=function(e){var t="disabled",n=this.$element,r=n.data(),i=n.is("input")?"val":"html";e+="Text",r.resetText||n.data("resetText",n[i]()),n[i](r[e]||this.options[e]),setTimeout(function(){e=="loadingText"?n.addClass(t).attr(t,t):n.removeClass(t).removeAttr(t)},0)},t.prototype.toggle=function(){var e=this.$element.closest('[data-toggle="buttons-radio"]');e&&e.find(".active").removeClass("active"),this.$element.toggleClass("active")};var n=e.fn.button;e.fn.button=function(n){return this.each(function(){var r=e(this),i=r.data("button"),s=typeof n=="object"&&n;i||r.data("button",i=new t(this,s)),n=="toggle"?i.toggle():n&&i.setState(n)})},e.fn.button.defaults={loadingText:"loading..."},e.fn.button.Constructor=t,e.fn.button.noConflict=function(){return e.fn.button=n,this},e(document).on(" (…)
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/
main.c 55 * the 'fn' function to 'v' and exits if the value is NULL.
57 #define CHECK_NULL(v, fn) \
59 v = fn; \
232 if (keys[ROT_KEY].fn == NULL) {
237 if (keys[TRUSTED_WORLD_KEY].fn == NULL) {
242 if (keys[NON_TRUSTED_WORLD_KEY].fn == NULL) {
247 if (keys[BL31_KEY].fn == NULL) {
252 if (keys[BL33_KEY].fn == NULL) {
257 if (bl30_present && (keys[BL30_KEY].fn == NULL)) {
262 if (bl32_present && (keys[BL32_KEY].fn == NULL))
    [all...]
  /external/valgrind/mpi/
libmpiwrap.c 1063 OrigFn fn; local
1101 OrigFn fn; local
1128 OrigFn fn; local
1378 OrigFn fn; local
1423 OrigFn fn; local
1451 OrigFn fn; local
1480 OrigFn fn; local
1513 OrigFn fn; local
1556 OrigFn fn; local
1584 OrigFn fn; local
1632 OrigFn fn; local
1659 OrigFn fn; local
1680 OrigFn fn; local
1717 OrigFn fn; local
1763 OrigFn fn; local
1778 OrigFn fn; local
1811 OrigFn fn; local
1860 OrigFn fn; local
1915 OrigFn fn; local
1958 OrigFn fn; local
1994 OrigFn fn; local
2029 OrigFn fn; local
2062 OrigFn fn; local
2090 OrigFn fn; local
2113 OrigFn fn; local
2141 OrigFn fn; local
2156 OrigFn fn; local
2171 OrigFn fn; local
2186 OrigFn fn; local
2203 OrigFn fn; local
2234 OrigFn fn; local
2260 OrigFn fn; local
2283 OrigFn fn; local
2299 OrigFn fn; local
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
test_zipio.py 119 fn = os.path.join(TESTDATA, 'symlink')
120 os.symlink('test.txt', fn)
122 self.assertTrue(zipio.islink(fn))
125 os.unlink(fn)
140 fn = os.path.join(TESTDATA, 'symlink')
141 os.symlink('test.txt', fn)
143 self.assertEqual(zipio.readlink(fn), 'test.txt')
146 os.unlink(fn)
156 fn = os.path.join(TESTDATA, 'test.txt')
157 self.assertEqual(os.path.getmtime(fn), zipio.getmtime(fn)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
mailerdaemon.py 166 files = filter(lambda fn, pat=pat: pat.match(fn) is not None, os.listdir('.'))
169 for fn in files:
171 fp = open(fn)
174 print '%s\t%-40s\t'%(fn, sender[1]),
181 os.rename(fn, ','+fn)
182 ## os.unlink(fn)
203 errorfirst[e] = '%s (%s)' % (fn, date)
206 errorlast[e] = '%s (%s)' % (fn, date)
    [all...]

Completed in 920 milliseconds

<<21222324252627282930>>