HomeSort by relevance Sort by last modified time
    Searched refs:mod (Results 126 - 150 of 777) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_scriptpackages.py 13 mod = __import__(package)
15 klass = getattr(mod, package)
20 obj = mod.application(0)
  /external/deqp/scripts/khr_util/
format.py 41 def nextMod (val, mod):
42 if val % mod == 0:
43 return val + mod
45 return int(val/mod)*mod + mod
  /external/javassist/src/main/javassist/
CtNewClass.java 93 int mod = c.getModifiers(); local
94 if (isInheritable(mod, superclazz)) {
98 cons.setModifiers(mod & (Modifier.PUBLIC | Modifier.PROTECTED | Modifier.PRIVATE));
110 private boolean isInheritable(int mod, CtClass superclazz) {
111 if (Modifier.isPrivate(mod))
114 if (Modifier.isPackage(mod)) {
  /external/llvm/tools/lto/
lto.cpp 188 void lto_module_dispose(lto_module_t mod) { delete unwrap(mod); }
190 const char* lto_module_get_target_triple(lto_module_t mod) {
191 return unwrap(mod)->getTargetTriple().c_str();
194 void lto_module_set_target_triple(lto_module_t mod, const char *triple) {
195 return unwrap(mod)->setTargetTriple(triple);
198 unsigned int lto_module_get_num_symbols(lto_module_t mod) {
199 return unwrap(mod)->getSymbolCount();
202 const char* lto_module_get_symbol_name(lto_module_t mod, unsigned int index) {
203 return unwrap(mod)->getSymbolName(index)
    [all...]
  /external/elfutils/src/tests/
line2addr.c 33 print_address (Dwfl_Module *mod, Dwarf_Addr address)
35 int n = dwfl_module_relocations (mod);
40 int i = dwfl_module_relocate_address (mod, &address);
45 const char *modname = dwfl_module_info (mod, NULL, NULL, NULL,
47 const char *secname = dwfl_module_relocation_info (mod, i, NULL);
68 handle_module (Dwfl_Module *mod __attribute__ ((unused)),
79 if (dwfl_module_getsrc_file (mod, a->file, a->line, 0, &lines, &nlines) == 0)
90 print_address (mod, addr);
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);
  /external/toybox/toys/other/
rmmod.c 23 #define delete_module(mod, flags) syscall(__NR_delete_module, mod, flags)
modinfo.c 25 long mod;
78 for (s = toys.optargs[TT.mod]; *s; s++) {
101 for(TT.mod = 0; TT.mod<toys.optc; TT.mod++) {
102 char *s = strstr(toys.optargs[TT.mod], ".ko");
104 if (s && !s[3]) modinfo_file(toys.optargs[TT.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/javassist/src/main/javassist/tools/reflect/
Reflection.java 228 int mod = f.getModifiers(); local
229 if ((mod & Modifier.PUBLIC) != 0 && (mod & Modifier.FINAL) == 0) {
281 int mod = m.getModifiers(); local
282 if (Modifier.isPublic(mod) && !Modifier.isAbstract(mod))
283 processMethods0(mod, clazz, m, i, dontSearch);
287 private void processMethods0(int mod, CtClass clazz,
299 if (Modifier.isNative(mod))
303 if (Modifier.isFinal(mod)) {
360 int mod = f.getModifiers(); local
    [all...]
  /external/valgrind/coregrind/m_gdbserver/
regcache.c 211 unsigned char *register_data_for_supply (int n, int fetch, Bool *mod)
218 *mod = False;
220 *mod = True;
225 void supply_register (int n, const void *buf, Bool *mod)
229 buf, register_size (n), mod); local
231 *mod = True;
234 void supply_register_from_string (int n, const char *buf, Bool *mod)
240 bytes_register, register_size (n), mod); local
242 *mod = True;
245 void supply_register_by_name (const char *name, const void *buf, Bool *mod)
247 supply_register (find_regno (name), buf, mod); local
    [all...]
  /external/v8/src/ia32/
disasm-ia32.cc 312 static void get_modrm(byte data, int* mod, int* regop, int* rm) {
313 *mod = (data >> 6) & 3;
368 int mod, regop, rm; local
369 get_modrm(*modrmp, &mod, &regop, &rm);
370 RegisterNameMapping register_name = (mod == 3) ? direct_register_name :
372 switch (mod) {
415 int disp = mod == 2 ? *reinterpret_cast<int32_t*>(modrmp + 2)
430 return mod == 2 ? 6 : 3;
433 int disp = mod == 2 ? *reinterpret_cast<int32_t*>(modrmp + 1)
439 return mod == 2 ? 5 : 2
476 int mod, regop, rm; local
504 int mod, regop, rm; local
533 int mod, regop, rm; local
575 int mod, regop, rm; local
991 int mod, regop, rm; local
1015 int mod, regop, rm; local
1044 int mod, regop, rm; local
1068 int mod, regop, rm; local
1076 int mod, regop, rm; local
1085 int mod, regop, rm; local
1107 int mod, regop, rm; local
1117 int mod, regop, rm; local
1129 int mod, regop, rm; local
1140 int mod, regop, rm; local
1178 int mod, regop, rm; local
1197 int mod, regop, rm; local
1223 int mod, regop, rm; local
1241 int mod, regop, rm; local
1250 int mod, regop, rm; local
1261 int mod, regop, rm; local
1271 int mod, regop, rm; local
1281 int mod, regop, rm; local
1291 int mod, regop, rm; local
1305 int mod, regop, rm; local
1318 int mod, regop, rm; local
1326 int mod, regop, rm; local
1334 int mod, regop, rm; local
1342 int mod, regop, rm; local
1350 int mod, regop, rm; local
1356 int mod, regop, rm; local
1362 int mod, regop, rm; local
1372 int mod, regop, rm; local
1383 int mod, regop, rm; local
1391 int mod, regop, rm; local
1402 int mod, regop, rm; local
1411 int mod, regop, rm; local
1417 int mod, regop, rm; local
1424 int mod, regop, rm; local
1432 int mod, regop, rm; local
1443 int mod, regop, rm; local
1451 int mod, regop, rm; local
1467 int mod, regop, rm; local
1525 int mod, regop, rm; local
1531 int mod, regop, rm; local
1537 int mod, regop, rm; local
1554 int mod, regop, rm; local
1595 int mod, regop, rm; local
1601 int mod, regop, rm; local
1607 int mod, regop, rm; local
1613 int mod, regop, rm; local
1619 int mod, regop, rm; local
1626 int mod, regop, rm; local
    [all...]
  /external/v8/src/x87/
disasm-x87.cc 312 static void get_modrm(byte data, int* mod, int* regop, int* rm) {
313 *mod = (data >> 6) & 3;
368 int mod, regop, rm; local
369 get_modrm(*modrmp, &mod, &regop, &rm);
370 RegisterNameMapping register_name = (mod == 3) ? direct_register_name :
372 switch (mod) {
415 int disp = mod == 2 ? *reinterpret_cast<int32_t*>(modrmp + 2)
430 return mod == 2 ? 6 : 3;
433 int disp = mod == 2 ? *reinterpret_cast<int32_t*>(modrmp + 1)
439 return mod == 2 ? 5 : 2
476 int mod, regop, rm; local
504 int mod, regop, rm; local
533 int mod, regop, rm; local
575 int mod, regop, rm; local
1012 int mod, regop, rm; local
1036 int mod, regop, rm; local
1065 int mod, regop, rm; local
1089 int mod, regop, rm; local
1097 int mod, regop, rm; local
1106 int mod, regop, rm; local
1128 int mod, regop, rm; local
1138 int mod, regop, rm; local
1150 int mod, regop, rm; local
1161 int mod, regop, rm; local
1199 int mod, regop, rm; local
1218 int mod, regop, rm; local
1244 int mod, regop, rm; local
1262 int mod, regop, rm; local
1271 int mod, regop, rm; local
1282 int mod, regop, rm; local
1292 int mod, regop, rm; local
1302 int mod, regop, rm; local
1312 int mod, regop, rm; local
1326 int mod, regop, rm; local
1339 int mod, regop, rm; local
1347 int mod, regop, rm; local
1355 int mod, regop, rm; local
1363 int mod, regop, rm; local
1371 int mod, regop, rm; local
1377 int mod, regop, rm; local
1383 int mod, regop, rm; local
1393 int mod, regop, rm; local
1404 int mod, regop, rm; local
1412 int mod, regop, rm; local
1423 int mod, regop, rm; local
1432 int mod, regop, rm; local
1438 int mod, regop, rm; local
1445 int mod, regop, rm; local
1453 int mod, regop, rm; local
1464 int mod, regop, rm; local
1472 int mod, regop, rm; local
1488 int mod, regop, rm; local
1546 int mod, regop, rm; local
1552 int mod, regop, rm; local
1558 int mod, regop, rm; local
1575 int mod, regop, rm; local
1616 int mod, regop, rm; local
1622 int mod, regop, rm; local
1628 int mod, regop, rm; local
1634 int mod, regop, rm; local
1640 int mod, regop, rm; local
1647 int mod, regop, rm; local
    [all...]
  /external/elfutils/src/libdwfl/
segment.c 158 for (Dwfl_Module *mod = dwfl->modulelist; mod != NULL; mod = mod->next)
159 if (! mod->gc)
161 const GElf_Addr start = __libdwfl_segment_start (dwfl, mod->low_addr);
162 const GElf_Addr end = __libdwfl_segment_end (dwfl, mod->high_addr);
212 mod->segment = idx;
214 /* Put MOD in the table for each segment that's inside it. */
216 dwfl->lookup_module[idx++] = mod;
    [all...]
dwfl_dwarf_line.c 41 *bias = dwfl_adjusted_dwarf_addr (cu->mod, 0);
dwfl_module_addrsym.c 36 __libdwfl_addrsym (Dwfl_Module *mod, GElf_Addr addr, GElf_Off *off,
40 int syments = INTUSE(dwfl_module_getsymtab) (mod);
61 addr_shndx = __libdwfl_find_section_ndx (mod, &v);
65 return addr_shndx == __libdwfl_find_section_ndx (mod, &v);
71 GElf_Addr mod_addr = dwfl_deadjust_st_value (mod, symelf, addr);
155 resolved ? mod->main.elf : elf, shndx))
200 const char *name = __libdwfl_getsym (mod, i, &sym, &value,
214 if (resolved && mod->e_type != ET_REL)
217 adjusted_st_value = dwfl_adjusted_st_value (mod, elf,
227 /* First go through global symbols. mod->first_global an
    [all...]
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
import_string.py 67 mod = __import__(s)
70 mod = getattr(mod, part)
71 return mod
  /external/llvm/test/MC/Mips/
set-mips0-directive.s 8 mod $2, $4, $6
20 # CHECK: mod $2, $4, $6
  /external/mesa3d/src/gallium/drivers/r600/
r600_llvm.h 21 LLVMModuleRef mod,
  /external/elfutils/src/libdwelf/
dwelf_elf_gnu_build_id.c 41 find_elf_build_id (Dwfl_Module *mod, int e_type, Elf *elf,
76 if (mod != NULL)
103 else if (mod == NULL || e_type != ET_REL)
105 else if (__libdwfl_relocate_value (mod, elf, &shstrndx,
118 __libdwfl_find_elf_build_id (Dwfl_Module *mod, Elf *elf,
128 // MOD->E_TYPE is zero here.
129 assert (ehdr->e_type != ET_REL || mod != NULL);
131 return find_elf_build_id (mod, ehdr->e_type, elf,
  /external/drm_gralloc/
gralloc.cpp 24 #define LOG_TAG "GRALLOC-MOD"
53 static int drm_mod_perform(const struct gralloc_module_t *mod, int op, ...)
55 struct drm_module_t *dmod = (struct drm_module_t *) mod;
81 static int drm_mod_register_buffer(const gralloc_module_t *mod,
84 struct drm_module_t *dmod = (struct drm_module_t *) mod;
94 static int drm_mod_unregister_buffer(const gralloc_module_t *mod,
100 static int drm_mod_lock(const gralloc_module_t *mod, buffer_handle_t handle,
113 static int drm_mod_unlock(const gralloc_module_t *mod, buffer_handle_t handle)
115 struct drm_module_t *dmod = (struct drm_module_t *) mod;
201 static int drm_mod_open(const struct hw_module_t *mod,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
domreg.py 54 mod = well_known_implementations.get(name)
55 if mod:
56 mod = __import__(mod, {}, {}, ['getDOMImplementation'])
57 return mod.getDOMImplementation()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
domreg.py 54 mod = well_known_implementations.get(name)
55 if mod:
56 mod = __import__(mod, {}, {}, ['getDOMImplementation'])
57 return mod.getDOMImplementation()
  /external/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...]

Completed in 881 milliseconds

1 2 3 4 56 7 8 91011>>