/external/valgrind/callgrind/ |
D | clo.c | 101 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 …]
|
D | dump.c | 1270 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/ |
D | sequence.py | 108 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)
|
D | property.py | 67 fnc = getattr(obj, "on_set_%s" % self.name) 68 value = fnc(value)
|
/external/clang/include/clang/Basic/ |
D | Builtins.def | 869 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/ |
D | dip_rb.c | 68 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()
|
D | devs.c | 185 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()
|
D | globals.h | 213 void (*fnc)(struct io *iop, struct io *this), int rm_after); 226 void (*fnc)(struct io *iop, struct io *this),
|
D | inlines.h | 303 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/ |
D | trap.h | 30 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
|
D | trap.cc | 244 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/ |
D | cfadmin | 17 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:]]))
|
D | cwutil | 94 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]))
|
D | route53 | 159 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/ |
D | copy.pass.cpp | 32 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/ |
D | test_sequence.py | 73 s = Sequence(fnc=increment_string) 90 s = Sequence(fnc=fib) 103 s = Sequence(fnc=increment_string)
|
/external/libchrome/sandbox/linux/bpf_dsl/ |
D | trap_registry.h | 48 virtual uint16_t Add(TrapFnc fnc, const void* aux, bool safe) = 0;
|
D | policy_compiler.h | 59 CodeGen::Node Trap(TrapRegistry::TrapFnc fnc, const void* aux, bool safe);
|
D | policy_compiler.cc | 449 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/ |
D | check.t | 7992 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
|