HomeSort by relevance Sort by last modified time
    Searched refs:fn (Results 201 - 225 of 1690) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/strace/tests-m32/
clone_parent.c 50 # define clone(fn, child_stack, flags, arg) \
51 __clone2(fn, child_stack, child_stack_size, flags, arg)
  /external/strace/tests-mx32/
clone_parent.c 50 # define clone(fn, child_stack, flags, arg) \
51 __clone2(fn, child_stack, child_stack_size, flags, arg)
  /external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
analysis.ml 23 let fn = define_function "valid_fn" fty m in var
24 let at_entry = builder_at_end context (entry_block fn) in
34 if not (verify_function fn) then bomb "valid function failed verification!";
46 if verify_function fn then bomb "invalid function passed verification!";
  /external/swiftshader/third_party/SPIRV-Tools/test/opt/
function_utils.h 44 const spvtools::opt::Function* fn, uint32_t id) {
45 for (const spvtools::opt::BasicBlock& bb : *fn) {
  /external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/apollo3/
captured_data_to_wav.py 27 def new_data_to_array(fn):
29 with open(fn) as f:
  /external/tensorflow/tensorflow/python/autograph/pyct/testing/
codegen_test.py 34 fn = compiler.ast_to_object(node)
36 fn, 'Generated invalid AST that could not convert to source.')
  /external/tensorflow/tensorflow/python/data/experimental/ops/
map_defun.py 26 def map_defun(fn,
34 fn: A function (`function.defun`) that takes a list of tensors and returns
61 concrete_fn = fn._get_concrete_function_internal() # pylint: disable=protected-access
  /external/tensorflow/tensorflow/python/kernel_tests/
reduce_benchmark_test.py 58 def fn(): function in function:ReduceBenchmarks.benchmark_reduce_sum_grad_eager
61 self._run(fn, 10000)
67 def fn(): function in function:ReduceBenchmarks.benchmark_reduce_sum_grad_eager_cpu
70 self._run(fn, 10000)
83 def fn(): function in function:ReduceBenchmarks.benchmark_reduce_sum_grad_graph
86 self._run(fn, 10000)
100 def fn(): function in function:ReduceBenchmarks.benchmark_reduce_sum_grad_graph_cpu
103 self._run(fn, 10000)
  /external/tensorflow/tensorflow/python/util/
tf_should_use.py 169 def should_use_result(fn):
187 fn: The function to wrap.
193 return _add_should_use_warning(fn(*args, **kwargs))
195 fn, wrapped, 'should_use_result',
196 ((fn.__doc__ or '') +
203 def must_use_result_or_fatal(fn):
221 fn: The function to wrap.
227 return _add_should_use_warning(fn(*args, **kwargs), fatal_error=True)
229 fn, wrapped, 'must_use_result_or_fatal',
230 ((fn.__doc__ or '')
    [all...]
function_utils_test.py 40 def fn(a, b): function in function:FnArgsTest.test_simple_function
42 self.assertEqual(('a', 'b'), function_utils.fn_args(fn))
65 def fn(a, test_arg): function in function:FnArgsTest.test_partial_function
67 return ValueError('partial fn does not work correctly')
70 wrapped_fn = functools.partial(fn, test_arg=123)
77 def fn(test_arg, a): function in function:FnArgsTest.test_partial_function_with_positional_args
79 return ValueError('partial fn does not work correctly')
82 wrapped_fn = functools.partial(fn, 123)
93 def fn(a, test_arg1, test_arg2): function in function:FnArgsTest.test_double_partial
98 wrapped_fn = functools.partial(fn, test_arg2=456
107 def fn(test_arg1, a, test_arg2): function in function:FnArgsTest.test_double_partial_with_positional_args_in_outer_layer
124 def fn(test_arg1, test_arg2, a): function in function:FnArgsTest.test_double_partial_with_positional_args_in_both_layers
166 def fn(self, **x): member in class:HasKwargsTest.test_bounded_method.FooHasKwargs
172 def fn(self, x): member in class:HasKwargsTest.test_bounded_method.FooHasNoKwargs
    [all...]
  /external/u-boot/test/py/tests/
test_dfu.py 199 def run_dfu_util(alt_setting, fn, up_dn_load_arg):
205 fn: The host-side file name to transfer.
213 cmd = ['dfu-util', '-a', alt_setting, up_dn_load_arg, fn]
219 def dfu_write(alt_setting, fn):
225 fn: The host-side file name to transfer.
231 run_dfu_util(alt_setting, fn, '-D')
233 def dfu_read(alt_setting, fn):
239 fn: The host-side file name to transfer.
246 if os.path.exists(fn):
247 os.remove(fn)
    [all...]
  /art/sigchainlib/
sigchain_dummy.cc 44 bool (*fn)(int, siginfo_t*, void*) ATTRIBUTE_UNUSED) {
  /bionic/libc/arch-mips/bionic/
__bionic_clone.S 33 // pid_t __bionic_clone(int flags, void* child_stack, pid_t* parent_tid, void* tls, pid_t* child_tid, int (*fn)(void*), void* arg);
41 lw $t0,20($sp) # fn
43 sw $t0,0($a1) # fn
60 lw $a0,0($sp) # fn
  /external/bcc/examples/networking/xdp/
xdp_drop_count.py 133 fn = b.load_func("xdp_prog1", mode) variable
136 b.attach_xdp(device, fn, flags)
142 ip.tc("add-filter", "bpf", idx, ":1", fd=fn.fd, name=fn.name,
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
p1.cpp 12 typedef void Fn();
13 Fn ar4[10]; // expected-error {{array of functions}}
15 struct Abstract { virtual void fn() = 0; }; // expected-note {{pure virtual}}
  /external/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
Main.java 56 String fn = args[++i]; local
58 doc = new PrintWriter(new FileWriter(fn));
60 jdi = new PrintWriter(new FileWriter(fn));
62 include = new PrintWriter(new FileWriter(fn));
  /external/python/cpython3/Doc/includes/
email-read-alternative.py 52 fn = part.get_filename() variable
53 if fn:
71 for fn in partfiles.values():
72 os.remove(fn)
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
ProcessImplicitDefs.h 46 virtual bool runOnMachineFunction(MachineFunction &fn);
  /external/tensorflow/tensorflow/compiler/aot/
benchmark.h 62 // Benchmark runs a benchmark of the function `fn`, collecting stats in `stats`.
64 void Benchmark(const Options& options, const BenchmarkFn& fn, Stats* stats);
  /external/tensorflow/tensorflow/compiler/xla/python/
custom_call_for_test.pyx 17 cdef register_custom_call_target(fn_name, void* fn):
19 cpu_custom_call_targets[fn_name] = PyCapsule_New(fn, name, NULL)
  /external/tensorflow/tensorflow/core/framework/
run_handler.h 80 void ScheduleInterOpClosure(std::function<void()> fn);
  /external/tensorflow/tensorflow/core/kernels/data/
unbounded_thread_pool.cc 32 std::function<void()> fn) override {
33 return pool_->RunOnPooledThread(std::move(fn));
100 std::function<void()> fn) {
107 work_queue_.push_back({std::move(fn), join_notification});
  /external/u-boot/drivers/pinctrl/meson/
pinctrl-meson.h 109 #define FUNCTION(fn) \
111 .name = #fn, \
112 .groups = fn ## _groups, \
113 .num_groups = ARRAY_SIZE(fn ## _groups), \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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),
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerRegistry.h 90 CheckerInfo(InitializationFunction fn, StringRef name, StringRef desc)
91 : Initialize(fn), FullName(name), Desc(desc) {}
105 void addChecker(InitializationFunction fn, StringRef fullName,

Completed in 5418 milliseconds

1 2 3 4 5 6 7 891011>>