Home
last modified time | relevance | path

Searched refs:ea (Results 1 – 25 of 45) sorted by relevance

12

/openbmc/u-boot/drivers/net/
H A Dmcffec.c401 uchar ea[6]; in fec_init() local
429 eth_env_get_enetaddr("eth1addr", ea); in fec_init()
431 (ea[0] << 24) | (ea[1] << 16) | (ea[2] << 8) | (ea[3]); in fec_init()
432 fecp1->paur = (ea[4] << 24) | (ea[5] << 16); in fec_init()
434 eth_env_get_enetaddr("ethaddr", ea); in fec_init()
436 (ea[0] << 24) | (ea[1] << 16) | (ea[2] << 8) | (ea[3]); in fec_init()
437 fecp->paur = (ea[4] << 24) | (ea[5] << 16); in fec_init()
441 eth_env_get_enetaddr("ethaddr", ea); in fec_init()
443 (ea[0] << 24) | (ea[1] << 16) | (ea[2] << 8) | (ea[3]); in fec_init()
444 fecp0->paur = (ea[4] << 24) | (ea[5] << 16); in fec_init()
[all …]
H A Dmpc8xx_fec.c528 #define ea dev->enetaddr in fec_init() macro
529 out_be32(&fecp->fec_addr_low, (ea[0] << 24) | (ea[1] << 16) | in fec_init()
530 (ea[2] << 8) | ea[3]); in fec_init()
531 out_be16(&fecp->fec_addr_high, (ea[4] << 8) | ea[5]); in fec_init()
532 #undef ea in fec_init()
/openbmc/qemu/contrib/plugins/
H A Dhotpages.c53 PageCounters *ea = (PageCounters *) a; in cmp_access_count() local
58 r = (ea->reads + ea->writes) > (eb->reads + eb->writes) ? -1 : 1; in cmp_access_count()
61 r = ea->reads > eb->reads ? -1 : 1; in cmp_access_count()
64 r = ea->writes > eb->writes ? -1 : 1; in cmp_access_count()
67 r = ea->page_address > eb->page_address ? -1 : 1; in cmp_access_count()
H A Dhotblocks.c44 ExecCount *ea = (ExecCount *) a; in cmp_exec_count() local
47 qemu_plugin_u64_sum(qemu_plugin_scoreboard_u64(ea->exec_count)); in cmp_exec_count()
61 const ExecCount *ea = v1; in exec_count_equal() local
63 return (ea->start_addr == eb->start_addr) && in exec_count_equal()
64 (ea->insns == eb->insns); in exec_count_equal()
H A Dhwprofile.c76 DeviceCounts *ea = (DeviceCounts *) a; in sort_cmp() local
78 return ea->totals.reads + ea->totals.writes > in sort_cmp()
84 IOLocationCounts *ea = (IOLocationCounts *) a; in sort_loc() local
86 return ea->off_or_pc > eb->off_or_pc; in sort_loc()
H A Dhowvec.c160 InsnExecCount *ea = (InsnExecCount *) a; in cmp_exec_count() local
162 uint64_t count_a = qemu_plugin_u64_sum(ea->count); in cmp_exec_count()
/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/
H A Dether_fcc.c340 #define ea eth_get_ethaddr() in fec_init() macro
341 pram_ptr->fen_paddrh = (ea[5] << 8) + ea[4]; in fec_init()
342 pram_ptr->fen_paddrm = (ea[3] << 8) + ea[2]; in fec_init()
343 pram_ptr->fen_paddrl = (ea[1] << 8) + ea[0]; in fec_init()
344 #undef ea in fec_init()
/openbmc/qemu/target/ppc/
H A Dmmu-hash32.c51 static hwaddr ppc_hash32_bat_lookup(PowerPCCPU *cpu, target_ulong ea, in ppc_hash32_bat_lookup() argument
61 ifetch ? 'I' : 'D', ea); in ppc_hash32_bat_lookup()
77 ifetch ? 'I' : 'D', i, ea, batu, batl); in ppc_hash32_bat_lookup()
79 if (mask && ((ea & mask) == (batu & BATU32_BEPI))) { in ppc_hash32_bat_lookup()
80 hwaddr raddr = (batl & mask) | (ea & ~mask); in ppc_hash32_bat_lookup()
94 LOG_BATS("no BAT match for " TARGET_FMT_lx ":\n", ea); in ppc_hash32_bat_lookup()
104 __func__, ifetch ? 'I' : 'D', i, ea, in ppc_hash32_bat_lookup()
H A Dmmu_common.c370 hwaddr ea, pa; in mmubooke_dump_mmu() local
381 ea = entry->EPN & mask; in mmubooke_dump_mmu()
391 (uint64_t)ea, (uint64_t)pa, size_buf, (uint32_t)entry->PID, in mmubooke_dump_mmu()
409 hwaddr ea, pa, size; in mmubooke206_dump_one_tlb() local
418 ea = entry->mas2 & ~(size - 1); in mmubooke206_dump_one_tlb()
423 (uint64_t)ea, (uint64_t)pa, in mmubooke206_dump_one_tlb()
H A Dmmu_helper.c982 int ea = (env->spr[SPR_BOOKE_MAS2] & MAS2_EPN_MASK); in booke206_cur_tlb() local
992 return booke206_get_tlbm(env, tlb, ea, esel); in booke206_cur_tlb()
1217 vaddr ea) in booke206_invalidate_ea_tlb() argument
1224 ppcmas_tlb_t *tlb = booke206_get_tlbm(env, tlbn, ea, i); in booke206_invalidate_ea_tlb()
1229 if (((tlb->mas2 & MAS2_EPN_MASK) == (ea & mask)) && in booke206_invalidate_ea_tlb()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/rarpd/rarpd/
H A D0005-ethernet.c-remove-it.patch209 -ether_ntohost(name, ea)
211 - register u_char *ea;
219 - if (bcmp(ep->addr, ea, 6) == 0) {
228 -ether_hostton(name, ea)
230 - register u_char *ea;
239 - bcopy(ep->addr, ea, 6);
/openbmc/u-boot/drivers/ddr/fsl/
H A Dctrl_regs.c2427 unsigned long long ea, sa; in compute_fsl_memctl_config_regs() local
2456 ea = sa + common_dimm->total_mem - 1; in compute_fsl_memctl_config_regs()
2470 ea = sa + common_dimm->total_mem - 1; in compute_fsl_memctl_config_regs()
2476 ea = sa + 2 * rank_density - 1; in compute_fsl_memctl_config_regs()
2479 ea = sa + 2 * rank_density - 1; in compute_fsl_memctl_config_regs()
2485 ea = sa + rank_density - 1; in compute_fsl_memctl_config_regs()
2488 ea += (i % cs_per_dimm) * rank_density; in compute_fsl_memctl_config_regs()
2491 ea = 0; in compute_fsl_memctl_config_regs()
2494 ea += rank_density; in compute_fsl_memctl_config_regs()
2499 ea = sa + rank_density - 1; in compute_fsl_memctl_config_regs()
[all …]
/openbmc/qemu/tests/tcg/plugins/
H A Dsyscall.c183 static gint comp_func(gconstpointer ea, gconstpointer eb, gpointer d) in comp_func() argument
185 SyscallStats *ent_a = (SyscallStats *) ea; in comp_func()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libmemcached/files/
H A D0001-Fix-comparison-types.patch17 index 8bd0dbf..71545ea 100644
/openbmc/qemu/target/riscv/
H A Dpmp.h59 hwaddr ea; member
/openbmc/qemu/target/ppc/translate/
H A Dfixedpoint-impl.c.inc27 TCGv ea;
35 ea = do_ea_calc(ctx, ra, displ);
38 tcg_gen_qemu_st_tl(cpu_gpr[rt], ea, ctx->mem_idx, mop);
40 tcg_gen_qemu_ld_tl(cpu_gpr[rt], ea, ctx->mem_idx, mop);
43 tcg_gen_mov_tl(cpu_gpr[ra], ea);
73 TCGv ea;
95 ea = do_ea_calc(ctx, a->ra, tcg_constant_tl(a->si));
108 tcg_gen_qemu_st_i128(t16, ea, ctx->mem_idx, DEF_MEMOP(MO_128));
110 tcg_gen_qemu_ld_i128(t16, ea, ctx->mem_idx, DEF_MEMOP(MO_128));
1298 TCGv ea;
[all …]
H A Dvsx-impl.c.inc2181 TCGv ea;
2191 ea = do_ea_calc(ctx, ra, displ);
2203 tcg_gen_qemu_st_i128(data, ea, ctx->mem_idx, mop);
2205 gen_addr_add(ctx, ea, ea, 16);
2207 tcg_gen_qemu_st_i128(data, ea, ctx->mem_idx, mop);
2210 tcg_gen_qemu_ld_i128(data, ea, ctx->mem_idx, mop);
2213 gen_addr_add(ctx, ea, ea, 16);
2214 tcg_gen_qemu_ld_i128(data, ea, ctx->mem_idx, mop);
2258 TCGv ea;
2272 ea = do_ea_calc(ctx, ra, displ);
[all …]
/openbmc/docs/designs/
H A Derror-log-handling-for-phal.md139 ![image](https://user-images.githubusercontent.com/26330444/76838214-e4e7dc80-6859-11ea-818c-031bf5…
143 ![image](https://user-images.githubusercontent.com/26330444/76838355-152f7b00-685a-11ea-9975-4091ae…
147 ![image](https://user-images.githubusercontent.com/26330444/76838503-3a23ee00-685a-11ea-9f2a-559e23…
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/dibbler/dibbler/
H A D0002-make-Do-not-enforce-c99.patch38 index 72b0a5e3..635998ea 100644
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/samba/samba/
H A D0003-Add-config-option-without-valgrind.patch34 conf.CHECK_HEADERS('sys/extattr.h sys/ea.h sys/proplist.h sys/cdefs.h')
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/fontforge/fontforge/
H A D0001-cmake-Use-alternate-way-to-detect-libm.patch66 index e2982c39d..8829993ea 100644
/openbmc/u-boot/arch/nios2/cpu/
H A Dexceptions.S87 addi r1, ea, -4
/openbmc/qemu/target/i386/tcg/
H A Dtranslate.c1840 TCGv ea = NULL; in gen_lea_modrm_1() local
1844 ea = cpu_regs[a.index]; in gen_lea_modrm_1()
1847 ea = s->A0; in gen_lea_modrm_1()
1850 tcg_gen_add_tl(s->A0, ea, cpu_regs[a.base]); in gen_lea_modrm_1()
1851 ea = s->A0; in gen_lea_modrm_1()
1854 ea = cpu_regs[a.base]; in gen_lea_modrm_1()
1856 if (!ea) { in gen_lea_modrm_1()
1863 ea = s->A0; in gen_lea_modrm_1()
1865 tcg_gen_addi_tl(s->A0, ea, a.disp); in gen_lea_modrm_1()
1866 ea = s->A0; in gen_lea_modrm_1()
[all …]
/openbmc/u-boot/doc/
H A DREADME.davinci.nand_spl34 00000800 14 00 00 ea 14 f0 9f e5 10 f0 9f e5 0c f0 9f e5 |................|
42 00003800 14 00 00 ea 14 f0 9f e5 14 f0 9f e5 14 f0 9f e5 |................|
/openbmc/qemu/target/hexagon/idef-parser/
H A Dparser-helpers.h299 HexSignedness signedness, HexValue *ea, HexValue *dst);
301 void gen_store(Context *c, YYLTYPE *locp, HexValue *size, HexValue *ea,

12