/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-relimport/pkg/ |
H A D | oldstyle.py | 1 import mod namespace
|
H A D | relative.py | 2 from . import mod namespace
|
H A D | toplevel.py | 2 import mod namespace
|
/external/v8/test/mjsunit/regress/ |
H A D | regress-166379.js | 30 function mod(a, b) { return a % b; } function 33 assertEquals(0, mod(4, 2)); 34 assertEquals(1, mod(3, 2)); 35 %OptimizeFunctionOnNextCall(mod); 37 // Surprise mod with overflow. 38 assertEquals(-Infinity, 1/mod(-2147483648, -1));
|
/external/v8/test/webkit/ |
H A D | mod-by-zero.js | 28 function mod(b) { function 32 shouldBeNaN("mod(0)");
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-relimport/pkg/subpkg/ |
H A D | relative.py | 3 from .. import mod namespace
|
H A D | mod2.py | 3 from ..sub2.mod import __doc__ 4 from ..sub2 import mod namespace
|
/external/elfutils/libdwfl/ |
H A D | dwfl_addrmodule.c | 34 Dwfl_Module *mod; local 35 (void) INTUSE(dwfl_addrsegment) (dwfl, address, &mod); 36 return mod;
|
H A D | dwfl_module_eh_cfi.c | 33 dwfl_module_eh_cfi (Dwfl_Module *mod, Dwarf_Addr *bias) argument 35 if (mod == NULL) 38 if (mod->eh_cfi != NULL) 40 *bias = dwfl_adjusted_address (mod, 0); 41 return mod->eh_cfi; 44 __libdwfl_getelf (mod); 45 if (mod->elferr != DWFL_E_NOERROR) 47 __libdwfl_seterrno (mod->elferr); 51 *bias = dwfl_adjusted_address (mod, 0); 52 return __libdwfl_set_cfi (mod, [all...] |
H A D | dwfl_module_getelf.c | 32 dwfl_module_getelf (Dwfl_Module *mod, GElf_Addr *loadbase) argument 34 if (mod == NULL) 37 __libdwfl_getelf (mod); 38 if (mod->elferr == DWFL_E_NOERROR) 40 if (mod->e_type == ET_REL && ! mod->main.relocated) 45 mod->main.relocated = true; 46 if (likely (__libdwfl_module_getebl (mod) == DWFL_E_NOERROR)) 48 (void) __libdwfl_relocate (mod, mod [all...] |
H A D | dwfl_module_addrname.c | 32 dwfl_module_addrname (Dwfl_Module *mod, GElf_Addr addr) argument 36 return INTUSE(dwfl_module_addrinfo) (mod, addr, &off, &sym,
|
H A D | dwfl_module_addrdie.c | 32 dwfl_module_addrdie (Dwfl_Module *mod, Dwarf_Addr addr, Dwarf_Addr *bias) argument 34 if (INTUSE(dwfl_module_getdwarf) (mod, bias) == NULL) 38 Dwfl_Error error = __libdwfl_addrcu (mod, addr, &cu);
|
H A D | dwfl_module_dwarf_cfi.c | 34 __libdwfl_set_cfi (Dwfl_Module *mod, Dwarf_CFI **slot, Dwarf_CFI *cfi) argument 38 Dwfl_Error error = __libdwfl_module_getebl (mod); 40 cfi->ebl = mod->ebl; 43 if (slot == &mod->eh_cfi) 54 dwfl_module_dwarf_cfi (Dwfl_Module *mod, Dwarf_Addr *bias) argument 56 if (mod == NULL) 59 if (mod->dwarf_cfi != NULL) 61 *bias = dwfl_adjusted_dwarf_addr (mod, 0); 62 return mod->dwarf_cfi; 65 return __libdwfl_set_cfi (mod, [all...] |
H A D | dwfl_module_nextcu.c | 32 dwfl_module_nextcu (Dwfl_Module *mod, Dwarf_Die *lastcu, Dwarf_Addr *bias) argument 34 if (INTUSE(dwfl_module_getdwarf) (mod, bias) == NULL) 38 Dwfl_Error error = __libdwfl_nextcu (mod, (struct dwfl_cu *) lastcu, &cu);
|
H A D | dwfl_module_report_build_id.c | 33 dwfl_module_report_build_id (Dwfl_Module *mod, argument 37 if (mod == NULL) 40 if (mod->main.elf != NULL) 45 if ((size_t) mod->build_id_len == len 46 && (mod->build_id_vaddr == vaddr || vaddr == 0) 47 && !memcmp (bits, mod->build_id_bits, len)) 54 if (vaddr != 0 && (vaddr < mod->low_addr || vaddr + len > mod->high_addr)) 72 free (mod->build_id_bits); 74 mod [all...] |
H A D | dwfl_module_return_value_location.c | 33 dwfl_module_return_value_location (Dwfl_Module *mod, Dwarf_Die *functypedie, argument 36 if (mod == NULL) 39 if (mod->ebl == NULL) 41 Dwfl_Error error = __libdwfl_module_getebl (mod); 49 int nops = ebl_return_value_location (mod->ebl, functypedie, locops);
|
H A D | dwfl_nextcu.c | 38 Dwfl_Module *mod; local 42 mod = dwfl->modulelist; 46 mod = cu->mod; 51 error = __libdwfl_nextcu (mod, cu, &cu); 57 *bias = dwfl_adjusted_dwarf_addr (mod, 0); 63 mod = mod->next; 66 if (mod == NULL) 69 if (mod [all...] |
H A D | dwfl_validate_address.c | 34 Dwfl_Module *mod = INTUSE(dwfl_addrmodule) (dwfl, address); local 35 if (mod == NULL) 39 int idx = INTUSE(dwfl_module_relocate_address) (mod, &relative); 47 if (relative >= mod->low_addr && relative <= mod->high_addr) 49 offset_idx = INTUSE(dwfl_module_relocate_address) (mod, &relative);
|
H A D | dwfl_module_info.c | 32 dwfl_module_info (Dwfl_Module *mod, void ***userdata, argument 37 if (mod == NULL) 41 *userdata = &mod->userdata; 43 *start = mod->low_addr; 45 *end = mod->high_addr; 48 *dwbias = (mod->debug.elf == NULL ? (Dwarf_Addr) -1 49 : dwfl_adjusted_dwarf_addr (mod, 0)); 51 *symbias = (mod->symfile == NULL ? (Dwarf_Addr) -1 52 : dwfl_adjusted_st_value (mod, mod [all...] |
/external/v8/test/mjsunit/compiler/ |
H A D | osr-literals-adapted.js | 7 function mod() { function 54 mod(); 55 mod(); 56 mod();
|
H A D | osr-literals.js | 7 function mod() { function 54 mod(); 55 mod(); 56 mod();
|
/external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/ |
H A D | module.c | 31 PyObject * mod = PyModule_Create(&moduledef); local 32 if (mod == NULL) { 43 Py_DECREF(mod); 48 if (PyModule_AddObject(mod, "CTracer", (PyObject *)&CTracerType) < 0) { 49 Py_DECREF(mod); 57 Py_DECREF(mod); 63 if (PyModule_AddObject(mod, "CFileDisposition", (PyObject *)&CFileDispositionType) < 0) { 64 Py_DECREF(mod); 70 return mod; 78 PyObject * mod; local [all...] |
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-relimport/ |
H A D | script.py | 1 import mod namespace 3 import pkg.mod namespace
|
/external/elfutils/tests/ |
H A D | dwfl-bug-addr-overflow.c | 63 Dwfl_Module *mod = dwfl_addrmodule (dwfl, UINT64_C (0xffffffff00010123)); local 64 assert (mod == high); 65 mod = dwfl_addrmodule (dwfl, UINT64_C (0x00010123)); 66 assert (mod == low); 67 mod = dwfl_addrmodule (dwfl, UINT64_C (0xffff00010123)); 68 assert (mod == middle);
|
/external/mesa3d/src/gallium/drivers/radeon/ |
H A D | loader.cpp | 32 Module * mod = M.get(); local 34 radeon_llvm_compile(wrap(mod), &bytes, &byte_count, TargetGPUName.c_str(), 1);
|