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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/regress/
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/chromium_org/v8/test/webkit/
mod-by-zero.js 28 function mod(b) { function
32 shouldBeNaN("mod(0)");
  /external/elfutils/libdwfl/
dwfl_addrmodule.c 55 Dwfl_Module *mod; local
56 (void) INTUSE(dwfl_addrsegment) (dwfl, address, &mod);
57 return mod;
dwfl_nextcu.c 59 Dwfl_Module *mod; local
63 mod = dwfl->modulelist;
67 mod = cu->mod;
72 error = __libdwfl_nextcu (mod, cu, &cu);
78 *bias = mod->debug.bias;
84 mod = mod->next;
87 if (mod == NULL)
90 if (mod->dwerr == DWFL_E_NOERRO
    [all...]
dwfl_validate_address.c 55 Dwfl_Module *mod = INTUSE(dwfl_addrmodule) (dwfl, address); local
56 if (mod == NULL)
60 int idx = INTUSE(dwfl_module_relocate_address) (mod, &relative);
68 if (relative >= mod->low_addr && relative <= mod->high_addr)
70 offset_idx = INTUSE(dwfl_module_relocate_address) (mod, &relative);
dwfl_module.c 79 __libdwfl_module_free (Dwfl_Module *mod)
81 if (mod->lazy_cu_root != NULL)
82 tdestroy (mod->lazy_cu_root, nofree);
84 if (mod->aranges != NULL)
85 free (mod->aranges);
87 if (mod->cu != NULL)
89 for (size_t i = 0; i < mod->ncu; ++i)
90 free_cu (mod->cu[i]);
91 free (mod->cu);
94 if (mod->dw != NULL
171 Dwfl_Module *mod = calloc (1, sizeof *mod); local
    [all...]
  /external/chromium_org/third_party/mesa/src/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);
radeon_llvm_emit.cpp 112 Module * mod = unwrap(M); local
117 mod->dump();
142 PM.run(*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);
radeon_llvm_emit.cpp 112 Module * mod = unwrap(M); local
117 mod->dump();
142 PM.run(*mod);
  /ndk/build/core/
definitions-graph.mk 22 # All internal functions in this file begin with '-ndk-mod-'
29 # Use $(call -ndk-mod-debug,<message>) to print a debug message only
34 -ndk-mod-debug = $(info $1)
36 -ndk-mod-debug := $(empty)
52 -ndk-mod-filter = $(strip \
57 -test-ndk-mod-filter = \
59 $(call test-expect,,$(call -ndk-mod-filter,,-local-func))\
60 $(call test-expect,foo,$(call -ndk-mod-filter,foo,-local-func))\
61 $(call test-expect,foo,$(call -ndk-mod-filter,foo bar,-local-func))\
62 $(call test-expect,foo foo,$(call -ndk-mod-filter,aaa foo bar foo,-local-func))
    [all...]
  /external/elfutils/tests/
dwfl-bug-addr-overflow.c 71 Dwfl_Module *mod = dwfl_addrmodule (dwfl, UINT64_C (0xffffffff00010123)); local
72 assert (mod == high);
73 mod = dwfl_addrmodule (dwfl, UINT64_C (0x00010123));
74 assert (mod == low);
75 mod = dwfl_addrmodule (dwfl, UINT64_C (0xffff00010123));
76 assert (mod == middle);
dwfl-addr-sect.c 43 Dwfl_Module *mod = dwfl_addrmodule (dwfl, address); local
46 Elf_Scn *scn = dwfl_module_address_section (mod, &adjusted, &bias);
55 dwfl_module_info (mod, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
  /external/qemu/android/skin/
keyset.h 94 /* convert a (sym,mod) pair into a descriptive string. e.g. "Ctrl-K" or "Alt-A", etc..
97 extern const char* skin_key_symmod_to_str ( int sym, int mod );
99 /* convert a key binding description into a (sym,mod) pair. returns 0 on success, -1
119 int mod; // really a SDL key modifier member in struct:__anon26516
129 extern SkinKeyCommand skin_keyset_get_command( SkinKeyset* kset, int sym, int mod );
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_keyboard.h 62 SDLMod mod; /**< current key modifiers */ member in struct:SDL_keysym
  /external/qemu/distrib/sdl-1.2.15/test/
checkkeys.c 22 int mod; local
24 mod = SDL_GetModState();
25 if(!mod) {
29 if(mod & KMOD_LSHIFT)
31 if(mod & KMOD_RSHIFT)
33 if(mod & KMOD_LCTRL)
35 if(mod & KMOD_RCTRL)
37 if(mod & KMOD_LALT)
39 if(mod & KMOD_RALT)
41 if(mod & KMOD_LMETA
    [all...]
  /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))
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_keyboard.h 62 SDLMod mod; /**< current key modifiers */ member in struct:SDL_keysym
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_keyboard.h 62 SDLMod mod; /**< current key modifiers */ member in struct:SDL_keysym
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_keyboard.h 62 SDLMod mod; /**< current key modifiers */ member in struct:SDL_keysym
  /external/fsck_msdos/
check.c 65 int mod = 0; local
115 mod |= readfat(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0, &fat);
116 if (mod & FSFATAL) {
126 mod |= readfat(dosfs, &boot, i, &currentFat);
128 if (mod & FSFATAL) {
133 mod |= comparefat(&boot, fat, currentFat, i);
135 if (mod & FSFATAL) {
144 mod |= checkfat(&boot, fat);
145 if (mod & FSFATAL) {
154 mod |= resetDosDirSection(&boot, fat)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/nanox/
SDL_nxevents.c 127 keysym -> mod = KMOD_NONE ;
131 GR_KEYMOD mod = keystroke -> modifiers ; local
133 if (mod & MWKMOD_LSHIFT)
134 keysym -> mod |= KMOD_LSHIFT ;
135 if (mod & MWKMOD_RSHIFT)
136 keysym -> mod |= KMOD_RSHIFT ;
137 if (mod & MWKMOD_LCTRL)
138 keysym -> mod |= KMOD_LCTRL ;
139 if (mod & MWKMOD_RCTRL)
140 keysym -> mod |= KMOD_RCTRL
    [all...]
  /external/valgrind/main/coregrind/m_gdbserver/
valgrind-low-mips32.c 133 Bool mod; local
134 supply_register_by_name ("pc", &newpc, &mod);
135 if (mod)
145 transfer_direction dir, int size, Bool *mod)
150 *mod = False;
155 case 0: VG_(transfer) (&mips1->guest_r0, buf, dir, size, mod); break;
156 case 1: VG_(transfer) (&mips1->guest_r1, buf, dir, size, mod); break;
157 case 2: VG_(transfer) (&mips1->guest_r2, buf, dir, size, mod); break;
158 case 3: VG_(transfer) (&mips1->guest_r3, buf, dir, size, mod); break;
159 case 4: VG_(transfer) (&mips1->guest_r4, buf, dir, size, mod); break
    [all...]
valgrind-low-s390x.c 110 Bool mod; local
111 supply_register_by_name ("pswa", &newpc, &mod);
112 if (mod)
122 transfer_direction dir, int size, Bool *mod)
127 *mod = False;
134 case 0: *mod = False; break; //GDBTD??? { "pswm", 0, 64 },
135 case 1: VG_(transfer) (&s390x->guest_IA, buf, dir, size, mod); break;
136 case 2: VG_(transfer) (&s390x->guest_r0, buf, dir, size, mod); break;
137 case 3: VG_(transfer) (&s390x->guest_r1, buf, dir, size, mod); break;
138 case 4: VG_(transfer) (&s390x->guest_r2, buf, dir, size, mod); break
    [all...]

Completed in 1515 milliseconds

1 2 3 4 5 6 7 8 91011>>