HomeSort by relevance Sort by last modified time
    Searched refs:fn (Results 651 - 675 of 3045) sorted by null

<<21222324252627282930>>

  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_linux_ppc64x.c 56 extern void crosscall_ppc64(void (*fn)(void), void *g);
69 crosscall_ppc64(ts.fn, (void*)ts.g);
gcc_linux_s390x.c 54 extern void crosscall_s390x(void (*fn)(void), void *g);
67 crosscall_s390x(ts.fn, (void*)ts.g);
gcc_netbsd_arm.c 56 extern void crosscall_arm1(void (*fn)(void), void (*setg_gcc)(void*), void *g);
77 crosscall_arm1(ts.fn, setg_gcc, (void*)ts.g);
  /prebuilts/go/linux-x86/src/runtime/
stubs32.go 14 func call16(fn, arg unsafe.Pointer, n, retoffset uint32)
  /prebuilts/go/linux-x86/test/fixedbugs/bug133.dir/
bug2.go 12 func fn(p *T2) int { func
  /system/core/adb/
adb_utils.h 75 template <typename Fn>
76 void PopAll(Fn fn) {
87 fn(t);
  /system/netd/server/
NetlinkListener.h 42 // Deliver future messages with nlmsghdr.nlmsg_type == type to fn.
46 // subscribe() and join() must not be called from the stack of fn().
47 virtual netdutils::Status subscribe(uint16_t type, const DispatchFn& fn) = 0;
79 netdutils::Status subscribe(uint16_t type, const DispatchFn& fn) override;
  /test/vts/utils/python/io/
file_util.py 35 for fn in filenames:
36 if fn == filename:
  /external/python/cpython3/Lib/concurrent/futures/
process.py 116 def __init__(self, future, fn, args, kwargs):
118 self.fn = fn
129 def __init__(self, work_id, fn, args, kwargs):
131 self.fn = fn
144 def _process_chunk(fn, chunk):
153 return [fn(*args) for args in chunk]
175 r = call_item.fn(*call_item.args, **call_item.kwargs)
212 work_item.fn,
    [all...]
  /external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
executionengine.ml 24 let fn =
29 let b = builder_at_end (global_context ()) (entry_block fn) in
31 fn
34 let fn = define_function "plus" (function_type i32_type [| i32_type;
36 let b = builder_at_end (global_context ()) (entry_block fn) in
37 let add = build_add (param fn 0) (param fn 1) "sum" b in
  /prebuilts/go/darwin-x86/src/cmd/fix/
main_test.go 16 Fn func(*ast.File) bool
23 func addTestCases(t []testCase, fn func(*ast.File) bool) {
24 // Fill in fn to avoid repetition in definitions.
25 if fn != nil {
27 if t[i].Fn == nil {
28 t[i].Fn = fn
37 func parseFixPrint(t *testing.T, fn func(*ast.File) bool, desc, in string, mustBeGofmt bool) (out string, fixed, ok bool) {
56 if fn == nil {
63 fixed = fn(file
    [all...]
  /prebuilts/go/linux-x86/src/cmd/fix/
main_test.go 16 Fn func(*ast.File) bool
23 func addTestCases(t []testCase, fn func(*ast.File) bool) {
24 // Fill in fn to avoid repetition in definitions.
25 if fn != nil {
27 if t[i].Fn == nil {
28 t[i].Fn = fn
37 func parseFixPrint(t *testing.T, fn func(*ast.File) bool, desc, in string, mustBeGofmt bool) (out string, fixed, ok bool) {
56 if fn == nil {
63 fixed = fn(file
    [all...]
  /bionic/libc/bionic/
vdso.cpp 38 __libc_globals->vdso[VDSO_CLOCK_GETTIME].fn);
47 __libc_globals->vdso[VDSO_CLOCK_GETRES].fn);
56 __libc_globals->vdso[VDSO_GETTIMEOFDAY].fn);
64 auto vdso_time = reinterpret_cast<decltype(&time)>(__libc_globals->vdso[VDSO_TIME].fn);
135 vdso[j].fn = reinterpret_cast<void*>(vdso_addr + symtab[i].st_value);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
sortperf.py 22 fn = os.path.join(td, "rr%06d" % n)
24 fp = open(fn, "rb")
30 fp = open(fn, "wb")
37 os.unlink(fn)
41 print "can't write", fn, ":", msg
test_ntpath.py 8 def tester(fn, wantResult):
9 fn = fn.replace("\\", "\\\\")
10 gotResult = eval(fn)
13 %(str(fn), str(wantResult), str(gotResult))
  /external/python/cpython2/Lib/test/
sortperf.py 22 fn = os.path.join(td, "rr%06d" % n)
24 fp = open(fn, "rb")
30 fp = open(fn, "wb")
37 os.unlink(fn)
41 print "can't write", fn, ":", msg
  /external/python/cpython3/Lib/test/
sortperf.py 22 fn = os.path.join(td, "rr%06d" % n)
24 fp = open(fn, "rb")
30 fp = open(fn, "wb")
37 os.unlink(fn)
41 print("can't write", fn, ":", msg)
  /external/skia/infra/bots/recipe_modules/run/
api.py 53 def run_once(self, fn, *args, **kwargs):
54 if not fn.__name__ in self._already_ran:
55 self._already_ran[fn.__name__] = fn(*args, **kwargs)
56 return self._already_ran[fn.__name__]
  /external/skqp/infra/bots/recipe_modules/run/
api.py 54 def run_once(self, fn, *args, **kwargs):
55 if not fn.__name__ in self._already_ran:
56 self._already_ran[fn.__name__] = fn(*args, **kwargs)
57 return self._already_ran[fn.__name__]
  /external/tensorflow/tensorflow/python/grappler/
datasets_test.py 135 def _testTransformation(self, fn):
150 dataset = fn(dataset, test_case['tensor'], test_case['shape'])
163 def fn(dataset, tensor, shape): function in function:GrapplerTest.testConcatenate
167 self._testTransformation(fn)
171 def fn(dataset, tensor, shape): function in function:GrapplerTest.testPrefetch
175 self._testTransformation(fn)
179 def fn(dataset, tensor, shape): function in function:GrapplerTest.testRepeat
183 self._testTransformation(fn)
187 def fn(dataset, tensor, shape): function in function:GrapplerTest.testShuffle
191 self._testTransformation(fn)
195 def fn(dataset, tensor, shape): function in function:GrapplerTest.testCache
203 def fn(dataset, tensor, shape): function in function:GrapplerTest.testTake
211 def fn(dataset, tensor, shape): function in function:GrapplerTest.testSkip
219 def fn(dataset, tensor, shape): function in function:GrapplerTest.testShard
227 def fn(dataset, tensor, shape): function in function:GrapplerTest.testFilter
    [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/
constraints_test.py 44 fn = keras.constraints.get(name)
46 assert fn.__class__ == ref_fn.__class__
47 config = keras.constraints.serialize(fn)
48 fn = keras.constraints.deserialize(config)
49 assert fn.__class__ == ref_fn.__class__
  /external/v8/tools/testrunner/local/
pool.py 44 def Worker(fn, work_queue, done_queue, done,
57 done_queue.put(NormalResult(fn(*args, **kwargs)))
94 def imap_unordered(self, fn, gen,
96 """Maps function "fn" to items in generator "gen" on the worker processes
106 as additional argument to each call to fn.
117 p = Process(target=Worker, args=(fn,
  /hardware/nxp/secure_element/ls_client/src/
LsClient.cpp 42 static const char fn[] = "LSC_Start"; local
47 ALOGE("%s: LS script file is missing", fn);
49 ALOGD_IF(ese_debug_enabled, "%s: Exit; status=0x0%X", fn, status);
64 static const char fn[] = "LSC_doDownload"; local
72 ALOGE("%s: Thread creation failed", fn);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
sortperf.py 22 fn = os.path.join(td, "rr%06d" % n)
24 fp = open(fn, "rb")
30 fp = open(fn, "wb")
37 os.unlink(fn)
41 print "can't write", fn, ":", msg
test_ntpath.py 8 def tester(fn, wantResult):
9 fn = fn.replace("\\", "\\\\")
10 gotResult = eval(fn)
13 %(str(fn), str(wantResult), str(gotResult))

Completed in 530 milliseconds

<<21222324252627282930>>