Home
last modified time | relevance | path

Searched refs:fnc (Results 1 – 20 of 20) sorted by relevance

/external/valgrind/callgrind/
Dclo.c101 fn_config* fnc = (fn_config*) CLG_MALLOC("cl.clo.nf.1", in new_fnc() local
104 fnc->dump_before = CONFIG_DEFAULT; in new_fnc()
105 fnc->dump_after = CONFIG_DEFAULT; in new_fnc()
106 fnc->zero_before = CONFIG_DEFAULT; in new_fnc()
107 fnc->toggle_collect = CONFIG_DEFAULT; in new_fnc()
108 fnc->skip = CONFIG_DEFAULT; in new_fnc()
109 fnc->pop_on_jump = CONFIG_DEFAULT; in new_fnc()
110 fnc->group = CONFIG_DEFAULT; in new_fnc()
111 fnc->separate_callers = CONFIG_DEFAULT; in new_fnc()
112 fnc->separate_recursions = CONFIG_DEFAULT; in new_fnc()
[all …]
Ddump.c1270 fnc = fnc_table[i]; in new_dumpfile()
1271 while (fnc) { in new_dumpfile()
1272 if (fnc->skip) { in new_dumpfile()
1273 VG_(fprintf)(fp, "desc: Option: --fn-skip=%s\n", fnc->name); in new_dumpfile()
1275 if (fnc->dump_at_enter) { in new_dumpfile()
1277 fnc->name); in new_dumpfile()
1279 if (fnc->dump_at_leave) { in new_dumpfile()
1281 fnc->name); in new_dumpfile()
1283 if (fnc->separate_callers != CLG_(clo).separate_callers) { in new_dumpfile()
1285 fnc->separate_callers, fnc->name); in new_dumpfile()
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
Dsequence.py108 def __init__(self, id=None, domain_name=None, fnc=increment_by_one, init_val=None): argument
138 init_val = fnc(init_val)
144 self.item_type = type(fnc(None))
147 if isinstance(fnc, six.string_types):
149 fnc = find_class(fnc)
150 self.fnc = fnc
196 self.fnc.__module__, self.fnc.__name__,
219 self.val = self.fnc(self.val, self.last_value)
Dproperty.py67 fnc = getattr(obj, "on_set_%s" % self.name)
68 value = fnc(value)
/external/clang/include/clang/Basic/
DBuiltins.def869 LIBBUILTIN(abs, "ii", "fnc", "stdlib.h", ALL_LANGUAGES)
870 LIBBUILTIN(labs, "LiLi", "fnc", "stdlib.h", ALL_LANGUAGES)
871 LIBBUILTIN(llabs, "LLiLLi", "fnc", "stdlib.h", ALL_LANGUAGES)
873 LIBBUILTIN(copysign, "ddd", "fnc", "math.h", ALL_LANGUAGES)
874 LIBBUILTIN(copysignf, "fff", "fnc", "math.h", ALL_LANGUAGES)
875 LIBBUILTIN(copysignl, "LdLdLd", "fnc", "math.h", ALL_LANGUAGES)
877 LIBBUILTIN(fabs, "dd", "fnc", "math.h", ALL_LANGUAGES)
878 LIBBUILTIN(fabsf, "ff", "fnc", "math.h", ALL_LANGUAGES)
879 LIBBUILTIN(fabsl, "LdLd", "fnc", "math.h", ALL_LANGUAGES)
897 LIBBUILTIN(nan, "dcC*", "fnc", "math.h", ALL_LANGUAGES)
[all …]
/external/blktrace/btt/
Ddip_rb.c68 void (*fnc)(struct io *iop, struct io *this), in rb_foreach()
77 if (fnc) fnc(iop, this); in rb_foreach()
82 rb_foreach(n->rb_left, iop, fnc, head); in rb_foreach()
84 rb_foreach(n->rb_right, iop, fnc, head); in rb_foreach()
Ddevs.c185 void (*fnc)(struct io *iop, struct io *this), int rm_after) in dip_foreach()
192 dip_rb_fe(iop->dip, type, iop, fnc, &head); in dip_foreach()
199 dip_rb_fe(iop->dip, type, iop, fnc, NULL); in dip_foreach()
Dglobals.h213 void (*fnc)(struct io *iop, struct io *this), int rm_after);
226 void (*fnc)(struct io *iop, struct io *this),
Dinlines.h303 void (*fnc)(struct io *iop, struct io *this), in dip_rb_fe()
306 rb_foreach(__get_root(dip, type)->rb_node, iop, fnc, head); in dip_rb_fe()
/external/libchrome/sandbox/linux/seccomp-bpf/
Dtrap.h30 uint16_t Add(TrapFnc fnc, const void* aux, bool safe) override;
44 TrapKey() : fnc(NULL), aux(NULL), safe(false) {} in TrapKey()
45 TrapKey(TrapFnc f, const void* a, bool s) : fnc(f), aux(a), safe(s) {} in TrapKey()
46 TrapFnc fnc; member
Dtrap.cc244 rc = trap.fnc(data, const_cast<void*>(trap.aux)); in SigSys()
257 return std::tie(fnc, aux, safe) < std::tie(o.fnc, o.aux, o.safe); in operator <()
260 uint16_t Trap::Add(TrapFnc fnc, const void* aux, bool safe) { in Add() argument
282 TrapKey key(fnc, aux, safe); in Add()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
Dcfadmin17 def help(cf, fnc=None): argument
21 if fnc:
23 cmd = getattr(self, fnc)
27 print "No function named: %s found" % fnc
31 print "Usage: %s %s" % (fnc, " ".join([ "[%s]" % a for a in args[1:]]))
Dcwutil94 def help(fnc=None): argument
100 if fnc:
102 cmd = getattr(self, fnc)
106 print "No function named: %s found" % fnc
110 print "Usage: %s %s" % (fnc, " ".join([ "[%s]" % a for a in args]))
Droute53159 def help(conn, fnc=None): argument
163 if fnc:
165 cmd = getattr(self, fnc)
169 print "No function named: %s found" % fnc
173 print "Usage: %s %s" % (fnc, " ".join([ "[%s]" % a for a in args[1:]]))
/external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
Dcopy.pass.cpp32 std::function<float(float, float)> fnc = _pow; in main() local
33 auto task = std::bind(fnc, 2.f, 4.f); in main()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/db/
Dtest_sequence.py73 s = Sequence(fnc=increment_string)
90 s = Sequence(fnc=fib)
103 s = Sequence(fnc=increment_string)
/external/libchrome/sandbox/linux/bpf_dsl/
Dtrap_registry.h48 virtual uint16_t Add(TrapFnc fnc, const void* aux, bool safe) = 0;
Dpolicy_compiler.h59 CodeGen::Node Trap(TrapRegistry::TrapFnc fnc, const void* aux, bool safe);
Dpolicy_compiler.cc449 CodeGen::Node PolicyCompiler::Trap(TrapRegistry::TrapFnc fnc, in Trap() argument
452 uint16_t trap_id = registry_->Add(fnc, aux, safe); in Trap()
/external/mksh/src/
Dcheck.t7992 fnc() {
8032 fnc
8108 name: arrassign-fnc-none
8149 name: arrassign-fnc-local
8215 name: arrassign-fnc-global
8272 name: strassign-fnc-none
8309 name: strassign-fnc-local
8367 name: strassign-fnc-global
8424 name: unset-fnc-local-ksh
8454 name: unset-fnc-local-sh