/external/chromium_org/v8/src/x64/ |
disasm-x64.cc | 400 int* mod, 403 *mod = (data >> 6) & 3; 465 int mod, regop, rm; local 466 get_modrm(*modrmp, &mod, ®op, &rm); 467 RegisterNameMapping register_name = (mod == 3) ? direct_register_name : 469 switch (mod) { 486 // base == rbp means no base register (when mod == 0). 514 int disp = (mod == 2) ? *reinterpret_cast<int32_t*>(modrmp + 2) 537 return mod == 2 ? 6 : 3; 540 int disp = (mod == 2) ? *reinterpret_cast<int32_t*>(modrmp + 1 615 int mod, regop, rm; local 651 int mod, regop, rm; local 696 int mod, regop, rm; local 744 int mod, regop, rm; local 1031 int mod, regop, rm; local 1121 int mod, regop, rm; local 1132 int mod, regop, rm; local 1139 int mod, regop, rm; local 1146 int mod, regop, rm; local 1153 int mod, regop, rm; local 1159 int mod, regop, rm; local 1184 int mod, regop, rm; local 1195 int mod, regop, rm; local 1202 int mod, regop, rm; local 1210 int mod, regop, rm; local 1215 int mod, regop, rm; local 1224 int mod, regop, rm; local 1239 int mod, regop, rm; local 1246 int mod, regop, rm; local 1279 int mod, regop, rm; local 1288 int mod, regop, rm; local 1297 int mod, regop, rm; local 1318 int mod, regop, rm; local 1502 int mod, regop, rm; local 1525 int mod, regop, rm; local 1536 int mod, regop, rm; local 1606 int mod, regop, rm; local 1675 int mod, regop, rm; local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
ECFieldElement.java | 72 return new Fp(q, x.add(b.toBigInteger()).mod(q)); 77 return new Fp(q, x.subtract(b.toBigInteger()).mod(q)); 82 return new Fp(q, x.multiply(b.toBigInteger()).mod(q)); 87 return new Fp(q, x.multiply(b.toBigInteger().modInverse(q)).mod(q)); 92 return new Fp(q, x.negate().mod(q)); 97 return new Fp(q, x.multiply(x).mod(q)); 119 // p mod 4 == 3 128 // p mod 4 == 1 141 BigInteger fourQ = Q.shiftLeft(2).mod(q); 159 if (V.multiply(V).mod(q).equals(fourQ) [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-binop-nosse2.js | 87 function mod(a,b) { return a%b }; function 122 test(mod,check_mod,1,2); 123 %OptimizeFunctionOnNextCall(mod); 124 test(mod,check_mod,1,2); 126 test(mod,check_mod,1<<30,1); 127 %OptimizeFunctionOnNextCall(mod); 128 test(mod,check_mod,1<<30,1); 129 test(mod,check_mod,1,1<<30); 130 %OptimizeFunctionOnNextCall(mod); 131 test(mod,check_mod,1,1<<30) [all...] |
regress-binop.js | 87 function mod(a,b) { return a%b }; function 122 test(mod,check_mod,1,2); 123 %OptimizeFunctionOnNextCall(mod); 124 test(mod,check_mod,1,2); 126 test(mod,check_mod,1<<30,1); 127 %OptimizeFunctionOnNextCall(mod); 128 test(mod,check_mod,1<<30,1); 129 test(mod,check_mod,1,1<<30); 130 %OptimizeFunctionOnNextCall(mod); 131 test(mod,check_mod,1,1<<30) [all...] |
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/qemu/distrib/sdl-1.2.15/test/ |
testwm.c | 173 int mod; local 175 mod = SDL_GetModState(); 176 if(!mod) { 180 if(mod & KMOD_LSHIFT) 182 if(mod & KMOD_RSHIFT) 184 if(mod & KMOD_LCTRL) 186 if(mod & KMOD_RCTRL) 188 if(mod & KMOD_LALT) 190 if(mod & KMOD_RALT) 192 if(mod & KMOD_LMETA [all...] |
/external/v8/src/x64/ |
disasm-x64.cc | 395 int* mod, 398 *mod = (data >> 6) & 3; 460 int mod, regop, rm; local 461 get_modrm(*modrmp, &mod, ®op, &rm); 462 RegisterNameMapping register_name = (mod == 3) ? direct_register_name : 464 switch (mod) { 481 // base == rbp means no base register (when mod == 0). 509 int disp = (mod == 2) ? *reinterpret_cast<int32_t*>(modrmp + 2) 532 return mod == 2 ? 6 : 3; 535 int disp = (mod == 2) ? *reinterpret_cast<int32_t*>(modrmp + 1 610 int mod, regop, rm; local 646 int mod, regop, rm; local 690 int mod, regop, rm; local 735 int mod, regop, rm; local 1022 int mod, regop, rm; local 1112 int mod, regop, rm; local 1123 int mod, regop, rm; local 1130 int mod, regop, rm; local 1137 int mod, regop, rm; local 1144 int mod, regop, rm; local 1156 int mod, regop, rm; local 1167 int mod, regop, rm; local 1174 int mod, regop, rm; local 1182 int mod, regop, rm; local 1187 int mod, regop, rm; local 1196 int mod, regop, rm; local 1211 int mod, regop, rm; local 1218 int mod, regop, rm; local 1237 int mod, regop, rm; local 1258 int mod, regop, rm; local 1442 int mod, regop, rm; local 1465 int mod, regop, rm; local 1476 int mod, regop, rm; local 1540 int mod, regop, rm; local 1609 int mod, regop, rm; 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);
|
/external/libsepol/tests/ |
test-deps.c | 141 policydb_t mod; local 142 policydb_t *mods[] = { &mod }; 162 CU_ASSERT_FATAL(test_load_policy(&mod, POLICY_MOD, mls, "test-deps", policy) == 0); 168 policydb_destroy(&mod); 223 policydb_t mod; local 224 policydb_t *mods[] = { &mod }; 242 CU_ASSERT_FATAL(test_load_policy(&mod, POLICY_MOD, mls, "test-deps", policy) == 0); 248 policydb_destroy(&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);
|
/hardware/broadcom/wlan/ |
.gitignore | 20 *.mod.c
|
/hardware/ti/wlan/ |
.gitignore | 20 *.mod.c
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/ |
sce2.asm | 2 .Fill resq 1 ; fill to 8 mod 16 8 .Fill resq 1 ; fill to 8 mod 16
|
/external/kernel-headers/original/linux/ |
module.h | 61 struct module *mod; member in struct:module_kobject 353 static inline int module_is_live(struct module *mod) 355 return mod->state != MODULE_STATE_GOING; 371 int is_exported(const char *name, const struct module *mod); 373 extern void __module_put_and_exit(struct module *mod, long code) 378 unsigned int module_refcount(struct module *mod); 438 #define module_name(mod) \ 440 struct module *__mod = (mod); \ 444 #define __unsafe(mod) \ 446 if (mod && !(mod)->unsafe) { [all...] |
/hardware/libhardware/modules/camera/ |
CameraHAL.h | 39 int open(const hw_module_t* mod, const char* name, hw_device_t** dev);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
pytree_idempotency.py | 39 mod = sys.modules[name] 40 if mod is None or not hasattr(mod, "__file__"): 42 fn = mod.__file__
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pyclbr.py | 237 for mod, _mod2 in modules: 241 _readmodule(mod, path) 244 _readmodule(mod, path, inpackage) 246 _readmodule(mod, []) 252 mod, token = _getname(g) 253 if not mod or token != "import": 258 d = _readmodule(mod, path, inpackage) 321 mod = sys.argv[1] 322 if os.path.exists(mod): 323 path = [os.path.dirname(mod)] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
pytree_idempotency.py | 39 mod = sys.modules[name] 40 if mod is None or not hasattr(mod, "__file__"): 42 fn = mod.__file__
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pyclbr.py | 237 for mod, _mod2 in modules: 241 _readmodule(mod, path) 244 _readmodule(mod, path, inpackage) 246 _readmodule(mod, []) 252 mod, token = _getname(g) 253 if not mod or token != "import": 258 d = _readmodule(mod, path, inpackage) 321 mod = sys.argv[1] 322 if os.path.exists(mod): 323 path = [os.path.dirname(mod)] [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/bn/ |
exp.c | 9 #define MOD (8*8*8*8*8) 17 int j,i,size=SIZE,num=NUM,mod=MOD; local 55 d,num,d/num,(int)((d/num)*mod),md/10.0); 57 mod/=8;
|
/external/elfutils/libdwfl/ |
dwfl_module_getsrc.c | 54 dwfl_module_getsrc (Dwfl_Module *mod, Dwarf_Addr addr) 57 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL) 61 Dwfl_Error error = __libdwfl_addrcu (mod, addr, &cu);
|
/external/elfutils/tests/ |
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/openssl/crypto/bn/ |
exp.c | 9 #define MOD (8*8*8*8*8) 17 int j,i,size=SIZE,num=NUM,mod=MOD; local 55 d,num,d/num,(int)((d/num)*mod),md/10.0); 57 mod/=8;
|
/frameworks/av/media/common_time/ |
local_clock.cpp | 36 const hw_module_t* mod; local 43 res = hw_get_module_by_class(LOCAL_TIME_HARDWARE_MODULE_ID, NULL, &mod); 47 res = local_time_hw_device_open(mod, &dev_);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
__init__.py | 82 mod = sys.modules[self.__name__] 83 self.__dict__.update(mod.__dict__) 84 return getattr(mod, name)
|