Searched refs:mod (Results 151 - 175 of 781) sorted by relevance

1234567891011>>

/external/kmod/libkmod/
H A Dlibkmod.c398 struct kmod_module *mod; local
400 mod = hash_find(ctx->modules_by_name, key);
402 DBG(ctx, "get module name='%s' found=%p\n", key, mod);
404 return mod;
407 void kmod_pool_add_module(struct kmod_ctx *ctx, struct kmod_module *mod, argument
410 DBG(ctx, "add %p key='%s'\n", mod, key);
412 hash_add(ctx->modules_by_name, key, mod);
415 void kmod_pool_del_module(struct kmod_ctx *ctx, struct kmod_module *mod, argument
418 DBG(ctx, "del %p key='%s'\n", mod, key);
454 struct kmod_module *mod; local
535 struct kmod_module *mod; local
611 struct kmod_module *mod; local
642 struct kmod_module *mod; local
676 struct kmod_module *mod; local
712 struct kmod_module *mod; local
[all...]
/external/libxaac/decoder/
H A Dixheaacd_acelp_bitparse.c182 VOID ixheaacd_lpc_data(WORD32 first_lpd_flag, WORD32 mod[], argument
203 if (mod[0] < 3) {
213 if (mod[0] < 2) {
224 if (mod[2] < 2) {
338 switch (pstr_td_frame_data->mod[k]) {
389 pstr_td_frame_data->mod[0] = pstr_td_frame_data->mod[1] =
390 pstr_td_frame_data->mod[2] = pstr_td_frame_data->mod[3] = 3;
392 pstr_td_frame_data->mod[
[all...]
/external/compiler-rt/lib/stats/
H A Dstats_client.cc65 extern "C" void __sanitizer_stat_init(StatModule *mod) { argument
66 mod->next = list;
67 list = mod;
/external/elfutils/libdwfl/
H A Ddwfl_module_getsrc.c33 dwfl_module_getsrc (Dwfl_Module *mod, Dwarf_Addr addr) argument
36 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
40 Dwfl_Error error = __libdwfl_addrcu (mod, addr, &cu);
H A Ddwfl_module_addrsym.c33 Dwfl_Module *mod; member in struct:search_state
76 state->addr_shndx = __libdwfl_find_section_ndx (state->mod, &v);
80 return state->addr_shndx == __libdwfl_find_section_ndx (state->mod, &v);
86 GElf_Addr mod_addr = dwfl_deadjust_st_value (state->mod, symelf,
157 resolved ? state->mod->main.elf : elf,
204 const char *name = __libdwfl_getsym (state->mod, i, &sym, &value,
219 if (resolved && state->mod->e_type != ET_REL)
222 adjusted_st_value = dwfl_adjusted_st_value (state->mod, elf,
248 .mod = _mod,
265 /* First go through global symbols. mod
311 dwfl_module_addrsym(Dwfl_Module *mod, GElf_Addr addr, GElf_Sym *closest_sym, GElf_Word *shndxp) argument
[all...]
H A Dlink_map.c183 Dwfl_Module *mod;
184 (void) INTUSE(dwfl_addrsegment) (dwfl, vaddr, &mod);
185 if (mod == NULL)
189 Elf_Scn *scn = INTUSE(dwfl_module_address_section) (mod, &vaddr, &bias);
195 if (likely (mod->e_type != ET_REL) && mod->main.elf != NULL)
198 vaddr - mod->main.bias, minread, mod->main.elf);
393 Dwfl_Module *mod = NULL;
453 mod
182 Dwfl_Module *mod; local
391 Dwfl_Module *mod = NULL; local
509 consider_executable(Dwfl_Module *mod, GElf_Addr at_phdr, GElf_Addr at_entry, uint_fast8_t *elfclass, uint_fast8_t *elfdata, Dwfl_Memory_Callback *memory_callback, void *memory_callback_arg) argument
[all...]
/external/elfutils/tests/
H A Ddwfl-addr-sect.c35 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),
/external/google-breakpad/src/third_party/libdisasm/
H A Dia32_modrm.c18 #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
[all...]
/external/llvm/test/MC/ARM/
H A Daligned-blx.s26 blx _aligned @ PC=0 (mod 4)
27 blx _aligned @ PC=0 (mod 4)
29 blx _aligned @ PC=2 (mod 4)
/external/python/cpython2/Lib/email/
H A D__init__.py82 mod = sys.modules[self.__name__]
83 self.__dict__.update(mod.__dict__)
84 return getattr(mod, name)
/external/python/cpython3/Lib/test/test_email/
H A Dtorture_test.py116 mod = sys.modules[__name__]
117 return [getattr(mod, name) for name in dir(mod) if name.startswith('Test')]
/external/v8/src/x64/
H A Ddisasm-x64.cc442 int* mod,
445 *mod = (data >> 6) & 3;
508 int mod, regop, rm; local
509 get_modrm(*modrmp, &mod, &regop, &rm);
510 RegisterNameMapping register_name = (mod == 3) ? direct_register_name :
512 switch (mod) {
529 // base == rbp means no base register (when mod == 0).
559 int disp = (mod == 2) ? *reinterpret_cast<int32_t*>(modrmp + 2)
574 return mod == 2 ? 6 : 3;
577 int disp = (mod
441 get_modrm(byte data, int* mod, int* regop, int* rm) argument
651 int mod, regop, rm; local
687 int mod, regop, rm; local
732 int mod, regop, rm; local
786 int mod, regop, rm; local
885 int mod, regop, rm, vvvv = vex_vreg(); local
970 int mod, regop, rm, vvvv = vex_vreg(); local
1016 int mod, regop, rm, vvvv = vex_vreg(); local
1083 int mod, regop, rm, vvvv = vex_vreg(); local
1164 int mod, regop, rm, vvvv = vex_vreg(); local
1208 int mod, regop, rm, vvvv = vex_vreg(); local
1231 int mod, regop, rm, vvvv = vex_vreg(); local
1249 int mod, regop, rm; local
1272 int mod, regop, rm, vvvv = vex_vreg(); local
1325 int mod, regop, rm, vvvv = vex_vreg(); local
1634 int mod, regop, rm; local
1908 int mod, regop, rm; local
1919 int mod, regop, rm; local
1926 int mod, regop, rm; local
1933 int mod, regop, rm; local
1940 int mod, regop, rm; local
1946 int mod, regop, rm; local
1964 int mod, regop, rm; local
1976 int mod, regop, rm; local
1987 int mod, regop, rm; local
1994 int mod, regop, rm; local
2000 int mod, regop, rm; local
2006 int mod, regop, rm; local
2011 int mod, regop, rm; local
2017 int mod, regop, rm; local
2023 int mod, regop, rm; local
2030 int mod, regop, rm; local
2044 int mod, regop, rm; local
2056 int mod, regop, rm; local
2071 int mod, regop, rm; local
2078 int mod, regop, rm; local
2085 int mod, regop, rm; local
2106 int mod, regop, rm; local
2114 int mod, regop, rm; local
2124 int mod, regop, rm; local
2132 int mod, regop, rm; local
2153 int mod, regop, rm; local
2164 int mod, regop, rm; local
2406 int mod, regop, rm; local
2417 int mod, regop, rm; local
2489 int mod, regop, rm; local
2558 int mod, regop, rm; local
[all...]
/external/python/cpython2/Tools/freeze/
H A Dfreeze.py349 mod = mf.add_module("servicemanager")
350 mod.__file__="dummy.pyd" # really built-in to the resulting EXE
352 for mod in implicits:
353 mf.import_hook(mod)
354 for mod in modules:
355 if mod == '-m':
359 if mod[-2:] == '.*':
360 mf.import_hook(mod[:-2], None, ["*"])
362 mf.import_hook(mod)
364 mf.load_file(mod)
[all...]
/external/python/cpython3/Tools/freeze/
H A Dfreeze.py349 mod = mf.add_module("servicemanager")
350 mod.__file__="dummy.pyd" # really built-in to the resulting EXE
352 for mod in implicits:
353 mf.import_hook(mod)
354 for mod in modules:
355 if mod == '-m':
359 if mod[-2:] == '.*':
360 mf.import_hook(mod[:-2], None, ["*"])
362 mf.import_hook(mod)
364 mf.load_file(mod)
[all...]
/external/elfutils/src/
H A Daddr2line.c323 print_dwarf_function (Dwfl_Module *mod, Dwarf_Addr addr) argument
326 Dwarf_Die *cudie = dwfl_module_addrdie (mod, addr, &bias);
426 print_addrsym (Dwfl_Module *mod, GElf_Addr addr) argument
430 const char *name = dwfl_module_addrinfo (mod, addr, &off, &s,
435 int i = dwfl_module_relocate_address (mod, &addr);
437 name = dwfl_module_relocation_info (mod, i, NULL);
455 Elf_Scn *scn = dwfl_module_address_section (mod, &addr, &ebias);
462 Elf *elf = dwfl_module_getelf (mod, &ebias);
475 see_one_module (Dwfl_Module *mod, argument
484 *result = mod;
489 find_symbol(Dwfl_Module *mod, void **userdata __attribute__ ((unused)), const char *name __attribute__ ((unused)), Dwarf_Addr start __attribute__ ((unused)), void *arg) argument
530 Dwfl_Module *mod = NULL; local
593 get_addr_width(Dwfl_Module *mod) argument
[all...]
/external/aac/libAACdec/src/
H A Dusacdec_lpd.cpp936 int mod, int last_mod, int frame, int frameOk) {
940 ? lg_table_ccfl[0][mod + 0]
941 : lg_table_ccfl[1][mod + 0];
942 int next_frame = frame + (1 << (mod - 1));
1102 * \brief translate lpd_mode into the mod[] array which describes the mode of
1104 * \param mod[] the array that will be filled with the mode indexes of the
1109 UCHAR mod[4], HANDLE_FDK_BITSTREAM hBs, UINT elFlags) {
1122 mod[0] = mod[1] = mod[
933 CLpd_TcxDecode( CAacDecoderChannelInfo *pAacDecoderChannelInfo, CAacDecoderStaticChannelInfo *pAacDecoderStaticChannelInfo, UINT flags, int mod, int last_mod, int frame, int frameOk) argument
1108 CLpd_ReadAndMapLpdModeToModArray( UCHAR mod[4], HANDLE_FDK_BITSTREAM hBs, UINT elFlags) argument
1203 UCHAR *mod = pAacDecoderChannelInfo->data.usac.mod; local
1486 UCHAR *mod = pAacDecoderChannelInfo->data.usac.mod; local
1552 UCHAR *mod = pAacDecoderChannelInfo->data.usac.mod; local
[all...]
/external/selinux/prebuilts/bin/
H A Dsediff.py157 for name, mod in sorted(diff.modified_commons.items()):
159 if mod.added_perms:
160 change.append("{0} Added permissions".format(len(mod.added_perms)))
161 if mod.removed_perms:
162 change.append("{0} Removed permissions".format(len(mod.removed_perms)))
165 for p in sorted(mod.added_perms):
167 for p in sorted(mod.removed_perms):
185 for name, mod in sorted(diff.modified_classes.items()):
187 if mod.added_perms:
188 change.append("{0} Added permissions".format(len(mod
[all...]
/external/python/cpython3/Lib/test/test_import/
H A D__init__.py117 mod = __import__(TESTFN)
121 self.assertEqual(mod.a, a,
122 "module loaded (%s) but contents invalid" % mod)
123 self.assertEqual(mod.b, b,
124 "module loaded (%s) but contents invalid" % mod)
218 mod = __import__(TESTFN)
220 self.assertEqual(mod.a, 1, "module has wrong attribute values")
221 self.assertEqual(mod.b, 2, "module has wrong attribute values")
233 self.assertRaises(ZeroDivisionError, importlib.reload, mod)
235 mod
[all...]
/external/drm_gralloc/
H A Dgralloc.cpp53 static int drm_mod_perform(const struct gralloc_module_t *mod, int op, ...) argument
55 struct drm_module_t *dmod = (struct drm_module_t *) mod;
81 static int drm_mod_register_buffer(const gralloc_module_t *mod, argument
84 struct drm_module_t *dmod = (struct drm_module_t *) mod;
94 static int drm_mod_unregister_buffer(const gralloc_module_t *mod, argument
100 static int drm_mod_lock(const gralloc_module_t *mod, buffer_handle_t handle, argument
113 static int drm_mod_lock_ycbcr(const gralloc_module_t *mod, buffer_handle_t bhandle, argument
153 static int drm_mod_unlock(const gralloc_module_t *mod, buffer_handle_t handle) argument
155 struct drm_module_t *dmod = (struct drm_module_t *) mod;
241 static int drm_mod_open(const struct hw_module_t *mod, argument
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
H A DModifierTest.java64 Modifier mod = new SimpleModifier(compiledPattern, NumberFormat.Field.PERCENT, false);
65 assertModifierEquals(mod, prefixLens[i], false, expectedCharFields[i][0], expectedCharFields[i][1]);
71 mod.apply(output, (Integer) outputs[j][1], (Integer) outputs[j][2]);
133 Modifier mod,
140 assertModifierEquals(mod, sb, expectedPrefixLength, expectedStrong, expectedChars, expectedFields);
144 Modifier mod,
151 mod.apply(sb, 0, oldCount);
152 assertEquals("Prefix length on " + sb, expectedPrefixLength, mod.getPrefixLength());
153 assertEquals("Strong on " + sb, expectedStrong, mod.isStrong());
154 if (!(mod instanceo
132 assertModifierEquals( Modifier mod, int expectedPrefixLength, boolean expectedStrong, String expectedChars, String expectedFields) argument
143 assertModifierEquals( Modifier mod, NumberStringBuilder sb, int expectedPrefixLength, boolean expectedStrong, String expectedChars, String expectedFields) argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dnumbertest_modifiers.cpp83 SimpleModifier mod(compiledFormatter, UNUM_PERCENT_FIELD, false);
85 mod, prefixLens[i], false, expectedCharFields[i][0], expectedCharFields[i][1], status);
92 mod.apply(output, outputs[j].leftIndex, outputs[j].rightIndex, status);
147 void ModifiersTest::assertModifierEquals(const Modifier &mod, int32_t expectedPrefixLength, argument
153 mod, sb, expectedPrefixLength, expectedStrong, expectedChars, expectedFields, status);
157 void ModifiersTest::assertModifierEquals(const Modifier &mod, NumberStringBuilder &sb, argument
162 mod.apply(sb, 0, sb.length(), status);
163 assertEquals("Prefix length", expectedPrefixLength, mod.getPrefixLength(status));
164 assertEquals("Strong", expectedStrong, mod.isStrong());
165 if (dynamic_cast<const CurrencySpacingEnabledModifier*>(&mod)
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
H A DModifierTest.java61 Modifier mod = new SimpleModifier(compiledPattern, NumberFormat.Field.PERCENT, false);
62 assertModifierEquals(mod, prefixLens[i], false, expectedCharFields[i][0], expectedCharFields[i][1]);
68 mod.apply(output, (Integer) outputs[j][1], (Integer) outputs[j][2]);
130 Modifier mod,
137 assertModifierEquals(mod, sb, expectedPrefixLength, expectedStrong, expectedChars, expectedFields);
141 Modifier mod,
148 mod.apply(sb, 0, oldCount);
149 assertEquals("Prefix length on " + sb, expectedPrefixLength, mod.getPrefixLength());
150 assertEquals("Strong on " + sb, expectedStrong, mod.isStrong());
151 if (!(mod instanceo
129 assertModifierEquals( Modifier mod, int expectedPrefixLength, boolean expectedStrong, String expectedChars, String expectedFields) argument
140 assertModifierEquals( Modifier mod, NumberStringBuilder sb, int expectedPrefixLength, boolean expectedStrong, String expectedChars, String expectedFields) argument
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_pkgutil.py97 mod = sys.modules.setdefault(fullname, imp.new_module(fullname))
98 mod.__file__ = "<%s>" % self.__class__.__name__
99 mod.__loader__ = self
101 mod.__path__ = []
103 mod.__dict__['loads'] = mod.__dict__.get('loads',0) + 1
104 return mod
/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/selinux/libsepol/src/
H A Dmodule.c373 static int module_package_read_offsets(sepol_module_package_t * mod, argument
400 mod->version = le32_to_cpu(buf[1]);
464 int sepol_module_package_read(sepol_module_package_t * mod, argument
473 if (module_package_read_offsets(mod, file, &offsets, &nsec))
512 mod->file_contexts_len = len - sizeof(uint32_t);
513 mod->file_contexts =
514 (char *)malloc(mod->file_contexts_len);
515 if (!mod->file_contexts) {
520 (mod->file_contexts, file,
521 mod
653 sepol_module_package_t *mod = NULL; local
[all...]

Completed in 1085 milliseconds

1234567891011>>