/external/v8/test/mjsunit/regress/ |
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/boringssl/src/crypto/rsa/ |
blinding.c | 127 BIGNUM *mod; /* just a reference */ member in struct:bn_blinding_st 135 BN_BLINDING *BN_BLINDING_new(const BIGNUM *A, const BIGNUM *Ai, BIGNUM *mod) { 157 /* save a copy of mod in the BN_BLINDING structure */ 158 ret->mod = BN_dup(mod); 159 if (ret->mod == NULL) { 162 if (BN_get_flags(mod, BN_FLG_CONSTTIME) != 0) { 163 BN_set_flags(ret->mod, BN_FLG_CONSTTIME); 185 BN_free(r->mod); 208 if (!BN_mod_mul(b->A, b->A, b->A, b->mod, ctx)) [all...] |
/device/asus/fugu/power/ |
power.c | 96 struct intel_power_module *mod = (struct intel_power_module *) module; local 109 mod->pulse_duration = atoi(boostpulse_duration); 111 clock_gettime(CLOCK_MONOTONIC, &mod->last_boost_time); 114 boost_freq, mod->pulse_duration); 142 struct intel_power_module *mod = (struct intel_power_module *) module; local 152 timespec_sub(&diff_time, &curr_time, &mod->last_boost_time); 157 if (diff > mod->pulse_duration) { 159 mod->last_boost_time = curr_time;
|
/external/llvm/test/MC/Mips/ |
set-mips-directives.s | 27 mod $2, $4, $6 39 mod $2, $4, $6 63 # CHECK: mod $2, $4, $6 75 # CHECK: mod $2, $4, $6
|
/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);
|
/external/selinux/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/toybox/toys/other/ |
insmod.c | 19 #define init_module(mod, len, opts) syscall(__NR_init_module, mod, len, opts)
|
/hardware/broadcom/wlan/ |
.gitignore | 20 *.mod.c
|
/external/elfutils/src/tests/ |
backtrace.c | 54 dump_modules (Dwfl_Module *mod, void **userdata __attribute__ ((unused)), 59 dwfl_module_info (mod, NULL, NULL, &end, NULL, NULL, NULL, NULL); 90 Dwfl_Module *mod; local 118 mod = dwfl_addrmodule (dwfl, pc - 1); 119 if (mod) 120 symname2 = dwfl_module_addrname (mod, pc - 1); 131 mod = dwfl_addrmodule (dwfl, pc); 132 if (mod) 133 symname2 = dwfl_module_addrname (mod, pc); 168 Dwfl_Module *mod = dwfl_addrmodule (dwfl, pc_adjusted) local 230 Dwfl_Module *mod; member in struct:see_exec_module [all...] |
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),
|
/hardware/libhardware/modules/camera/ |
CameraHAL.h | 42 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/elfutils/src/libdwfl/ |
dwfl_module_getsrc.c | 33 dwfl_module_getsrc (Dwfl_Module *mod, Dwarf_Addr addr) 36 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL) 40 Dwfl_Error error = __libdwfl_addrcu (mod, addr, &cu);
|
/external/google-breakpad/src/third_party/libdisasm/ |
ia32_modrm.c | 18 #define MODRM_MOD_NODISP 0x00 /* mod == 00 */ 19 #define MODRM_MOD_DISP8 0x01 /* mod == 01 */ 20 #define MODRM_MOD_DISP32 0x02 /* mod == 10 */ 21 #define MODRM_MOD_NOEA 0x03 /* mod == 11 */ 45 unsigned int mod : 2; member in struct:modRM_byte 96 modrm->mod = b >> 6; /* top 2 bits */ 103 unsigned int mod ) { 118 if ( sib.base == SIB_BASE_EBP && ! mod ) { /* if base == 101 (ebp) */ 174 if ( modrm->mod != MOD16_MOD_NODISP ) { 189 if ( modrm->mod == MOD16_MOD_DISP8 ) [all...] |
/external/libnl/src/ |
nl-cls-add.c | 41 struct cls_module *mod; local 100 if (!(mod = lookup_cls_mod(ops))) 103 mod->parse_argv(cls, argc, argv);
|
/external/linux-tools-perf/src/tools/perf/util/ |
probe-finder.h | 26 Dwfl_Module *mod; member in struct:debuginfo 81 Dwfl_Module *mod; /* For solving symbols */ member in struct:trace_event_finder 89 Dwfl_Module *mod; /* For solving symbols */ member in struct:available_var_finder
|
/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)
|
/prebuilts/python/linux-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)
|
/system/media/camera/docs/ |
metadata-check-dependencies | 79 local mod=$1 85 if python -c "import $mod" >& /dev/null 100 echo "Missing python module $mod, please install with '$(packager_install $pkg)'"
|
/hardware/libhardware/modules/usbcamera/ |
CameraHAL.cpp | 89 int CameraHAL::open(const hw_module_t* mod, const char* name, hw_device_t** dev) { 94 ALOGV("%s: module=%p, name=%s, device=%p", __func__, mod, name, dev); 107 return mCameras[id]->open(mod, dev); 124 static int open_dev(const hw_module_t* mod, const char* name, hw_device_t** dev) { 125 return gCameraHAL.open(mod, name, dev);
|