Searched refs:mod (Results 201 - 225 of 781) sorted by relevance

1234567891011>>

/external/aac/libAACdec/src/
H A Dusacdec_fac.h113 * \param mod the current LPD mod array.
119 UCHAR mod[NB_SUBFR], int *pState);
143 * \param mod mod value (1,2,3) of TCX frame where the FAC signal needs to be
148 const INT mod);
/external/elfutils/tests/
H A Ddwflsyms.c108 list_syms (struct Dwfl_Module *mod, argument
113 int syms = dwfl_module_getsymtab (mod);
126 const char *name = dwfl_module_getsym (mod, ndx, &sym, &shndxp);
136 name = dwfl_module_getsym_info (mod, ndx, &isym, &value, &shndxp,
162 const char *aname = dwfl_module_addrinfo (mod, addr, &off, &asym,
177 int res = dwfl_module_relocate_address (mod, &addr);
190 Elf_Scn *scn = dwfl_module_address_section (mod, &addr, &ebias);
193 Elf *melf = dwfl_module_getelf (mod, &ebias);
H A Dallregs.c51 first_module (Dwfl_Module *mod, argument
58 if (dwfl_module_getelf (mod, &bias) == NULL) /* Not really a module. */
61 *(Dwfl_Module **) arg = mod;
158 Dwfl_Module *mod = NULL; local
159 if (dwfl_getmodules (dwfl, &first_module, &mod, 0) < 0)
165 int result = dwfl_module_register_names (mod, &one_register, &state);
194 int result = dwfl_module_register_names (mod, &match_register, &regno);
H A Dbacktrace-data.c60 find_elf (Dwfl_Module *mod __attribute__ ((unused)),
148 Dwfl_Module *mod = dwfl_report_elf (dwfl, long_name, long_name, -1, local
150 assert (mod);
152 assert (dwfl_addrmodule (dwfl, addr) == mod);
153 return mod;
232 Dwfl_Module *mod = dwfl_addrmodule (dwfl, pc_adjusted); local
233 if (mod == NULL)
234 mod = report_module (dwfl, dwfl_pid (dwfl), pc_adjusted);
236 symname = dwfl_module_addrname (mod, pc_adjusted);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DParameterizedModifier.java44 public void setModifier(boolean isNegative, StandardPlural plural, Modifier mod) { argument
46 mods[getModIndex(isNegative, plural)] = mod;
/external/llvm/test/Bindings/OCaml/
H A Dtransform_utils.ml15 let m = create_module context "mod" in
/external/llvm/test/MC/Mips/
H A Dset-arch.s26 mod $2, $4, $6
38 mod $2, $4, $6
59 # CHECK: mod $2, $4, $6
65 # CHECK: mod $2, $4, $6
H A Dset-mips-directives-bad.s23 mod $2, $4, $6 # CHECK: error:instruction requires a CPU feature not currently enabled
35 mod $2, $4, $6 # CHECK: error: instruction requires a CPU feature not currently enabled
38 mod $2, $4, $6 # CHECK: error: instruction requires a CPU feature not currently enabled
41 mod $2, $4, $6 # CHECK: error: instruction requires a CPU feature not currently enabled
/external/mesa3d/src/gallium/state_trackers/clover/llvm/codegen/
H A Dcommon.cpp70 make_kernel_args(const Module &mod, const std::string &kernel_name, argument
74 const Function &f = *mod.getFunction(kernel_name);
75 ::llvm::DataLayout dl(&mod);
77 dl.getSmallestLegalIntType(mod.getContext(), sizeof(cl_uint) * 8);
90 dl.getSmallestLegalIntType(mod.getContext(), arg_store_size * 8);
194 clover::llvm::build_module_common(const Module &mod, argument
202 get_kernels(mod))) {
205 make_kernel_args(mod, name, c));
/external/python/cpython3/Include/
H A Dsymtable.h74 mod_ty mod,
78 mod_ty mod,
/external/tensorflow/tensorflow/contrib/learn/python/learn/utils/
H A Dgc_test.py72 mod = gc.mod_export_version(2)
73 self.assertEqual(mod(paths), [gc.Path("/foo", 4), gc.Path("/foo", 6)])
74 mod = gc.mod_export_version(3)
75 self.assertEqual(mod(paths), [gc.Path("/foo", 6), gc.Path("/foo", 9)])
126 mod = gc.negation(gc.mod_export_version(2))
127 self.assertEqual(mod(paths), [gc.Path("/foo", 5), gc.Path("/foo", 9)])
128 mod = gc.negation(gc.mod_export_version(3))
129 self.assertEqual(mod(paths), [gc.Path("/foo", 4), gc.Path("/foo", 5)])
/external/tensorflow/tensorflow/python/estimator/
H A Dgc_test.py70 mod = gc._mod_export_version(2)
71 self.assertEqual(mod(paths), [gc.Path("/foo", 4), gc.Path("/foo", 6)])
72 mod = gc._mod_export_version(3)
73 self.assertEqual(mod(paths), [gc.Path("/foo", 6), gc.Path("/foo", 9)])
111 mod = gc._negation(gc._mod_export_version(2))
112 self.assertEqual(mod(paths), [gc.Path("/foo", 5), gc.Path("/foo", 9)])
113 mod = gc._negation(gc._mod_export_version(3))
114 self.assertEqual(mod(paths), [gc.Path("/foo", 4), gc.Path("/foo", 5)])
/external/toybox/toys/other/
H A Dinsmod.c24 #define init_module(mod, len, opts) syscall(SYS_init_module, mod, len, opts)
/external/valgrind/coregrind/m_gdbserver/
H A Dtarget.h246 differs. If no difference, no copy is done, *mod set to False.
247 If different; copy is done, *mod set to True. */
248 extern void* VG_(dmemcpy) ( void *d, const void *s, SizeT sz, Bool *mod );
258 // sets *mod to True otherwise set *mod to False.
263 Bool *mod);
/external/elfutils/libdwfl/
H A Ddwfl_module_getsrc_file.c52 dwfl_module_getsrc_file (Dwfl_Module *mod, argument
56 if (mod == NULL)
59 if (mod->dw == NULL)
62 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
75 while ((error = __libdwfl_nextcu (mod, cu, &cu)) == DWFL_E_NOERROR
/external/llvm/tools/lto/
H A Dlto.cpp289 void lto_module_dispose(lto_module_t mod) { delete unwrap(mod); } argument
291 const char* lto_module_get_target_triple(lto_module_t mod) { argument
292 return unwrap(mod)->getTargetTriple().c_str();
295 void lto_module_set_target_triple(lto_module_t mod, const char *triple) { argument
296 return unwrap(mod)->setTargetTriple(triple);
299 unsigned int lto_module_get_num_symbols(lto_module_t mod) { argument
300 return unwrap(mod)->getSymbolCount();
303 const char* lto_module_get_symbol_name(lto_module_t mod, unsigned int index) { argument
304 return unwrap(mod)
307 lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index) argument
312 lto_module_get_linkeropts(lto_module_t mod) argument
344 lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod) argument
348 lto_codegen_set_module(lto_code_gen_t cg, lto_module_t mod) argument
508 lto_module_is_thinlto(lto_module_t mod) argument
[all...]
/external/ltp/testcases/kernel/module/query_module/
H A Dquery_module01.c264 /* Insert a module of name mod */
265 int insert_mod(char *mod) argument
269 if (sprintf(cmd, "cp `which %s.o` ./", mod) == -1) {
274 tst_resm(TBROK, "Failed to copy %s module", mod);
280 /* if (sprintf(cmd, "insmod %s.o", mod) == -1) { */
281 if (sprintf(cmd, "insmod --force -q %s.o >/dev/null 2>&1", mod) == -1) {
286 tst_resm(TBROK, "Failed to load %s module", mod);
/external/python/cpython3/Lib/test/test_importlib/import_/
H A Dtest_meta_path.py19 mod = 'top_level'
20 with util.mock_spec(mod) as first, util.mock_spec(mod) as second:
22 self.assertIs(self.__import__(mod), first.modules[mod])
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_peephole.cpp237 insn->src(0).mod = insn->src(0).mod ^ Modifier(NV50_IR_MOD_NEG);
238 insn->src(1).mod = insn->src(1).mod ^ Modifier(NV50_IR_MOD_NEG);
435 if (insn->src(!s).mod != Modifier(0))
692 i->src(0).mod = Modifier(0);
693 i->src(1).mod = Modifier(0);
715 i->src(0).mod = i->src(2).mod;
789 i->src(0).mod
1523 Modifier mod; local
1690 Modifier mod[4]; local
1779 Modifier mod = rcp->src(0).mod * si->src(0).mod; local
[all...]
/external/kmod/libkmod/
H A Dlibkmod-internal.h101 void kmod_pool_add_module(struct kmod_ctx *ctx, struct kmod_module *mod, const char *key) __attribute__((nonnull(1, 2, 3)));
102 void kmod_pool_del_module(struct kmod_ctx *ctx, struct kmod_module *mod, const char *key) __attribute__((nonnull(1, 2, 3)));
140 int kmod_module_new_from_alias(struct kmod_ctx *ctx, const char *alias, const char *name, struct kmod_module **mod);
141 int kmod_module_parse_depline(struct kmod_module *mod, char *line) __attribute__((nonnull(1, 2)));
142 void kmod_module_set_install_commands(struct kmod_module *mod, const char *cmd) __attribute__((nonnull(1)));
143 void kmod_module_set_remove_commands(struct kmod_module *mod, const char *cmd) __attribute__((nonnull(1)));
144 void kmod_module_set_visited(struct kmod_module *mod, bool visited) __attribute__((nonnull(1)));
145 void kmod_module_set_builtin(struct kmod_module *mod, bool builtin) __attribute__((nonnull((1))));
146 void kmod_module_set_required(struct kmod_module *mod, bool required) __attribute__((nonnull(1)));
147 bool kmod_module_is_builtin(struct kmod_module *mod) __attribute_
[all...]
/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/mesa3d/src/mesa/x86/rtasm/
H A Dx86sse.c97 assert(reg.mod == mod_REG);
99 val |= regmem.mod << 6; /* mod field */
112 switch (regmem.mod) {
148 switch (dst.mod) {
156 assert(src.mod == mod_REG);
181 reg.mod = mod_REG;
192 if (reg.mod == mod_REG)
198 reg.mod = mod_INDIRECT;
200 reg.mod
[all...]
/external/python/cpython3/Python/
H A Dpythonrun.c155 mod_ty mod; local
212 mod = PyParser_ASTFromFileObject(fp, filename, enc,
218 if (mod == NULL) {
233 v = run_mod(mod, filename, d, d, flags, arena);
890 mod_ty mod; local
902 mod = PyParser_ASTFromStringObject(str, filename, start, flags, arena);
903 if (mod != NULL)
904 ret = run_mod(mod, filename, globals, locals, flags, arena);
914 mod_ty mod; local
926 mod
972 run_mod(mod_ty mod, PyObject *filename, PyObject *globals, PyObject *locals, PyCompilerFlags *flags, PyArena *arena) argument
1027 mod_ty mod; local
1072 mod_ty mod; local
1110 mod_ty mod; local
1140 mod_ty mod; local
1155 mod_ty mod; local
1188 mod_ty mod; local
[all...]
/external/chromium-trace/catapult/third_party/pyserial/serial/
H A Dserialjava.py13 mod = __import__(name)
16 mod = getattr(mod, comp)
17 return mod
24 mod = my_import(name)
25 mod.SerialPort
26 return mod
/external/javassist/src/main/javassist/tools/rmi/
H A DStubGenerator.java203 int mod = m.getModifiers();
205 && !Modifier.isFinal(mod))
206 if (Modifier.isPublic(mod)) {
208 if (Modifier.isStatic(mod))
221 wmethod.setModifiers(mod);
224 else if (!Modifier.isProtected(mod)
225 && !Modifier.isPrivate(mod))

Completed in 772 milliseconds

1234567891011>>