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

1 2 3 4 5 67 8 91011>>

  /art/runtime/
disassembler_x86.cc 619 uint8_t mod = modrm >> 6; local
623 if (mod == 0 && rm == 5) { // fixed address
627 } else if (rm == 4 && mod != 3) { // SIB
634 if (base != 5 || mod != 0) {
646 if (mod == 1) {
649 } else if (mod == 2) {
655 if (mod == 3) {
662 if (mod == 1) {
665 } else if (mod == 2) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
tracer.c 680 PyObject * mod = PyModule_Create(&moduledef); local
681 if (mod == NULL) {
687 Py_DECREF(mod);
692 PyModule_AddObject(mod, "CTracer", (PyObject *)&CTracerType);
694 return mod;
702 PyObject * mod; local
704 mod = Py_InitModule3("coverage.tracer", NULL, MODULE_DOC);
705 if (mod == NULL) {
715 PyModule_AddObject(mod, "CTracer", (PyObject *)&CTracerType);
  /external/chromium_org/third_party/libxml/src/
gentest.py 269 for mod in skipped_modules:
270 if mod == name:
516 mod = arg.xpathEval('string(../@file)') variable
518 if (mod not in skipped_modules) and (func not in skipped_functions):
527 mod = ret.xpathEval('string(../@file)') variable
529 if (mod not in skipped_modules) and (func not in skipped_functions):
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
rtasm_x86sse.h 39 unsigned mod:2; /* mod_REG if this is just a register */ member in struct:x86_reg
70 /* Values for mod field of modr/m byte
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
radeonsi_shader.c 668 LLVMModuleRef mod; local
711 mod = bld_base->base.gallivm->module;
713 LLVMDumpModule(mod);
715 radeon_llvm_compile(mod, &inst_bytes, &inst_byte_count, "SI", dump);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/android/
native_android.cpp 601 const hw_module_t *mod; local
606 err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &mod);
608 const gralloc_module_t *gr = (gralloc_module_t *) mod;
  /external/elfutils/libdwfl/
dwfl_segment_report_module.c 544 Dwfl_Module *mod = INTUSE(dwfl_report_module) (dwfl, name, local
546 if (likely (mod != NULL) && build_id != NULL
547 && unlikely (INTUSE(dwfl_module_report_build_id) (mod,
552 mod->gc = true;
553 mod = NULL;
561 if (unlikely (mod == NULL))
578 if ((*read_eagerly) (MODCB_ARGS (mod), &buffer, &buffer_available,
641 mod->main.elf = elf;
642 mod->main.bias = bias;
libdwflP.h 197 Dwfl_Module *mod; /* Pointer back to containing module. */ member in struct:dwfl_cu
240 extern void __libdwfl_module_free (Dwfl_Module *mod) internal_function;
250 extern Dwfl_Error __libdwfl_relocate (Dwfl_Module *mod, Elf *file, bool debug)
255 extern Dwfl_Error __libdwfl_relocate_section (Dwfl_Module *mod, Elf *relocated,
261 MOD->dwfl->callbacks->section_address is called to determine the actual
263 extern Dwfl_Error __libdwfl_relocate_value (Dwfl_Module *mod, Elf *elf,
270 /* Ensure that MOD->ebl is set up. */
271 extern Dwfl_Error __libdwfl_module_getebl (Dwfl_Module *mod) internal_function;
276 extern Dwfl_Error __libdwfl_nextcu (Dwfl_Module *mod, struct dwfl_cu *lastcu,
280 extern Dwfl_Error __libdwfl_addrcu (Dwfl_Module *mod, Dwarf_Addr addr
    [all...]
link_map.c 206 Dwfl_Module *mod;
207 (void) INTUSE(dwfl_addrsegment) (dwfl, vaddr, &mod);
208 if (mod == NULL)
212 Elf_Scn *scn = INTUSE(dwfl_module_address_section) (mod, &vaddr, &bias);
218 if (likely (mod->e_type != ET_REL) && mod->main.elf != NULL)
221 vaddr - mod->main.bias, minread, mod->main.elf);
378 Dwfl_Module *mod;
379 int segndx = INTUSE(dwfl_addrsegment) (dwfl, l_ld, &mod);
205 Dwfl_Module *mod; local
376 Dwfl_Module *mod; local
    [all...]
linux-kernel-modules.c 194 Dwfl_Module *mod = INTUSE(dwfl_report_elf) (dwfl, KERNEL_MODNAME, local
196 if (mod == NULL)
200 mod->e_type = ET_DYN;
430 /* Look for a build ID note in NOTESFILE and associate the ID with MOD. */
432 check_notes (Dwfl_Module *mod, const char *notesfile,
473 (mod, NULL, mod->name, 0, secname, 0, NULL, &vaddr) != 0
479 return INTUSE(dwfl_module_report_build_id) (mod, bits,
496 check_module_notes (Dwfl_Module *mod)
499 if (asprintf (&dirs[0], MODNOTESFMT, mod->name) < 0
575 Dwfl_Module *mod = report (); local
837 Dwfl_Module *mod = INTUSE(dwfl_report_module) (dwfl, modname, local
    [all...]
  /external/javassist/src/main/javassist/compiler/
MemberResolver.java 137 int mod = clazz.getModifiers(); local
138 boolean isIntf = Modifier.isInterface(mod);
153 if (isIntf || Modifier.isAbstract(mod))
  /external/libsepol/src/
module.c 372 static int module_package_read_offsets(sepol_module_package_t * mod,
399 mod->version = le32_to_cpu(buf[1]);
463 int sepol_module_package_read(sepol_module_package_t * mod,
472 if (module_package_read_offsets(mod, file, &offsets, &nsec))
511 mod->file_contexts_len = len - sizeof(uint32_t);
512 mod->file_contexts =
513 (char *)malloc(mod->file_contexts_len);
514 if (!mod->file_contexts) {
519 (mod->file_contexts, file,
520 mod->file_contexts_len))
652 sepol_module_package_t *mod = NULL; local
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.c 1036 debug("Cannot have Mod = 0b11 and a SIB byte");
1101 uint8_t mod, rm, reg; local
    [all...]
  /external/llvm/unittests/IR/
PassManagerTest.cpp 405 Module* mod = new Module("test-mem", getGlobalContext()); local
406 mod->setDataLayout("e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-"
409 mod->setTargetTriple("x86_64-unknown-linux-gnu");
431 /*Name=*/"test1", mod);
439 /*Name=*/"test2", mod);
447 /*Name=*/"test3", mod);
455 /*Name=*/"test4", mod);
538 return mod;
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_x86sse.h 39 unsigned mod:2; /* mod_REG if this is just a register */ member in struct:x86_reg
70 /* Values for mod field of modr/m byte
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_shader.c 668 LLVMModuleRef mod; local
711 mod = bld_base->base.gallivm->module;
713 LLVMDumpModule(mod);
715 radeon_llvm_compile(mod, &inst_bytes, &inst_byte_count, "SI", dump);
  /external/mesa3d/src/gallium/state_trackers/egl/android/
native_android.cpp 601 const hw_module_t *mod; local
606 err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &mod);
608 const gralloc_module_t *gr = (gralloc_module_t *) mod;
  /external/valgrind/main/coregrind/m_gdbserver/
target.c 302 Bool mod; local
306 valgrind_to_gdbserver, size, &mod);
307 // Note: the *mod received from transfer_register is not interesting.
309 supply_register (regno, buf, &mod);
310 if (mod && VG_(debugLog_getLevel)() > 1) {
351 Bool mod; local
369 valgrind_to_gdbserver, size, &mod);
375 gdbserver_to_valgrind, size, &mod);
376 if (mod && VG_(debugLog_getLevel)() > 1) {
580 void* VG_(dmemcpy) ( void *d, const void *s, SizeT sz, Bool *mod )
    [all...]
  /frameworks/compile/mclinker/tools/llvm-mcld/
llvm-mcld.cpp 1361 Module &mod = *M.get(); local
    [all...]
  /hardware/libhardware/tests/keymaster/
keymaster_test.cpp 337 const hw_module_t* mod; local
338 ASSERT_EQ(0, hw_get_module_by_class(KEYSTORE_HARDWARE_MODULE_ID, NULL, &mod))
341 std::cout << "Using keymaster module: " << mod->name << std::endl;
343 ASSERT_EQ(0, keymaster_open(mod, &sDevice))
346 ASSERT_EQ(KEYMASTER_MODULE_API_VERSION_0_2, mod->module_api_version)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ConstructorTest.java 222 int mod = 0; local
226 mod = ctor.getModifiers();
228 ((mod & Modifier.PUBLIC) == Modifier.PUBLIC)
229 && ((mod & Modifier.PRIVATE) == 0));
237 mod = ctor.getModifiers();
239 ((mod & Modifier.PRIVATE) == Modifier.PRIVATE)
240 && ((mod & Modifier.PUBLIC) == 0));
248 mod = ctor.getModifiers();
250 ((mod & Modifier.PROTECTED) == Modifier.PROTECTED)
251 && ((mod & Modifier.PUBLIC) == 0))
    [all...]
  /art/runtime/jdwp/
jdwp_handler.cc 1256 JdwpEventMod& mod = pEvent->mods[i]; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 51 import org.apache.xpath.operations.Mod;
150 expr = mod(opPos); break;
411 * Compile a 'mod' operation.
415 * @return reference to {@link org.apache.xpath.operations.Mod} instance.
419 protected Expression mod(int opPos) throws TransformerException method in class:Compiler
421 return compileOperation(new Mod(), opPos);
    [all...]
  /external/fsck_msdos/
dir.c 536 int mod = FSOK; local
603 mod |= THISMOD|FSDIRMOD;
609 mod |= THISMOD|FSDIRMOD;
612 mod |= FSERROR;
714 mod |= removede(f, boot, fat,
753 mod |= k = removede(f, boot, fat,
757 if (mod & FSFATAL)
763 mod |= THISMOD;
779 mod |= THISMOD|FSDIRMOD|FSFATMOD;
781 mod |= FSERROR
980 int mod; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MultisetsTest.java 220 Multiset<String> mod = HashMultiset.create(); local
221 Multiset<String> unmod = Multisets.unmodifiableMultiset(mod);
222 assertNotSame(mod, unmod);

Completed in 719 milliseconds

1 2 3 4 5 67 8 91011>>