Searched defs:mod (Results 201 - 225 of 395) sorted by relevance

1234567891011>>

/external/libxkbcommon/xkbcommon/src/x11/
H A Dkeymap.c93 /* We represent mod masks in a single uint32_t value, with real mods
531 struct xkb_mod *mod = &keymap->mods.mods[NUM_REAL_MODS + i]; local
533 mod->type = MOD_VIRT;
534 mod->mapping = translate_mods(wire, 0, 0);
942 struct xkb_mod *mod = &keymap->mods.mods[NUM_REAL_MODS + i]; local
944 if (!adopt_atom(keymap->ctx, conn, wire, &mod->name))
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.cpp1315 uint8_t mod, rm, reg; local
1326 mod = modFromModRM(insn->modRM);
1363 switch (mod) {
1399 switch (mod) {
1427 insn->eaDisplacement = (mod == 0x1 ? EA_DISP_8 : EA_DISP_32);
/external/python/cpython2/Modules/cjkcodecs/
H A Dcjkcodecs.h248 PyObject *mod = PyImport_ImportModuleNoBlock("_multibytecodec"); local
249 if (mod == NULL)
251 cofunc = PyObject_GetAttrString(mod, "__create_codec");
252 Py_DECREF(mod);
360 PyObject *o, *mod; local
362 mod = PyImport_ImportModule((char *)modname);
363 if (mod == NULL)
366 o = PyObject_GetAttrString(mod, (char*)symbol);
384 Py_DECREF(mod);
388 Py_DECREF(mod);
[all...]
/external/python/cpython2/Python/
H A D_warnings.c127 PyObject *tmp_item, *action, *msg, *cat, *mod, *ln_obj; local
138 /* Python code: action, msg, cat, mod, ln = item */
142 mod = PyTuple_GET_ITEM(tmp_item, 3);
146 good_mod = check_matched(mod, module);
H A Dcodecs.c1002 PyObject *mod; local
1030 mod = PyImport_ImportModuleLevel("encodings", NULL, NULL, NULL, 0);
1031 if (mod == NULL) {
1043 Py_DECREF(mod);
/external/python/cpython3/Lib/
H A Doperator.py18 'length_hint', 'lshift', 'lt', 'matmul', 'methodcaller', 'mod',
100 def mod(a, b): function
435 __mod__ = mod
H A Dsmtpd.py942 mod = __import__(classname[:lastdot], globals(), locals(), [""]) variable
945 import __main__ as mod namespace
946 class_ = getattr(mod, classname)
/external/python/cpython3/Modules/_io/
H A D_iomodule.c573 PyObject *mod = PyState_FindModule(&_PyIO_Module);
575 if (mod == NULL || (state = IO_MOD_STATE(mod)) == NULL) {
587 PyObject *mod;
590 mod = PyWeakref_GET_OBJECT(state->locale_module);
591 if (mod != Py_None) {
592 Py_INCREF(mod);
593 return mod;
597 mod = PyImport_ImportModule("_bootlocale");
598 if (mod
571 PyObject *mod = PyState_FindModule(&_PyIO_Module); local
585 PyObject *mod; local
608 iomodule_traverse(PyObject *mod, visitproc visit, void *arg) argument
621 iomodule_clear(PyObject *mod) argument
632 iomodule_free(PyObject *mod) argument
[all...]
/external/python/cpython3/Modules/
H A D_testmultiphase.c126 call_state_registration_func(PyObject *mod, PyObject *args) argument
129 PyModuleDef *def = PyModule_GetDef(mod);
137 mod = PyState_FindModule(def);
138 if (mod == NULL) {
141 return mod;
143 ret = PyState_AddModule(mod, def);
556 execfunc_err(PyObject *mod) argument
591 PyInit__testmultiphase_exec_raise(PyObject *mod) argument
597 execfunc_unreported_exception(PyObject *mod) argument
H A Dparsermodule.c487 mod_ty mod; local
513 mod = PyAST_FromNodeObject(self->st_node, &self->st_flags,
515 if (!mod)
518 res = (PyObject *)PyAST_CompileObject(mod, filename,
/external/python/cpython3/Modules/cjkcodecs/
H A Dcjkcodecs.h249 PyObject *mod = PyImport_ImportModuleNoBlock("_multibytecodec"); local
250 if (mod == NULL)
252 cofunc = PyObject_GetAttrString(mod, "__create_codec");
253 Py_DECREF(mod);
363 PyObject *o, *mod; local
365 mod = PyImport_ImportModule(modname);
366 if (mod == NULL)
369 o = PyObject_GetAttrString(mod, symbol);
387 Py_DECREF(mod);
391 Py_DECREF(mod);
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.c1048 uint8_t mod, rm, reg; local
1059 mod = modFromModRM(insn->modRM);
1092 switch (mod) {
1127 switch (mod) {
1152 insn->eaDisplacement = (mod == 0x1 ? EA_DISP_8 : EA_DISP_32);
/external/tensorflow/tensorflow/contrib/labeled_tensor/
H A D__init__.py82 mod = _core.mod variable
/external/toybox/kconfig/
H A Dexpr.h31 no, mod, yes enumerator in enum:tristate
/external/toybox/toys/pending/
H A Dmodprobe.c62 static char *path2mod(char *file, char *mod) argument
68 if (!mod) mod = xmalloc(MODNAME_LEN);
73 mod[i] = (from[i] == '-') ? '_' : from[i];
74 mod[i] = '\0';
75 return mod;
140 * if add - create module entry, add it to data base and return the same mod.
142 static struct module_s *get_mod(char *mod, uint8_t add) argument
149 path2mod(mod, name);
316 struct module_s *mod; local
398 struct module_s *mod = get_mod(name, 1); local
[all...]
/external/v8/src/ia32/
H A Dassembler-ia32-inl.h502 void Operand::set_modrm(int mod, Register rm) { argument
503 DCHECK((mod & -4) == 0);
504 buf_[0] = mod << 6 | rm.code();
/external/v8/src/x64/
H A Dassembler-x64-inl.h582 void Operand::set_modrm(int mod, Register rm_reg) { argument
583 DCHECK(is_uint2(mod));
584 buf_[0] = mod << 6 | rm_reg.low_bits();
/external/v8/src/x87/
H A Dassembler-x87-inl.h502 void Operand::set_modrm(int mod, Register rm) { argument
503 DCHECK((mod & -4) == 0);
504 buf_[0] = mod << 6 | rm.code();
/external/aac/libAACdec/src/
H A Dchannelinfo.h374 UCHAR mod[4]; member in struct:__anon226::__anon227
H A Dusacdec_lpc.cpp766 FIXP_SGL pStability[], UCHAR *mod, int first_lpd_flag,
803 if ((k == 2) && (mod[0] == 3)) {
829 if (mod[0] < 2) { /* else: skip LPC1 */
868 if ((mod[2] < 2)) { /* else: skip LPC3 */
913 if (mod[0] > 0) {
763 CLpc_Read(HANDLE_FDK_BITSTREAM hBs, FIXP_LPC lsp[][M_LP_FILTER_ORDER], FIXP_LPC lpc4_lsf[M_LP_FILTER_ORDER], FIXP_LPC lsf_adaptive_mean_cand[M_LP_FILTER_ORDER], FIXP_SGL pStability[], UCHAR *mod, int first_lpd_flag, int last_lpc_lost, int last_frame_ok) argument
/external/adhd/cras/src/server/
H A Dcras_alsa_ucm.c93 static int modifier_enabled(struct cras_use_case_mgr *mgr, const char *mod) argument
104 if (!strcmp(mod, list[mod_idx]))
145 const char *mod, int enable)
147 return snd_use_case_set(mgr->mgr, enable ? "_enamod" : "_dismod", mod);
144 ucm_set_modifier_enabled(struct cras_use_case_mgr *mgr, const char *mod, int enable) argument
/external/elfutils/libdwfl/
H A Ddwfl_module_getdwarf.c72 open_elf (Dwfl_Module *mod, struct dwfl_file *file) argument
151 if (file == &mod->main)
153 mod->e_type = ehdr->e_type;
156 if (mod->e_type == ET_EXEC && file->vaddr != mod->low_addr)
157 mod->e_type = ET_DYN;
160 assert (mod->main.elf != NULL);
168 mod_verify_build_id (Dwfl_Module *mod) argument
170 assert (mod->build_id_len > 0);
172 switch (__builtin_expect (__libdwfl_find_build_id (mod, fals
206 __libdwfl_getelf(Dwfl_Module *mod) argument
269 find_prelink_address_sync(Dwfl_Module *mod, struct dwfl_file *file) argument
522 find_debuginfo(Dwfl_Module *mod) argument
548 find_debug_altlink(Dwfl_Module *mod, const char *filename) argument
696 translate_offs(GElf_Addr adjust, Dwfl_Module *mod, size_t phnum, GElf_Addr addrs[i_max], GElf_Xword strsz, GElf_Ehdr *ehdr) argument
818 find_dynsym(Dwfl_Module *mod) argument
900 find_aux_address_sync(Dwfl_Module *mod) argument
1044 find_symtab(Dwfl_Module *mod) argument
1294 __libdwfl_module_getebl(Dwfl_Module *mod) argument
1311 load_dw(Dwfl_Module *mod, struct dwfl_file *debugfile) argument
1360 find_dw(Dwfl_Module *mod) argument
1422 dwfl_module_getdwarf(Dwfl_Module *mod, Dwarf_Addr *bias) argument
[all...]
H A Ddwfl_segment_report_module.c830 Dwfl_Module *mod = INTUSE(dwfl_report_module) (dwfl, name, local
835 if (mod != NULL && (execlike || ehdr.e32.e_type == ET_EXEC))
836 mod->is_executable = true;
838 if (likely (mod != NULL) && build_id != NULL
839 && unlikely (INTUSE(dwfl_module_report_build_id) (mod,
844 mod->gc = true;
845 mod = NULL;
853 if (unlikely (mod == NULL))
870 && (*read_eagerly) (MODCB_ARGS (mod), &buffer, &buffer_available,
933 mod
[all...]
H A DlibdwflP.h302 Dwfl_Module *mod; /* Pointer back to containing module. */ member in struct:dwfl_cu
336 dwfl_adjusted_address (Dwfl_Module *mod, GElf_Addr addr) argument
338 return addr + mod->main_bias;
342 dwfl_deadjust_address (Dwfl_Module *mod, GElf_Addr addr) argument
344 return addr - mod->main_bias;
348 dwfl_adjusted_dwarf_addr (Dwfl_Module *mod, Dwarf_Addr addr) argument
350 return dwfl_adjusted_address (mod, (addr
351 - mod->debug.address_sync
352 + mod->main.address_sync));
356 dwfl_deadjust_dwarf_addr (Dwfl_Module *mod, Dwarf_Add argument
364 dwfl_adjusted_aux_sym_addr(Dwfl_Module *mod, Dwarf_Addr addr) argument
372 dwfl_deadjust_aux_sym_addr(Dwfl_Module *mod, Dwarf_Addr addr) argument
380 dwfl_adjusted_st_value(Dwfl_Module *mod, Elf *symelf, GElf_Addr addr) argument
390 dwfl_deadjust_st_value(Dwfl_Module *mod, Elf *symelf, GElf_Addr addr) argument
[all...]
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dminidump_writer.cc517 MDRawModule mod; local
518 if (!FillRawModule(mapping, true, i, mod, NULL))
520 list.CopyIndexAfterObject(j++, &mod, MD_MODULE_SIZE);
526 MDRawModule mod; local
527 if (!FillRawModule(iter->first, false, 0, mod, iter->second))
529 list.CopyIndexAfterObject(j++, &mod, MD_MODULE_SIZE);
535 // Fill the MDRawModule |mod| with information about the provided
541 MDRawModule& mod,
543 my_memset(&mod, 0, MD_MODULE_SIZE);
545 mod
538 FillRawModule(const MappingInfo& mapping, bool member, unsigned int mapping_id, MDRawModule& mod, const uint8_t* identifier) argument
[all...]

Completed in 699 milliseconds

1234567891011>>