/system/core/libunwindstack/ |
RegsX86_64.cpp | 72 void RegsX86_64::IterateRegisters(std::function<void(const char*, uint64_t)> fn) { 73 fn("rax", regs_[X86_64_REG_RAX]); 74 fn("rbx", regs_[X86_64_REG_RBX]); 75 fn("rcx", regs_[X86_64_REG_RCX]); 76 fn("rdx", regs_[X86_64_REG_RDX]); 77 fn("r8", regs_[X86_64_REG_R8]); 78 fn("r9", regs_[X86_64_REG_R9]); 79 fn("r10", regs_[X86_64_REG_R10]); 80 fn("r11", regs_[X86_64_REG_R11]); 81 fn("r12", regs_[X86_64_REG_R12]) [all...] |
/packages/apps/Nfc/nci/jni/ |
NfcTag.cpp | 143 static const char fn[] = "NfcTag::setDeactivationState"; local 148 << StringPrintf("%s: state=%u", fn, mActivationState); 161 static const char fn[] = "NfcTag::setActivationState"; local 165 << StringPrintf("%s: state=%u", fn, mActivationState); 227 static const char fn[] = "NfcTag::IsSameKovio"; local 228 DLOG_IF(INFO, nfc_debug_enabled) << StringPrintf("%s: enter", fn); 261 << StringPrintf("%s: exit, is same Kovio=%d", fn, rVal); 278 static const char fn[] = "NfcTag::discoverTechnologies (activation)"; local 279 DLOG_IF(INFO, nfc_debug_enabled) << StringPrintf("%s: enter", fn); 368 DLOG_IF(INFO, nfc_debug_enabled) << StringPrintf("%s: Kovio", fn); 411 static const char fn[] = "NfcTag::discoverTechnologies (discovery)"; local 536 static const char fn[] = "NfcTag::createNativeNfcTag"; local 606 static const char fn[] = "NfcTag::fillNativeNfcTagMembers1"; local 658 static const char fn[] = "NfcTag::fillNativeNfcTagMembers2"; local 682 static const char fn[] = "NfcTag::fillNativeNfcTagMembers3"; local 797 static const char fn[] = "NfcTag::fillNativeNfcTagMembers4"; local 932 static const char fn[] = "NfcTag::fillNativeNfcTagMembers5"; local 999 static const char fn[] = "NfcTag::isP2pDiscovered"; local 1025 static const char fn[] = "NfcTag::selectP2p"; local 1068 static const char fn[] = "NfcTag::resetTechnologies"; local 1091 static const char fn[] = "NfcTag::selectFirstTag"; local 1131 static const char fn[] = "NfcTag::getT1tMaxMessageSize"; local 1152 static const char fn[] = "NfcTag::calculateT1tMaxMessageSize"; local 1186 static const char fn[] = "NfcTag::isMifareUltralight"; local 1218 static const char fn[] = "NfcTag::isMifareDESFire"; local 1266 static const char fn[] = "NfcTag::isT2tNackResponse"; local 1302 static const char fn[] = "NfcTag::connectionEventHandler"; local 1413 static const char fn[] = "NfcTag::getTransceiveTimeout"; local 1435 static const char fn[] = "NfcTag::setTransceiveTimeout"; local 1465 static const char fn[] = "NfcTag::isInfineonMyDMove"; local 1493 static const char fn[] = "NfcTag::isKovioType2Tag"; local [all...] |
/external/kmod/libkmod/ |
libkmod.c | 54 const char *fn; member in struct:_index_files 57 [KMOD_INDEX_MODULES_DEP] = { .fn = "modules.dep", .prefix = "" }, 58 [KMOD_INDEX_MODULES_ALIAS] = { .fn = "modules.alias", .prefix = "alias " }, 59 [KMOD_INDEX_MODULES_SYMBOL] = { .fn = "modules.symbols", .prefix = "alias "}, 60 [KMOD_INDEX_MODULES_BUILTIN] = { .fn = "modules.builtin", .prefix = ""}, 80 const char *fn, const char *format, va_list args); 91 int priority, const char *file, int line, const char *fn, 100 ctx->log_fn(ctx->log_data, priority, file, line, fn, format, args); 107 const char *fn, const char *format, va_list args) 142 fprintf(fp, "libkmod: %s %s:%d %s: ", priname, file, line, fn); 438 char fn[PATH_MAX]; local 506 char fn[PATH_MAX]; local 569 char fn[PATH_MAX]; local 926 char fn[PATH_MAX]; local [all...] |
/external/tensorflow/tensorflow/core/lib/core/ |
threadpool.cc | 96 std::function<void(int64, int64)> fn) { 102 [&fn](Eigen::Index first, Eigen::Index last) { fn(first, last); }); 123 void ThreadPool::Schedule(std::function<void()> fn) { 124 CHECK(fn != nullptr); 125 impl_->Schedule(std::move(fn)); 129 std::function<void(int64, int64)> fn) { 130 impl_->ParallelFor(total, cost_per_unit, std::move(fn)); 135 const std::function<void(int64, int64, int)>& fn) { 137 [this, &fn](int64 start, int64 limit) [all...] |
/external/syslinux/com32/modules/ |
cptime.c | 116 void print_cp_result_long(char *fn, size_t bcnt, clock_t bc, clock_t ec, size_t bufsz, char do_verbose) 122 printf(" %zu B in %d ticks from '%s'\n", bcnt, (int)(ec - bc), fn); 127 } /* void print_cp_result_long(char *fn, size_t bcnt, clock_t bc, clock_t ec, size_t bufsz) */ 129 void print_cp_result_simple(char *fn, size_t bcnt, clock_t bc, clock_t ec, size_t bufsz, char do_verbose) 132 printf(" %zuB %dt %zux '%s'\n", bcnt, (int)(ec - bc), bufsz, fn); 133 } /* void print_cp_result_simple(char *fn, int bcnt, clock_t bc, clock_t ec, char do_verbose) */ 140 int time_copy(char *fn, char do_simple, char do_verbose, size_t ibufsz, off_t maxlen) 154 printf("Trying file '%s'\n", fn); 156 // fd = open(fn, O_RDONLY); 157 f = fopen(fn, "r") [all...] |
/prebuilts/go/darwin-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/ |
ast.go | 116 func (n *Name) Traverse(fn func(AST) bool) { 117 fn(n) 120 func (n *Name) Copy(fn func(AST) AST, skip func(AST) bool) AST { 124 return fn(n) 161 func (t *Typed) Traverse(fn func(AST) bool) { 162 if fn(t) { 163 t.Name.Traverse(fn) 164 t.Type.Traverse(fn) 168 func (t *Typed) Copy(fn func(AST) AST, skip func(AST) bool) AST { 172 name := t.Name.Copy(fn, skip [all...] |
/prebuilts/go/linux-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/ |
ast.go | 116 func (n *Name) Traverse(fn func(AST) bool) { 117 fn(n) 120 func (n *Name) Copy(fn func(AST) AST, skip func(AST) bool) AST { 124 return fn(n) 161 func (t *Typed) Traverse(fn func(AST) bool) { 162 if fn(t) { 163 t.Name.Traverse(fn) 164 t.Type.Traverse(fn) 168 func (t *Typed) Copy(fn func(AST) AST, skip func(AST) bool) AST { 172 name := t.Name.Copy(fn, skip [all...] |
/prebuilts/go/darwin-x86/src/cmd/vet/ |
tests.go | 83 func checkExample(fn *ast.FuncDecl, f *File, report reporter) { 84 fnName := fn.Name.Name 85 if params := fn.Type.Params; len(params.List) != 0 { 88 if results := fn.Type.Results; results != nil && len(results.List) != 0 { 142 func checkTest(fn *ast.FuncDecl, prefix string, report reporter) { 144 if fn.Type.Results != nil && len(fn.Type.Results.List) > 0 || 145 fn.Type.Params == nil || 146 len(fn.Type.Params.List) != 1 || 147 len(fn.Type.Params.List[0].Names) > 1 [all...] |
/prebuilts/go/linux-x86/src/cmd/vet/ |
tests.go | 83 func checkExample(fn *ast.FuncDecl, f *File, report reporter) { 84 fnName := fn.Name.Name 85 if params := fn.Type.Params; len(params.List) != 0 { 88 if results := fn.Type.Results; results != nil && len(results.List) != 0 { 142 func checkTest(fn *ast.FuncDecl, prefix string, report reporter) { 144 if fn.Type.Results != nil && len(fn.Type.Results.List) > 0 || 145 fn.Type.Params == nil || 146 len(fn.Type.Params.List) != 1 || 147 len(fn.Type.Params.List[0].Names) > 1 [all...] |
/external/valgrind/memcheck/tests/ |
cond_ld_st.c | 353 void do_test_case_steer ( void (*fn)(int,Bool,const TestCase*), 357 if (i == 0) { fn(i,isLd,tc); return; }; 359 if (i == 1) { fn(i,isLd,tc); return; }; 361 if (i == 2) { fn(i,isLd,tc); return; }; 363 if (i == 3) { fn(i,isLd,tc); return; }; 365 if (i == 4) { fn(i,isLd,tc); return; }; 367 if (i == 5) { fn(i,isLd,tc); return; }; 369 if (i == 6) { fn(i,isLd,tc); return; }; 371 if (i == 7) { fn(i,isLd,tc); return; }; 373 if (i == 8) { fn(i,isLd,tc); return; } [all...] |
/art/sigchainlib/ |
sigchain.h | 35 extern "C" void RemoveSpecialSignalHandlerFn(int signal, bool (*fn)(int, siginfo_t*, void*));
|
/bionic/libc/private/ |
bionic_vdso.h | 52 void* fn; member in struct:vdso_entry
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/ |
io.h | 60 #define PCIADDR(bus,dev,fn,reg) ( \
64 ((fn) << 12) + \
110 uint32_t fn,
117 uint32_t fn,
|
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/ |
md_var.h | 43 #define FDESC_FUNC(fn) (((struct ia64_fdesc *) fn)->func)
44 #define FDESC_GP(fn) (((struct ia64_fdesc *) fn)->gp)
|
/external/clang/test/SemaCXX/ |
deleted-function.cpp | 5 void fn() = delete; // expected-note {{candidate function has been explicitly deleted}} 19 void fn() = delete; // expected-note {{'fn' has been explicitly marked deleted here}} 27 fn(); // expected-error {{call to deleted function 'fn'}} 33 d->fn(); // expected-error {{attempt to use a deleted function}}
|
/external/pdfium/testing/ |
embedder_test_mock_delegate.h | 17 MOCK_METHOD2(SetTimer, int(int msecs, TimerCallback fn));
|
embedder_test_timer_handling_delegate.h | 28 TimerCallback fn; member in struct:EmbedderTestTimerHandlingDelegate::Timer 40 int SetTimer(int msecs, TimerCallback fn) override { 43 std::pair<int, Timer>(msecs + fake_elapsed_msecs_, {id, msecs, fn})); 72 t.fn(t.id); // Fire timer.
|
/external/tensorflow/tensorflow/contrib/bayesflow/python/ops/ |
variable_utils_impl.py | 41 def externalize_variables_as_args(fn, 49 Makes a new callable from `fn` which has arguments `list(fn_args) + 52 return value of `fn` (concretely, gradient of `fn(*fn_args)` is not `None`). 87 fn: Python callable which returns a `Tensor` and accepts `*fn_args`. 88 fn_args: Python list of args to `fn`. Represents dummy arguments passed to 89 `fn` to trace its execution; actual values are unimportant. These args are 90 only used to construct the output of `fn` and to resolve the ancestor 92 Default value: `()` (i.e., `fn` takes no args). 94 expanded to non-`None` gradients of `fn(*fn_args)`. By directly providin [all...] |
/external/tensorflow/tensorflow/contrib/ffmpeg/default/ |
ffmpeg_lib_utility_test.cc | 57 for (const auto& fn : buffer) { 58 temp_filenames.push_back(fn); 74 for (const auto& fn : temp_filenames) { 75 ASSERT_TRUE(unique_filenames.insert(fn).second);
|
/external/valgrind/coregrind/ |
pub_core_demangle.h | 63 /*OUT*/const HChar** fn,
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
CompletionStage.java | 165 * @param fn the function to use to compute the value of the 170 public <U> CompletionStage<U> thenApply(Function<? super T,? extends U> fn); 181 * @param fn the function to use to compute the value of the 187 (Function<? super T,? extends U> fn); 197 * @param fn the function to use to compute the value of the 204 (Function<? super T,? extends U> fn, 302 * @param fn the function to use to compute the value of the 310 BiFunction<? super T,? super U,? extends V> fn); 322 * @param fn the function to use to compute the value of the 330 BiFunction<? super T,? super U,? extends V> fn); [all...] |
/prebuilts/go/darwin-x86/src/os/ |
executable_plan9.go | 12 fn := "/proc/" + itoa(Getpid()) + "/text" 13 f, err := Open(fn)
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue11750.go | 12 fn := func(names string) { 17 fn(name)
|
/prebuilts/go/linux-x86/src/os/ |
executable_plan9.go | 12 fn := "/proc/" + itoa(Getpid()) + "/text" 13 f, err := Open(fn)
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue11750.go | 12 fn := func(names string) { 17 fn(name)
|