HomeSort by relevance Sort by last modified time
    Searched defs:mod (Results 1 - 25 of 605) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libdwfl/
dwfl_addrmodule.c 34 Dwfl_Module *mod; local
35 (void) INTUSE(dwfl_addrsegment) (dwfl, address, &mod);
36 return mod;
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->dwerr == DWFL_E_NOERRO
    [all...]
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);
dwfl_module.c 59 __libdwfl_module_free (Dwfl_Module *mod)
61 if (mod->lazy_cu_root != NULL)
62 tdestroy (mod->lazy_cu_root, nofree);
64 if (mod->aranges != NULL)
65 free (mod->aranges);
67 if (mod->cu != NULL)
69 for (size_t i = 0; i < mod->ncu; ++i)
70 free_cu (mod->cu[i]);
71 free (mod->cu);
76 if (mod->eh_cfi != NULL
183 Dwfl_Module *mod = calloc (1, sizeof *mod); local
    [all...]
  /prebuilts/go/darwin-x86/src/math/
mod.go 8 Floating-point mod function.
11 // Mod returns the floating-point remainder of x/y.
16 // Mod(ħInf, y) = NaN
17 // Mod(NaN, y) = NaN
18 // Mod(x, 0) = NaN
19 // Mod(x, ħInf) = x
20 // Mod(x, NaN) = NaN
21 func Mod(x, y float64) float64
23 func mod(x, y float64) float64 { func
  /prebuilts/go/linux-x86/src/math/
mod.go 8 Floating-point mod function.
11 // Mod returns the floating-point remainder of x/y.
16 // Mod(ħInf, y) = NaN
17 // Mod(NaN, y) = NaN
18 // Mod(x, 0) = NaN
19 // Mod(x, ħInf) = x
20 // Mod(x, NaN) = NaN
21 func Mod(x, y float64) float64
23 func mod(x, y float64) float64 { func
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
__init__.py 23 mod = globals()[t] variable
24 all_tests.addTests(loader.loadTestsFromModule(mod))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
__init__.py 23 mod = globals()[t] variable
24 all_tests.addTests(loader.loadTestsFromModule(mod))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
__init__.py 23 mod = globals()[t] variable
24 all_tests.addTests(loader.loadTestsFromModule(mod))
  /external/mesa3d/src/gallium/drivers/radeon/
loader.cpp 32 Module * mod = M.get(); local
34 radeon_llvm_compile(wrap(mod), &bytes, &byte_count, TargetGPUName.c_str(), 1);
  /frameworks/av/media/libaudiohal/
DevicesFactoryHalLocal.cpp 32 const hw_module_t *mod; local
35 rc = hw_get_module_by_class(AUDIO_HARDWARE_MODULE_ID, if_name, &mod);
41 rc = audio_hw_device_open(mod, dev);
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_keyboard.h 51 Uint16 mod; /**< current key modifiers */ member in struct:SDL_Keysym
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_keyboard.h 51 Uint16 mod; /**< current key modifiers */ member in struct:SDL_Keysym
  /prebuilts/misc/windows/sdl2/include/
SDL_keyboard.h 51 Uint16 mod; /**< current key modifiers */ member in struct:SDL_Keysym
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_keyboard.h 51 Uint16 mod; /**< current key modifiers */ member in struct:SDL_Keysym
  /cts/suite/audio_quality/test_description/processing/
check_spectrum.py 152 mod = __import__("gen_random") variable
158 data = getattr(mod, "do_gen_random")(peakAmpl, durationInMSec, samplingRate, fHigh,\
check_spectrum_playback.py 118 mod = __import__("gen_random") variable
124 data = getattr(mod, "do_gen_random")(peakAmpl, durationInMSec, samplingRate, fHigh,\
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktSampleVerifierUtil.cpp 44 deInt32 mod (const deInt32 a, const deInt32 n) function in namespace:vkt::texture::util
398 wrappedCoord = mod(coord, size);
402 wrappedCoord = (size - 1) - mirror(mod(coord, 2 * size) - size);
  /external/elfutils/tests/
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);
dwfl-report-elf-align.c 56 Dwfl_Module *mod = dwfl_report_elf (dwfl, argv[1], argv[1], -1, base, false); local
57 assert (mod != NULL);
63 assert (mod_found == mod);
65 const char *symname = dwfl_module_addrname (mod, funcaddr);
dwfl-addr-sect.c 35 Dwfl_Module *mod = dwfl_addrmodule (dwfl, address); local
38 Elf_Scn *scn = dwfl_module_address_section (mod, &adjusted, &bias);
47 dwfl_module_info (mod, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
  /external/kmod/testsuite/
test-init.c 51 struct kmod_module *mod; local
59 err = kmod_module_new_from_path(ctx, "/mod-simple.ko", &mod);
65 err = kmod_module_insert_module(mod, 0, NULL);
94 err = kmod_module_new_from_name(ctx, "mod-simple", &mod_simple);
127 "mod-simple:0:0:bla:-1:" STRINGIFY(ENOENT),
test-initstate.c 39 struct kmod_module *mod; local
58 mod = kmod_module_get_module(list);
60 r = kmod_module_get_initstate(mod);
67 kmod_module_unref(mod);
84 struct kmod_module *mod = NULL; local
92 err = kmod_module_new_from_name(ctx, "fake-builtin", &mod);
98 if (!mod) {
103 r = kmod_module_get_initstate(mod);
110 kmod_module_unref(mod);
  /packages/services/Car/tests/android_support_car_api_test/src/com/android/support/car/apitest/
TestUtil.java 28 int mod = f.getModifiers(); local
29 if (Modifier.isPublic(mod) && Modifier.isStatic(mod) && Modifier.isFinal(mod)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pdb.py 184 mod = imp.new_module('module_to_skip') variable
185 exec 'def foo_pony(callback): x = 1; callback(); return None' in mod.__dict__
195 ... mod.foo_pony(callback)
208 -> mod.foo_pony(callback)
223 -> mod.foo_pony(callback)

Completed in 934 milliseconds

1 2 3 4 5 6 7 8 91011>>