/external/u-boot/arch/arm/mach-rmobile/ |
D | pfc-r8a7790.h | 14 #define CPU_32_PORT(fn, pfx, sfx) \ argument 15 PORT_10(fn, pfx, sfx), PORT_10(fn, pfx##1, sfx), \ 16 PORT_10(fn, pfx##2, sfx), PORT_1(fn, pfx##30, sfx), \ 17 PORT_1(fn, pfx##31, sfx) 19 #define CPU_32_PORT2(fn, pfx, sfx) \ argument 20 PORT_10(fn, pfx, sfx), PORT_10(fn, pfx##1, sfx), \ 21 PORT_10(fn, pfx##2, sfx) 24 #define CPU_32_PORT1(fn, pfx, sfx) \ argument 25 PORT_10(fn, pfx, sfx), PORT_10(fn, pfx##1, sfx), \ 26 PORT_10(fn, pfx##2, sfx) \ [all …]
|
/external/u-boot/drivers/pinctrl/renesas/ |
D | sh_pfc.h | 297 #define PINMUX_IPSR_NOGP(ipsr, fn) \ argument 298 PINMUX_DATA(fn##_MARK, FN_##fn) 307 #define PINMUX_IPSR_GPSR(ipsr, fn) \ argument 308 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##ipsr) 318 #define PINMUX_IPSR_NOGM(ipsr, fn, msel) \ argument 319 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##msel) 329 #define PINMUX_IPSR_NOFN(gpsr, fn, gsel) \ argument 330 PINMUX_DATA(fn##_MARK, FN_##gpsr, FN_##gsel) 341 #define PINMUX_IPSR_MSEL(ipsr, fn, msel) \ argument 342 PINMUX_DATA(fn##_MARK, FN_##msel, FN_##fn, FN_##ipsr) [all …]
|
/external/u-boot/drivers/fpga/ |
D | spartan3.c | 106 xilinx_spartan3_slave_parallel_fns *fn = desc->iface_fns; in spartan3_sp_load() local 109 __FUNCTION__, fn); in spartan3_sp_load() 111 if (fn) { in spartan3_sp_load() 132 __FUNCTION__, &fn, fn, fn->pre, fn->pgm, fn->init, fn->err, in spartan3_sp_load() 133 fn->clk, fn->cs, fn->wr, fn->rdata, fn->wdata, fn->busy, in spartan3_sp_load() 134 fn->abort, fn->post); in spartan3_sp_load() 147 if (*fn->pre) { in spartan3_sp_load() 148 (*fn->pre) (cookie); in spartan3_sp_load() 152 (*fn->pgm) (true, true, cookie); /* Assert the program, commit */ in spartan3_sp_load() 156 (*fn->pgm) (false, true, cookie); /* Deassert the program, commit */ in spartan3_sp_load() [all …]
|
D | spartan2.c | 102 xilinx_spartan2_slave_parallel_fns *fn = desc->iface_fns; in spartan2_sp_load() local 105 __FUNCTION__, fn); in spartan2_sp_load() 107 if (fn) { in spartan2_sp_load() 128 __FUNCTION__, &fn, fn, fn->pre, fn->pgm, fn->init, fn->err, in spartan2_sp_load() 129 fn->clk, fn->cs, fn->wr, fn->rdata, fn->wdata, fn->busy, in spartan2_sp_load() 130 fn->abort, fn->post); in spartan2_sp_load() 143 if (*fn->pre) { in spartan2_sp_load() 144 (*fn->pre) (cookie); in spartan2_sp_load() 148 (*fn->pgm) (true, true, cookie); /* Assert the program, commit */ in spartan2_sp_load() 152 (*fn->pgm) (false, true, cookie); /* Deassert the program, commit */ in spartan2_sp_load() [all …]
|
D | virtex2.c | 160 xilinx_virtex2_slave_selectmap_fns *fn = desc->iface_fns; in virtex2_ssm_load() local 163 __FUNCTION__, __LINE__, fn); in virtex2_ssm_load() 165 if (fn) { in virtex2_ssm_load() 180 &fn, fn, fn->pre, fn->pgm, fn->init, fn->err); in virtex2_ssm_load() 189 fn->clk, fn->cs, fn->wr, fn->rdata, fn->wdata, in virtex2_ssm_load() 190 fn->busy, fn->abort, fn->post); in virtex2_ssm_load() 198 if (*fn->pre) { in virtex2_ssm_load() 199 (*fn->pre) (cookie); in virtex2_ssm_load() 208 (*fn->pgm) (true, true, cookie); in virtex2_ssm_load() 216 (*fn->abort) (cookie); in virtex2_ssm_load() [all …]
|
D | ACEX1K.c | 92 Altera_ACEX1K_Passive_Serial_fns *fn = desc->iface_fns; in ACEX1K_ps_load() local 96 __FUNCTION__, fn); in ACEX1K_ps_load() 98 if (fn) { in ACEX1K_ps_load() 112 __FUNCTION__, &fn, fn, fn->config, fn->status, in ACEX1K_ps_load() 113 fn->clk, fn->data, fn->done); in ACEX1K_ps_load() 121 if (*fn->pre) { in ACEX1K_ps_load() 122 (*fn->pre) (cookie); in ACEX1K_ps_load() 126 (*fn->config) (true, true, cookie); /* Assert nCONFIG */ in ACEX1K_ps_load() 131 (*fn->done) (cookie); in ACEX1K_ps_load() 132 if ( !(*fn->status) (cookie) ) { in ACEX1K_ps_load() [all …]
|
D | cyclon2.c | 98 Altera_CYC2_Passive_Serial_fns *fn = desc->iface_fns; in CYC2_ps_load() local 102 __FUNCTION__, fn); in CYC2_ps_load() 104 if (fn) { in CYC2_ps_load() 115 __FUNCTION__, &fn, fn, fn->config, fn->status, in CYC2_ps_load() 116 fn->write, fn->done); in CYC2_ps_load() 124 if (*fn->pre) { in CYC2_ps_load() 125 (*fn->pre) (cookie); in CYC2_ps_load() 129 (*fn->config) (false, true, cookie); /* De-assert nCONFIG */ in CYC2_ps_load() 131 (*fn->config) (true, true, cookie); /* Assert nCONFIG */ in CYC2_ps_load() 141 (*fn->abort) (cookie); in CYC2_ps_load() [all …]
|
/external/deqp-deps/SPIRV-Tools/test/opt/dominator_tree/ |
D | generated.cpp | 44 void check_dominance(const DominatorAnalysisBase& dom_tree, const Function* fn, in check_dominance() argument 48 EXPECT_TRUE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x), in check_dominance() 49 spvtest::GetBasicBlock(fn, y))); in check_dominance() 62 const Function* fn, uint32_t x, uint32_t y) { in check_no_dominance() argument 65 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x), in check_no_dominance() 66 spvtest::GetBasicBlock(fn, y))); in check_no_dominance() 68 EXPECT_FALSE(dom_tree.StrictlyDominates(spvtest::GetBasicBlock(fn, x), in check_no_dominance() 69 spvtest::GetBasicBlock(fn, y))); in check_no_dominance() 72 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, y), in check_no_dominance() 73 spvtest::GetBasicBlock(fn, x))); in check_no_dominance() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/dominator_tree/ |
D | generated.cpp | 44 void check_dominance(const DominatorAnalysisBase& dom_tree, const Function* fn, in check_dominance() argument 48 EXPECT_TRUE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x), in check_dominance() 49 spvtest::GetBasicBlock(fn, y))); in check_dominance() 62 const Function* fn, uint32_t x, uint32_t y) { in check_no_dominance() argument 65 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x), in check_no_dominance() 66 spvtest::GetBasicBlock(fn, y))); in check_no_dominance() 68 EXPECT_FALSE(dom_tree.StrictlyDominates(spvtest::GetBasicBlock(fn, x), in check_no_dominance() 69 spvtest::GetBasicBlock(fn, y))); in check_no_dominance() 72 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, y), in check_no_dominance() 73 spvtest::GetBasicBlock(fn, x))); in check_no_dominance() [all …]
|
/external/python/cpython2/Demo/pdist/ |
D | rrcs.py | 41 for fn in files: 43 func(x, copts, fn) 45 print "%s: %s" % (fn, msg) 47 def checkin(x, copts, fn): argument 48 f = open(fn) 51 new = not x.isvalid(fn) 52 if not new and same(x, copts, fn, data): 53 print "%s: unchanged since last checkin" % fn 55 print "Checking in", fn, "..." 57 messages = x.put(fn, data, message) [all …]
|
/external/fdlibm/ |
D | e_scalb.c | 24 double __ieee754_scalb(double x, int fn) in __ieee754_scalb() argument 26 double __ieee754_scalb(x,fn) in __ieee754_scalb() 27 double x; int fn; in __ieee754_scalb() 31 double __ieee754_scalb(double x, double fn) 33 double __ieee754_scalb(x,fn) 34 double x, fn; 39 return ieee_scalbn(x,fn); 41 if (ieee_isnan(x)||ieee_isnan(fn)) return x*fn; 42 if (!ieee_finite(fn)) { 43 if(fn>0.0) return x*fn; [all …]
|
/external/syzkaller/vendor/github.com/ianlancetaylor/demangle/ |
D | 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 …]
|
/external/mesa3d/prebuilt-intermediates/main/ |
D | dispatch.h | 47 #define SET_by_offset(disp, offset, fn) \ argument 55 ( (_glapi_proc *) (disp) )[offset] = (_glapi_proc) fn; \ 2488 static inline void SET_NewList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) { in SET_NewList() 2489 SET_by_offset(disp, _gloffset_NewList, fn); in SET_NewList() 2499 static inline void SET_EndList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { in SET_EndList() 2500 SET_by_offset(disp, _gloffset_EndList, fn); in SET_EndList() 2510 static inline void SET_CallList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { in SET_CallList() 2511 SET_by_offset(disp, _gloffset_CallList, fn); in SET_CallList() 2521 static inline void SET_CallLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, … in SET_CallLists() 2522 SET_by_offset(disp, _gloffset_CallLists, fn); in SET_CallLists() [all …]
|
/external/libaom/libaom/build/cmake/ |
D | rtcd.pl | 85 my $fn=$_[0]; 88 eval "\$${fn}_${opt}=${fn}_${opt}"; 93 my $fn = splice(@_, -2, 1); 94 $ALL_FUNCS{$fn} = \@_; 95 specialize $fn, "c"; 99 foreach my $fn (keys %ALL_FUNCS) { 101 my $ofn = eval "\$${fn}_${opt}"; 106 my $best = eval "\$${fn}_default"; 113 eval "\$${fn}_default=${fn}_${opt}"; 114 eval "\$${fn}_${opt}_link='true'"; [all …]
|
/external/libvpx/libvpx/build/make/ |
D | rtcd.pl | 76 my $fn=$_[0]; 79 eval "\$${fn}_${opt}=${fn}_${opt}"; 84 my $fn = splice(@_, -2, 1); 85 $ALL_FUNCS{$fn} = \@_; 86 specialize $fn, "c"; 90 foreach my $fn (keys %ALL_FUNCS) { 92 my $ofn = eval "\$${fn}_${opt}"; 97 my $best = eval "\$${fn}_default"; 104 eval "\$${fn}_default=${fn}_${opt}"; 105 eval "\$${fn}_${opt}_link='true'"; [all …]
|
/external/tensorflow/tensorflow/python/util/ |
D | function_utils.py | 30 def _is_bounded_method(fn): argument 31 _, fn = tf_decorator.unwrap(fn) 32 return tf_inspect.ismethod(fn) and (fn.__self__ is not None) 39 def fn_args(fn): argument 51 if isinstance(fn, functools.partial): 52 args = fn_args(fn.func) 53 args = [a for a in args[len(fn.args):] if a not in (fn.keywords or [])] 55 if _is_callable_object(fn): 56 fn = fn.__call__ 57 args = tf_inspect.getfullargspec(fn).args [all …]
|
/external/python/cpython3/Mac/ |
D | Makefile.in | 64 for fn in \ 73 rm -f $${fn} ; \ 74 $(LN) -s $(BINDIR)/$${fn} $${fn} ;\ 78 for fn in \ 82 rm -f $${fn} ;\ 83 $(LN) -s $(BINDIR)/$${fn} $${fn} ;\ 88 for fn in \ 92 rm -f $${fn} ;\ 93 $(LN) -s $(BINDIR)/$${fn} $${fn} ;\ 98 for fn in \ [all …]
|
/external/libese/third_party/NXPNFC_P61_JCOP_Kit/src/ |
D | JcopOsDownload.cpp | 74 static const char fn [] = "JcopOsDwnld::getJcopOsFileInfo"; in getJcopOsFileInfo() local 100 static const char fn [] = "JcopOsDwnld::initialize"; in initialize() local 102 ALOGD ("%s: enter", fn); in initialize() 106 ALOGD("%s: insufficient resources, file not present", fn); in initialize() 120 ALOGD("%s: Memory allocation for IChannel is failed", fn); in initialize() 130 ALOGD("%s: Memory allocation for SendBuf is failed", fn); in initialize() 136 ALOGD("%s: Memory allocation failed", fn); in initialize() 141 ALOGD ("%s: exit", fn); in initialize() 155 static const char fn [] = "JcopOsDwnld::finalize"; in finalize() local 156 ALOGD ("%s: enter", fn); in finalize() [all …]
|
D | AlaLib.cpp | 36 static const char fn[] = "ALA_Init"; in ALA_Init() local 39 ALOGD("%s: enter", fn); in ALA_Init() 54 ALOGE("%s: failed", fn); in ALA_Init() 65 ALOGE("%s:Open DWP communication is failed", fn); in ALA_Init() 70 ALOGE("%s:Open DWP communication is success", fn); in ALA_Init() 76 ALOGE("%s: NULL DWP channel", fn); in ALA_Init() 98 static const char fn[] = "ALA_Start"; in ALA_Start() local 103 ALOGE("%s: name is %s", fn, name); in ALA_Start() 105 ALOGE("%s: Dest is %s", fn, dest); in ALA_Start() 115 ALOGE("%s: Exit; status=0x0%X", fn, status); in ALA_Start() [all …]
|
D | Ala.cpp | 92 static const char fn [] = "Ala_initialize"; in initialize() local 94 ALOGD ("%s: enter", fn); in initialize() 103 ALOGD("%s: Memory allocation failed", fn); in initialize() 118 ALOGD("%s: AID data file does not exists", fn); in initialize() 134 ALOGE ("%s: exit: Error during read AID data", fn); in initialize() 151 ALOGD ("%s: exit", fn); in initialize() 167 static const char fn [] = "Ala_finalize"; in finalize() local 168 ALOGD ("%s: enter", fn); in finalize() 176 ALOGD ("%s: exit", fn); in finalize() 195 static const char fn [] = "Perform_ALA"; in Perform_ALA() local [all …]
|
/external/python/cpython2/Lib/lib2to3/tests/ |
D | pytree_idempotency.py | 28 fn = "example.py" 29 tree = dr.parse_file(fn, debug=True) 30 if not diff(fn, tree): 42 fn = mod.__file__ 43 if fn.endswith(".pyc"): 44 fn = fn[:-1] 45 if not fn.endswith(".py"): 47 print >>sys.stderr, "Parsing", fn 48 tree = dr.parse_file(fn, debug=True) 49 if diff(fn, tree): [all …]
|
/external/python/cpython3/Lib/lib2to3/tests/ |
D | pytree_idempotency.py | 30 fn = "example.py" 31 tree = dr.parse_file(fn, debug=True) 32 if not diff(fn, tree): 44 fn = mod.__file__ 45 if fn.endswith(".pyc"): 46 fn = fn[:-1] 47 if not fn.endswith(".py"): 49 print("Parsing", fn, file=sys.stderr) 50 tree = dr.parse_file(fn, debug=True) 51 if diff(fn, tree): [all …]
|
/external/libdaemon/libdaemon/ |
D | dpid.c | 63 static char *fn = NULL; in daemon_pid_file_proc_default() local 64 free(fn); in daemon_pid_file_proc_default() 65 asprintf(&fn, "%s/%s.pid", VARRUN, daemon_pid_file_ident ? daemon_pid_file_ident : "unknown"); in daemon_pid_file_proc_default() 67 static char fn[PATH_MAX]; in daemon_pid_file_proc_default() 68 …snprintf(fn, sizeof(fn), "%s/%s.pid", VARRUN, daemon_pid_file_ident ? daemon_pid_file_ident : "unk… in daemon_pid_file_proc_default() 71 return fn; in daemon_pid_file_proc_default() 100 const char *fn; in daemon_pid_file_is_running() local 108 if (!(fn = daemon_pid_file_proc())) { in daemon_pid_file_is_running() 113 if ((fd = open(fn, O_RDWR, 0644)) < 0) { in daemon_pid_file_is_running() 114 if ((fd = open(fn, O_RDONLY, 0644)) < 0) { in daemon_pid_file_is_running() [all …]
|
/external/clang/utils/VtableTest/ |
D | gen.cc | 155 int fn = old_func + random() % FUNCSPACING + 1; in gs() local 156 funcs[i] = fn; in gs() 161 || !base_present[ret_type][ret_types[s][fn]]) in gs() 162 if (ret_types[s][fn]) { in gs() 164 ret_types[s][fn], fn); in gs() 165 ret_type = ret_types[s][fn]; in gs() 169 printf(" // Wow found one for s%d for fun%d.\n", s, fn); in gs() 170 ret_types[s][fn] = ret_type; in gs() 176 … g(fn); g("(char *t) { mix(\"vfn this offset\", (char *)this - t); mix(\"vfn uuid\", "); g(++uuid); in gs() 181 final_override[s][fn] = s; in gs() [all …]
|
/external/skia/tests/ |
D | ColorSpaceTest.cpp | 132 skcms_TransferFunction fn; in DEF_TEST() local 133 fn.a = 1.0f; in DEF_TEST() 134 fn.b = 0.0f; in DEF_TEST() 135 fn.c = 1.0f; in DEF_TEST() 136 fn.d = 0.5f; in DEF_TEST() 137 fn.e = 0.0f; in DEF_TEST() 138 fn.f = 0.0f; in DEF_TEST() 139 fn.g = 1.0f; in DEF_TEST() 145 test_serialize(r, SkColorSpace::MakeRGB(fn, toXYZ), false); in DEF_TEST() 165 skcms_TransferFunction fn; in DEF_TEST() local [all …]
|