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

<<11121314151617181920>>

  /external/selinux/libsepol/include/sepol/
nodes.h 41 int (*fn) (const sepol_node_t * node,
ports.h 41 int (*fn) (const sepol_port_t * port,
  /external/skia/src/core/
SkExecutor.cpp 52 std::function<void(void)> fn = std::move(list->front()); local
54 return fn;
57 std::function<void(void)> fn = std::move(list->back()); local
59 return fn;
  /external/skqp/src/core/
SkExecutor.cpp 52 std::function<void(void)> fn = std::move(list->front()); local
54 return fn;
57 std::function<void(void)> fn = std::move(list->back()); local
59 return fn;
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
CalcSpillWeights.h 69 virtual bool runOnMachineFunction(MachineFunction &fn);
  /external/swiftshader/third_party/llvm-7.0/llvm/test/Bindings/OCaml/
executionengine.ml 31 let fn = define_function "getglobal" (function_type i32_type [||]) m in
32 let b = builder_at_end (global_context ()) (entry_block fn) in
35 fn
38 let fn = define_function "plus" (function_type i32_type [| i32_type;
40 let b = builder_at_end (global_context ()) (entry_block fn) in
41 let add = build_add (param fn 0) (param fn 1) "sum" b in
43 fn
  /external/tensorflow/tensorflow/contrib/opt/python/training/
multitask_optimizer_wrapper.py 40 def _get_wrapper(fn, opt):
45 with ops.control_dependencies([fn(grad, *args, **kwargs)]):
107 fn = getattr(self._opt, name)
108 wrapper = _get_wrapper(fn, self._opt)
  /art/runtime/interpreter/
interpreter.cc 61 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
67 jresult = fn(soa.Env(), klass.get());
72 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
76 fn(soa.Env(), klass.get());
79 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
83 result->SetZ(fn(soa.Env(), klass.get()));
86 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
90 result->SetB(fn(soa.Env(), klass.get(), args[0]));
93 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
97 result->SetI(fn(soa.Env(), klass.get(), args[0]))
100 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
113 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
120 fntype* const fn = reinterpret_cast<fntype*>(const_cast<void*>( local
130 fntype* const fn = local
138 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
145 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
156 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
167 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
176 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
192 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
203 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
210 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
224 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local
    [all...]
  /art/runtime/native/
dalvik_system_VMStack.cc 42 T fn)
47 trace = fn(soa.Self(), soa);
69 trace = fn(thread, soa);
85 auto fn = [](Thread* thread, const ScopedFastNativeObjectAccess& soaa) local
89 jobject trace = GetThreadStack(soa, javaThread, fn);
152 auto fn = [](Thread* thread, const ScopedFastNativeObjectAccess& soaa) local
156 jobject trace = GetThreadStack(soa, javaThread, fn);
165 auto fn = [](Thread* thread, const ScopedFastNativeObjectAccess& soaa) local
169 return GetThreadStack(soa, javaThread, fn);
  /external/libffi/src/frv/
ffi.c 130 void (*fn)(void));
133 void (*fn)(void),
158 cif->flags, ecif.rvalue, fn);
256 unsigned long fn = (long) ffi_closure_eabi; local
263 fn = (unsigned long) ffi_closure_eabi;
268 tramp[2] = 0x8cfc0000 + (fn & 0xffff); /* setlos lo(fn), gr6 */
270 tramp[4] = 0x8cf80000 + (fn >> 16); /* sethi hi(fn), gr6 */
275 tramp[0] = 0x8cfc0000 + (fn & 0xffff); /* setlos lo(fn), gr6 *
    [all...]
  /external/perfetto/src/traced/probes/power/
android_power_data_source.cc 57 void* fn = dlsym(*handle_, "GetBatteryCounter"); local
58 if (!fn) {
62 get_battery_counter_ = reinterpret_cast<decltype(get_battery_counter_)>(fn);
64 fn = dlsym(*handle_, "GetAvailableRails");
65 if (!fn) {
69 get_available_rails_ = reinterpret_cast<decltype(get_available_rails_)>(fn);
71 fn = dlsym(*handle_, "GetRailEnergyData");
72 if (!fn) {
77 reinterpret_cast<decltype(get_rail_energy_data_)>(fn);
  /external/python/cpython2/Lib/ctypes/macholib/
dyld.py 137 def framework_find(fn, executable_path=None, env=None):
147 return dyld_find(fn, executable_path=executable_path, env=env)
150 fmwk_index = fn.rfind('.framework')
152 fmwk_index = len(fn)
153 fn += '.framework'
154 fn = os.path.join(fn, os.path.basename(fn[:fmwk_index]))
156 return dyld_find(fn, executable_path=executable_path, env=env)
  /external/python/cpython2/Modules/_ctypes/libffi/src/frv/
ffi.c 130 void (*fn)(void));
133 void (*fn)(void),
158 cif->flags, ecif.rvalue, fn);
256 unsigned long fn = (long) ffi_closure_eabi; local
263 fn = (unsigned long) ffi_closure_eabi;
268 tramp[2] = 0x8cfc0000 + (fn & 0xffff); /* setlos lo(fn), gr6 */
270 tramp[4] = 0x8cf80000 + (fn >> 16); /* sethi hi(fn), gr6 */
275 tramp[0] = 0x8cfc0000 + (fn & 0xffff); /* setlos lo(fn), gr6 *
    [all...]
  /external/python/cpython3/Lib/ctypes/macholib/
dyld.py 129 def framework_find(fn, executable_path=None, env=None):
140 return dyld_find(fn, executable_path=executable_path, env=env)
143 fmwk_index = fn.rfind('.framework')
145 fmwk_index = len(fn)
146 fn += '.framework'
147 fn = os.path.join(fn, os.path.basename(fn[:fmwk_index]))
149 return dyld_find(fn, executable_path=executable_path, env=env)
  /external/tensorflow/tensorflow/compiler/xla/service/
tuple_points_to_analysis.h 122 // Call fn(index, buflist) for every subshape index.
123 template <typename Fn>
124 void ForEachElement(const Fn& fn) const {
125 tree_.ForEachElement([&fn](const ShapeIndex& index, const Elem& elem) {
126 fn(index, elem.buffers);
129 template <typename Fn>
130 void ForEachMutableElement(const Fn& fn) {
131 tree_.ForEachMutableElement([&fn](const ShapeIndex& index, Elem* elem)
    [all...]
  /external/llvm/test/Bindings/OCaml/
core.ml 577 let fn = define_function "use_function" ty m in var
578 let b = builder_at_end context (entry_block fn) in
580 let p1 = param fn 0 in
581 let p2 = param fn 1 in
604 let fn = define_function "user_function" ty m in var
605 let b = builder_at_end context (entry_block fn) in
607 let p1 = param fn 0 in
608 let p2 = param fn 1 in
644 let fn = declare_function "Fn1" ty m in var
645 insist (pointer_type ty = type_of fn);
659 let fn = declare_function "Fn2" ty m in var
665 let fn = define_function "Fn3" ty m in var
673 let fn = define_function "Fn4" ty m in var
687 let fn = define_function "Fn5" ty m in var
696 let fn = define_function "Fn6" ty m in var
783 let fn = declare_function "X" ty m in var
791 let fn = declare_function "X2" ty m in var
796 let fn = declare_function "X3" ty m in var
806 let fn = define_function "X4" ty m in var
814 let fn = define_function "X5" ty m in var
887 let fn = define_function "BuilderParent" fty m in var
914 let fn = define_function "BuilderParent" fty m in var
932 let fn = declare_function "X6" fty m in var
943 let fn = declare_function "XA6" fty m in var
951 let fn = define_function "X7" fty m in var
1443 let fn = define_function "FunctionPassManager" fty m in var
    [all...]
  /external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
vmcore.ml 495 let fn = define_function "use_function" ty m in var
496 let b = builder_at_end context (entry_block fn) in
498 let p1 = param fn 0 in
499 let p2 = param fn 1 in
522 let fn = define_function "user_function" ty m in var
523 let b = builder_at_end context (entry_block fn) in
525 let p1 = param fn 0 in
526 let p2 = param fn 1 in
561 let fn = declare_function "Fn1" ty m in var
562 insist (pointer_type ty = type_of fn);
576 let fn = declare_function "Fn2" ty m in var
582 let fn = define_function "Fn3" ty m in var
590 let fn = define_function "Fn4" ty m in var
604 let fn = define_function "Fn5" ty m in var
613 let fn = define_function "Fn6" ty m in var
700 let fn = declare_function "X" ty m in var
708 let fn = declare_function "X2" ty m in var
713 let fn = declare_function "X3" ty m in var
723 let fn = define_function "X4" ty m in var
731 let fn = define_function "X5" ty m in var
813 let fn = define_function "BuilderParent" fty m in var
831 let fn = declare_function "X6" fty m in var
842 let fn = declare_function "XA6" fty m in var
850 let fn = define_function "X7" fty m in var
1297 let fn = define_function "FunctionPassManager" fty m in var
    [all...]
  /external/tensorflow/tensorflow/python/data/experimental/kernel_tests/
map_defun_op_test.py 73 def fn(x): function in function:MapDefunTest.testMapDefunMismatchedTypes
78 r = map_defun.map_defun(fn, [elems], [dtypes.int32], [()])[0]
86 def fn(x): function in function:MapDefunTest.testMapDefunReduceDim
91 r = map_defun.map_defun(fn, [elems], [dtypes.int32], [()])[0]
98 def fn(x): function in function:MapDefunTest.testMapDefunMultipleOutputs
103 r = map_defun.map_defun(fn, [elems], [dtypes.int32, dtypes.float64], [(2,),
111 def fn(x): function in function:MapDefunTest.testMapDefunShapeInference
116 result = map_defun.map_defun(fn, [elems], [dtypes.int32], [(2,)])[0]
122 def fn(x): function in function:MapDefunTest.testMapDefunPartialShapeInference
126 result = map_defun.map_defun(fn, [elems], [dtypes.int32], [(2,)]
135 def fn(x, y): function in function:MapDefunTest.testMapDefunRaisesErrorOnRuntimeShapeMismatch
151 def fn(x): function in function:MapDefunTest.testMapDefunRaisesDefunError
265 def fn(x): function in function:MapDefunTest.testMapDefunWithCapturedInputs
277 def fn(x): function in function:MapDefunTest.testMapDefunWithVariantTensor
302 def fn(x): function in function:MapDefunTest.testMapDefunWithVariantTensorAsCaptured
319 def fn(x): function in function:MapDefunTest.testMapDefunWithStrTensor
    [all...]
  /art/openjdkjvmti/
events-inl.h 93 #define FORALL_EVENT_TYPES(fn) \
94 fn(VMInit, ArtJvmtiEvent::kVmInit) \
95 fn(VMDeath, ArtJvmtiEvent::kVmDeath) \
96 fn(ThreadStart, ArtJvmtiEvent::kThreadStart) \
97 fn(ThreadEnd, ArtJvmtiEvent::kThreadEnd) \
98 fn(ClassFileLoadHook, ArtJvmtiEvent::kClassFileLoadHookRetransformable) \
99 fn(ClassFileLoadHook, ArtJvmtiEvent::kClassFileLoadHookNonRetransformable) \
100 fn(ClassLoad, ArtJvmtiEvent::kClassLoad) \
101 fn(ClassPrepare, ArtJvmtiEvent::kClassPrepare) \
102 fn(VMStart, ArtJvmtiEvent::kVmStart)
    [all...]
  /external/python/cpython2/Lib/test/
test_socketserver.py 100 for fn in self.test_files:
102 os.remove(fn)
116 fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
121 if fn[1] == ':':
122 fn = fn[2:]
123 if fn[0] in (os.sep, os.altsep):
124 fn = fn[1:]
126 fn = fn.replace(os.sep, os.altsep
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64-inl.h 240 #define DEFINE_FUNCTION(FN, REGTYPE, REG, OP) \
241 void TurboAssembler::FN(const REGTYPE REG, const MemOperand& addr) { \
248 #define DEFINE_FUNCTION(FN, REGTYPE, REG, REG2, OP) \
249 void TurboAssembler::FN(const REGTYPE REG, const REGTYPE REG2, \
257 #define DECLARE_FUNCTION(FN, OP) \
258 void TurboAssembler::FN(const Register& rt, const Register& rn) { \
265 #define DECLARE_FUNCTION(FN, OP) \
266 void MacroAssembler::FN(const Register& rs, const Register& rt, \
482 void TurboAssembler::Fabs(const VRegister& fd, const VRegister& fn) {
484 fabs(fd, fn);
    [all...]
  /art/disassembler/
disassembler.h 53 ThreadOffsetNameFunction fn)
54 : thread_offset_name_function_(fn),
  /art/libartbase/base/
systrace.h 55 template <typename Fn>
56 explicit ScopedTrace(Fn fn) {
58 ATraceBegin(fn().c_str());
  /bionic/libc/arch-arm64/bionic/
__bionic_clone.S 31 // pid_t __bionic_clone(int flags, void* child_stack, pid_t* parent_tid, void* tls, pid_t* child_tid, int (*fn)(void*), void* arg);
34 # Push 'fn' and 'arg' onto the child stack.
56 # Call __start_thread with the 'fn' and 'arg' we stored on the child stack.
  /bionic/libc/arch-x86_64/bionic/
__bionic_clone.S 31 // pid_t __bionic_clone(int flags, void* child_stack, pid_t* parent_tid, void* tls, pid_t* child_tid, int (*fn)(void*), void* arg);
33 # Copy 'fn' and 'arg' onto the child stack.
34 movq %r9, -16(%rsi) # fn
68 popq %rdi # fn

Completed in 2739 milliseconds

<<11121314151617181920>>