Searched refs:bias (Results 1 - 25 of 97) sorted by path

1234

/external/dropbear/libtomcrypt/
H A Dcrypt.tex547 because you are to be paranoid. It is because if your PRNG has a bias of any sort the more bits the better. For
550 were $0.25$ (a severe bias) a 256-bit string would have about 106 bits of entropy whereas a 128-bit string would have
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/elfutils/libdwfl/
H A Dcu.c109 addr -= mod->debug.bias;
H A Dderelocate.c136 newref->start = shdr->sh_addr + mod->main.bias;
241 assert (mod->main.bias == 0);
242 assert (mod->debug.bias == 0);
302 Dwarf_Addr bias; local
303 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
382 Dwarf_Addr *bias)
408 *bias = mod->main.bias;
H A Ddwfl_addrdie.c53 dwfl_addrdie (Dwfl *dwfl, Dwarf_Addr addr, Dwarf_Addr *bias) argument
56 addr, bias);
H A Ddwfl_addrdwarf.c53 dwfl_addrdwarf (Dwfl *dwfl, Dwarf_Addr address, Dwarf_Addr *bias) argument
56 bias);
H A Ddwfl_getdwarf.c65 Dwarf_Addr bias = 0; local
66 Dwarf *dw = INTUSE(dwfl_module_getdwarf) (mod, &bias);
67 return (*info->callback) (mod, userdata, name, start, dw, bias, info->arg);
H A Ddwfl_lineinfo.c64 *addr = info->addr + cu->mod->debug.bias;
H A Ddwfl_module_addrdie.c53 dwfl_module_addrdie (Dwfl_Module *mod, Dwarf_Addr addr, Dwarf_Addr *bias) argument
55 if (INTUSE(dwfl_module_getdwarf) (mod, bias) == NULL)
H A Ddwfl_module_addrsym.c74 GElf_Addr mod_addr = addr - mod->symfile->bias;
H A Ddwfl_module_build_id.c124 phdr->p_vaddr + mod->main.bias);
135 ? shdr->sh_addr + mod->main.bias : NO_VADDR);
H A Ddwfl_module_getdwarf.c57 When we return success, FILE->elf and FILE->bias are set up. */
94 file->bias = 0;
104 file->bias = ((mod->low_addr & -ph->p_align)
113 if (mod->e_type == ET_EXEC && file->bias != 0)
120 When we return success, MOD->main.elf and MOD->main.bias are set up. */
672 mod->debug.bias = mod->main.bias;
732 *loadbase = mod->main.bias;
743 dwfl_module_getdwarf (Dwfl_Module *mod, Dwarf_Addr *bias)
761 *bias
[all...]
H A Ddwfl_module_getsrc.c56 Dwarf_Addr bias; local
57 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
67 addr -= bias;
H A Ddwfl_module_getsrc_file.c63 Dwarf_Addr bias; local
64 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
H A Ddwfl_module_getsym.c102 /* Apply the bias to the symbol value. */
103 sym->st_value += mod->symfile->bias;
H A Ddwfl_module_info.c69 *dwbias = mod->debug.elf == NULL ? (Dwarf_Addr) -1 : mod->debug.bias;
71 *symbias = mod->symfile == NULL ? (Dwarf_Addr) -1 : mod->symfile->bias;
H A Ddwfl_module_nextcu.c53 dwfl_module_nextcu (Dwfl_Module *mod, Dwarf_Die *lastcu, Dwarf_Addr *bias) argument
55 if (INTUSE(dwfl_module_getdwarf) (mod, bias) == NULL)
H A Ddwfl_nextcu.c53 dwfl_nextcu (Dwfl *dwfl, Dwarf_Die *lastcu, Dwarf_Addr *bias) argument
78 *bias = mod->debug.bias;
92 || INTUSE(dwfl_module_getdwarf) (mod, bias) != NULL))
H A Ddwfl_report_elf.c75 GElf_Addr start = 0, end = 0, bias = 0; local
102 || (bias == 0 && end > start && end != next))
155 if (first || bias > shdr->sh_addr)
157 bias = shdr->sh_addr;
159 if ((shdr->sh_addr - bias + base) & (align - 1))
164 + (bias & (align - 1)));
171 if (bias != 0)
175 Now just compute the bias from the requested base. */
177 end = end - bias + start;
178 bias
[all...]
H A Ddwfl_segment_report_module.c262 /* Collect the bias between START and the containing PT_LOAD's p_vaddr. */
263 GElf_Addr bias = 0; local
357 because we don't yet know the bias for its p_vaddr. */
395 bias = start - vaddr;
441 module_start += bias;
442 module_end += bias;
444 dyn_vaddr += bias;
530 dynstr_vaddr += bias;
607 final_read (offset, vaddr + bias, filesz);
642 mod->main.bias
[all...]
H A Dlibdwfl.h152 const GElf_Phdr *phdr, GElf_Addr bias,
202 range covered by the module; *DWBIAS is the address bias for debugging
418 extern Elf *dwfl_module_getelf (Dwfl_Module *, GElf_Addr *bias);
449 Dwarf_Addr *bias)
458 extern Dwarf *dwfl_module_getdwarf (Dwfl_Module *, Dwarf_Addr *bias)
470 extern Dwarf *dwfl_addrdwarf (Dwfl *dwfl, Dwarf_Addr addr, Dwarf_Addr *bias)
475 extern Dwarf_Die *dwfl_addrdie (Dwfl *dwfl, Dwarf_Addr addr, Dwarf_Addr *bias)
478 Dwarf_Addr addr, Dwarf_Addr *bias)
482 extern Dwarf_Die *dwfl_nextcu (Dwfl *dwfl, Dwarf_Die *lastcu, Dwarf_Addr *bias)
485 Dwarf_Die *lastcu, Dwarf_Addr *bias)
[all...]
H A DlibdwflP.h139 GElf_Addr bias; /* Actual load address - p_vaddr. */ member in struct:dwfl_file
H A Dlink_map.c211 Dwarf_Addr bias;
212 Elf_Scn *scn = INTUSE(dwfl_module_address_section) (mod, &vaddr, &bias);
221 vaddr - mod->main.bias, minread, mod->main.elf);
512 /* Calculate the bias applied to the PIE's p_vaddr values. */
513 GElf_Addr bias = (at_phdr - (ehdr.e_phoff - phdr->p_offset
518 if (at_entry != 0 && at_entry != ehdr.e_entry + bias)
523 if (bias != mod->main.bias)
525 mod->low_addr -= mod->main.bias;
526 mod->high_addr -= mod->main.bias;
[all...]
H A Dsegment.c273 dwfl_report_segment (Dwfl *dwfl, int ndx, const GElf_Phdr *phdr, GElf_Addr bias,
292 GElf_Addr start = segment_start (dwfl, bias + phdr->p_vaddr);
293 GElf_Addr end = segment_end (dwfl, bias + phdr->p_vaddr + phdr->p_memsz);
317 dwfl->lookup_tail_offset = end - bias - phdr->p_vaddr + phdr->p_offset;

Completed in 241 milliseconds

1234