/external/selinux/sepolgen/src/sepolgen/ |
module.py | 141 of "foo.te". This will generate "foo.mod" and "foo.pp". 150 modname = basename + ".mod"
|
/external/toybox/kconfig/ |
confdata.c | 229 sym->def[def].tri = mod; 294 case mod: 503 case mod: 741 case mod:
|
mconf.c | 490 case mod: ch = 'M'; break; 543 case mod: ch = 'M'; break; 660 if (sym_set_tristate_value(sym, mod)) 670 sym_set_tristate_value(sym, mod);
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/ |
module.py | 141 of "foo.te". This will generate "foo.mod" and "foo.pp". 150 modname = basename + ".mod"
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/ |
module.py | 141 of "foo.te". This will generate "foo.mod" and "foo.pp". 150 modname = basename + ".mod"
|
/external/fio/ |
verify.c | 337 unsigned int len, mod, i, size, pattern_size; local 345 mod = header_size % pattern_size; 348 size = pattern_size - mod; 351 if (memcmp(buf + i, pattern + mod, size)) 354 mod = 0; 358 if (buf[i] != pattern[mod]) { 361 bits = hweight8(buf[i] ^ pattern[mod]); 363 buf[i], pattern[mod], bits); 368 mod++; 369 if (mod == td->o.verify_pattern_bytes [all...] |
/external/chromium-trace/trace-viewer/third_party/six/ |
test_six.py | 74 mod = six.moves.html_parser 75 assert sys.modules[html_name] is mod 245 assert attr.mod == "bar" 247 assert attr.mod == "foo" 261 assert attr.mod == "spam" 263 assert attr.mod == "foo" 266 assert attr.mod == "bar" 268 assert attr.mod == "foo"
|
/external/guava/guava-tests/test/com/google/common/primitives/ |
UnsignedLongTest.java | 229 UnsignedLong unsignedRem = aUnsigned.mod(bUnsigned); 240 UnsignedLong.fromLongBits(a).mod(UnsignedLong.ZERO);
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_init.c | 189 LLVMModuleRef mod; local 194 &mod, &error);
|
/external/mesa3d/src/gallium/drivers/r600/ |
r600_llvm.c | 314 LLVMModuleRef mod, 321 return radeon_llvm_compile(mod, inst_bytes, inst_byte_count,
|
/external/v8/test/mjsunit/ |
binary-op-newspace.js | 30 // Check that a mod where the stub code hits a failure in heap number
|
/frameworks/base/tests/CoreTests/android/core/ |
HeapTest.java | 163 int mod = 0; local 169 if (++mod % 16 == 0) {
|
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
DefineGrammarItemsWalker.g | 230 grammar.defineRule($id.getToken(), $modifier.mod, opts, $start, $args, numAlts); 267 modifier returns [String mod] 270 $mod = $start.getToken().getText();
|
/external/ltrace/ |
output.c | 591 Dwfl_Module *mod = dwfl_addrmodule(dwfl, pc); local 595 if (mod != NULL) { 597 modname = dwfl_module_info(mod, NULL, NULL, NULL, NULL, 599 symname = dwfl_module_addrinfo(mod, pc, &off, &sym, 609 if (mod != NULL) { 610 Dwfl_Line *l = dwfl_module_getsrc(mod, pc);
|
/external/skia/tests/ |
MathTest.cpp | 613 T div, mod; local 614 SkTDivMod(numer, denom, &div, &mod); 616 REPORTER_ASSERT(r, numer%denom == mod); 626 T div, mod; local 627 SkTDivMod(numer, denom, &div, &mod); 629 REPORTER_ASSERT(r, numer%denom == mod);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
modulefinder.py | 242 mod = None 246 mod = name[:-n] 248 if mod and mod != "__init__": 249 modules[mod] = mod
|
trace.py | 121 --ignore-module=<mod> Ignore the given module(s) and its submodules 149 for mod in self._mods: 150 if mod == modulename: # Identical names, so ignore 155 n = len(mod) 158 # of "name" is greater than that of "mod") 159 if mod == modulename[:n] and modulename[n] == '.': 747 for mod in val.split(","): 748 ignore_modules.append(mod.strip())
|
pickle.py | 743 mod = sys.modules[module] 744 klass = getattr(mod, name) 808 mod = getattr(func, "__module__", None) 809 if mod is not None: 810 return mod [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
modulefinder.py | 242 mod = None 246 mod = name[:-n] 248 if mod and mod != "__init__": 249 modules[mod] = mod
|
trace.py | 121 --ignore-module=<mod> Ignore the given module(s) and its submodules 149 for mod in self._mods: 150 if mod == modulename: # Identical names, so ignore 155 n = len(mod) 158 # of "name" is greater than that of "mod") 159 if mod == modulename[:n] and modulename[n] == '.': 747 for mod in val.split(","): 748 ignore_modules.append(mod.strip())
|
pickle.py | 743 mod = sys.modules[module] 744 klass = getattr(mod, name) 808 mod = getattr(func, "__module__", None) 809 if mod is not None: 810 return mod [all...] |
/external/linux-tools-perf/src/tools/lib/traceevent/ |
event-parse.c | 311 char *mod; member in struct:func_map 318 char *mod; member in struct:func_list 372 func_map[i].mod = funclist->mod; 386 func_map[pevent->func_count].mod = NULL; 457 * @mod: the kernel module the function may be in (NULL for none) 463 unsigned long long addr, char *mod) 475 if (mod) { 476 item->mod = strdup(mod); [all...] |
/external/libvncserver/libvncclient/ |
rfbproto.c | 749 uint64_t gen, mod, resp, priv, pub, key; local 754 if (!ReadFromRFBServer(client, (char *)&mod, 8)) return FALSE; 757 mod = rfbClientSwap64IfLE(mod); 784 pub = rfbPowM64(gen, priv, mod); 785 key = rfbPowM64(resp, priv, mod); 828 uint8_t *mod = NULL, *resp, *pub, *key, *shared; local 859 mod = (uint8_t*)malloc(keylen*4); 860 if (!mod) 865 resp = mod+keylen [all...] |
/external/lldb/examples/summaries/cocoa/ |
objc_runtime.py | 79 mod = target.module['Foundation'] 81 mod = None 82 if mod is None or mod.IsValid() == 0: 84 ver = mod.GetVersion()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
Tnaf.java | 344 u[i] = (byte) ECConstants.TWO.subtract((r0.subtract(r1.shiftLeft(1))).mod(ECConstants.FOUR)).intValue(); 513 tw = ECConstants.TWO.multiply(us[0]).multiply(u1invert).mod(twoToW); 733 // uUnMod = r0 + r1*tw mod 2^width 735 = r0.add(r1.multiply(tw)).mod(pow2w);
|