Searched refs:mod (Results 301 - 325 of 781) sorted by relevance

<<11121314151617181920>>

/external/icu/icu4c/source/i18n/
H A Dnumber_modifiers.h214 for (const Modifier *mod : mods) {
215 delete mod;
225 void adoptSignPluralModifier(bool isNegative, StandardPlural::Form plural, const Modifier *mod) { argument
226 mods[getModIndex(isNegative, plural)] = mod;
/external/libxaac/decoder/
H A Dixheaacd_lpc_dec.c166 WORD32 mod[]) {
191 if (mod[0] < 3) {
205 if (mod[0] < 2) {
224 if (mod[2] < 2) {
164 ixheaacd_alg_vec_dequant(ia_td_frame_data_struct *pstr_td_frame_data, WORD32 first_lpd_flag, FLOAT32 *lsf, WORD32 mod[]) argument
/external/llvm/test/MC/Mips/
H A Dset-push-pop-directives.s21 mod $2, $4, $6
45 # CHECK: mod $2, $4, $6
/external/mesa3d/scons/
H A Dcustom.py116 for name, mod in finder.modules.iteritems():
117 if mod.__file__ is None:
119 assert os.path.exists(mod.__file__)
120 results.append(env.File(mod.__file__))
/external/python/cpython3/Lib/test/libregrtest/
H A Druntest.py68 mod, ext = os.path.splitext(name)
69 if mod[:5] == "test_" and ext in (".py", "") and mod not in others:
70 tests.append(mod)
/external/selinux/libsepol/include/sepol/
H A Dmodule.h65 extern int sepol_module_package_read(sepol_module_package_t * mod,
/external/selinux/semodule-utils/semodule_package/
H A Dsemodule_package.c97 struct sepol_policy_file *mod, *out; local
212 if (file_to_policy_file(module, &mod, "r"))
220 if (sepol_policydb_read(sepol_module_package_get_policy(pkg), mod)) {
254 sepol_policy_file_free(mod);
/external/tensorflow/tensorflow/contrib/signal/python/ops/
H A Dutil_ops.py65 body = lambda a, b: [b, math_ops.mod(a, b)]
/external/wycheproof/java/com/google/security/wycheproof/testcases/
H A DDhTest.java51 * key y satisfies the conditions 2 <= y <= p-2 and y^q mod p == 1 (Section 5.6.2.3.1). Further,
52 * after generating the shared secret z = y_a ^ x_b mod p each party should check that z != 1. RFC
222 // the iteration x_n = x_{n-1}^2 + 1 mod p enters a cycle of size < 50000 after at
227 u = u.multiply(u).add(BigInteger.ONE).mod(n);
232 v = v.multiply(v).add(BigInteger.ONE).mod(n);
237 prod = prod.multiply(v.subtract(u).abs()).mod(n);
314 assertTrue(p.mod(g).compareTo(BigInteger.ONE) > 0);
/external/javassist/src/main/javassist/compiler/
H A DJavac.java144 int mod = MemberResolver.getModifiers(md.getModifiers());
147 recordParams(plist, Modifier.isStatic(mod));
153 cons.setModifiers(mod);
166 method.setModifiers(mod);
173 method.setModifiers(mod | Modifier.ABSTRACT);
194 int mod = method.getModifiers();
195 recordParams(method.getParameterTypes(), Modifier.isStatic(mod));
/external/protobuf/ruby/ext/google/protobuf_c/
H A Dmessage.c535 VALUE mod = rb_define_module_id( local
550 rb_define_const(mod, name, INT2NUM(value));
553 rb_define_singleton_method(mod, "lookup", enum_lookup, 1);
554 rb_define_singleton_method(mod, "resolve", enum_resolve, 1);
555 rb_define_singleton_method(mod, "descriptor", enum_descriptor, 0);
556 rb_ivar_set(mod, descriptor_instancevar_interned,
559 return mod;
/external/python/cpython2/Modules/_ctypes/
H A Dcallbacks.c516 PyObject *mod, *func, *result; local
523 mod = PyImport_ImportModuleNoBlock("ctypes");
524 if (!mod) {
530 func = PyObject_GetAttrString(mod, "DllGetClassObject");
531 Py_DECREF(mod);
595 PyObject *mod, *func, *result; local
602 mod = PyImport_ImportModuleNoBlock("ctypes");
603 if (!mod) {
611 func = PyObject_GetAttrString(mod, "DllCanUnloadNow");
612 Py_DECREF(mod);
[all...]
/external/elfutils/libdwfl/
H A Dlinux-proc-maps.c183 Dwfl_Module *mod = INTUSE(dwfl_report_module) (dwfl, *plast_file, local
187 if (unlikely (mod == NULL))
351 dwfl_linux_proc_find_elf (Dwfl_Module *mod __attribute__ ((unused)),
368 pid = INTUSE(dwfl_pid) (mod->dwfl);
395 struct __libdwfl_pid_arg *pid_arg = __libdwfl_get_pid_arg (mod->dwfl);
/external/python/cpython3/Parser/
H A Dasdl_c.py102 def visitModule(self, mod):
103 for dfn in mod.dfns:
142 def visitModule(self, mod):
143 for dfn in mod.dfns:
214 def visitModule(self, mod):
215 for dfn in mod.dfns:
340 def visitModule(self, mod):
341 for dfn in mod.dfns:
623 def visitModule(self, mod):
974 for dfn in mod
[all...]
/external/swiftshader/third_party/LLVM/tools/llc/
H A Dllc.cpp253 Module &mod = *M.get(); local
257 mod.setTargetTriple(Triple::normalize(TargetTriple));
259 Triple TheTriple(mod.getTargetTriple());
348 PM.add(new TargetData(&mod));
374 PM.run(mod);
/external/valgrind/none/tests/amd64/
H A Dfb_test_amd64.h8 #define EXECOP2(size, mod, res, s1, flags) \
11 stringify(OP) size " %" mod "2, %" mod "0\n\t" \
17 #define EXECOP1(size, mod, res, flags) \
20 stringify(OP) size " %" mod "0\n\t" \
/external/python/cpython3/Lib/test/
H A Dtest_ast.py258 mod = ast.parse("from __future__ import division")
259 self.assertIsInstance(mod.body[0], ast.ImportFrom)
260 mod.body[0].module = " __future__ ".strip()
261 compile(mod, "<test>", "exec")
389 for mod in mods:
392 ast2 = mod.loads(mod.dumps(ast, protocol))
548 mod = ast.Module(body)
550 compile(mod, 'test', 'exec')
558 mod
567 def mod(self, mod, msg=None, mode="exec", *, exc=ValueError): member in class:ASTValidatorTests
[all...]
H A Dtest_pkgutil.py113 f = open(os.path.join(pkg1_dir, 'sub', 'mod.py'), "wb")
125 f = open(os.path.join(pkg2_dir, 'test_walkpackages_filesys', 'mod.py'), "wb")
131 'sub.test_walkpackages_filesys.mod',
134 'test_walkpackages_filesys.sub.mod',
140 if pkg.endswith('mod'):
155 z.writestr(pkg2 + '/' + pkg1 + '/mod.py', "")
158 z.writestr(pkg1 + '/' + pkg2 + '/mod.py', "")
165 'sub.test_walkpackages_zipfile.mod',
168 'test_walkpackages_zipfile.sub.mod',
175 if pkg.endswith('mod')
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_emit_nvc0.cpp230 if (i->src(1).mod.abs()) code[0] |= 1 << 6;
231 if (i->src(0).mod.abs()) code[0] |= 1 << 7;
232 if (i->src(1).mod.neg()) code[0] |= 1 << 8;
233 if (i->src(0).mod.neg()) code[0] |= 1 << 9;
522 bool neg1 = (i->src(0).mod ^ i->src(1).mod).neg();
530 if (i->src(2).mod.neg())
547 assert(!i->saturate && !i->src(2).mod.neg());
558 bool neg1 = (i->src(0).mod ^ i->src(1).mod)
[all...]
/external/python/cpython2/Python/
H A Dimport.c581 PyObject *modules, *mod, *dict, *copy; local
588 mod = PyDict_GetItemString(modules, name);
589 if (mod == NULL || !PyModule_Check(mod)) {
594 dict = PyModule_GetDict(mod);
608 PyObject *dict, *mod, *mdict; local
614 mod = PyImport_AddModule(name);
615 if (mod == NULL)
617 mdict = PyModule_GetDict(mod);
625 return mod;
871 mod_ty mod; local
2496 load_next(PyObject *mod, PyObject *altmod, char **p_name, char *buf, Py_ssize_t *p_buflen) argument
2575 ensure_fromlist(PyObject *mod, PyObject *fromlist, char *buf, Py_ssize_t buflen, int recursive) argument
2645 add_submodule(PyObject *mod, PyObject *submod, char *fullname, char *subname, PyObject *modules) argument
2679 import_submodule(PyObject *mod, char *subname, char *fullname) argument
[all...]
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTDecompress.cpp458 PVRTint32 mod = getModulationValues(i32ModulationValues,i32ModulationModes,x+ui32WordWidth/2,y+ui32WordHeight/2,ui8Bpp); local
460 if (mod>10) {punchthroughAlpha=true; mod-=10;}
463 result.red = (upscaledColourA[y*ui32WordWidth+x].red * (8-mod) + upscaledColourB[y*ui32WordWidth+x].red * mod) / 8;
464 result.green = (upscaledColourA[y*ui32WordWidth+x].green * (8-mod) + upscaledColourB[y*ui32WordWidth+x].green * mod) / 8;
465 result.blue = (upscaledColourA[y*ui32WordWidth+x].blue * (8-mod) + upscaledColourB[y*ui32WordWidth+x].blue * mod) / 8;
467 else result.alpha = (upscaledColourA[y*ui32WordWidth+x].alpha * (8-mod)
[all...]
/external/python/cpython2/Lib/
H A Dpkgutil.py246 mod = imp.load_module(fullname, self.file, self.filename, self.etc)
252 return mod
581 mod = sys.modules.get(package) or loader.load_module(package)
582 if mod is None or not hasattr(mod, '__file__'):
589 parts.insert(0, os.path.dirname(mod.__file__))
/external/python/cpython2/Lib/test/
H A Dtest_py3kwarn.py361 mod = sys.modules[module_name]
362 filename = getattr(mod, '__file__', '')
363 mod = None
417 mod = __import__(path_mod)
418 reset_module_registry(mod)
420 mod.walk("crashers", dumbo, None)
/external/python/cpython3/Lib/
H A Dpkgutil.py282 mod = imp.load_module(fullname, self.file, self.filename, self.etc)
288 return mod
623 mod = (sys.modules.get(package) or
625 if mod is None or not hasattr(mod, '__file__'):
632 parts.insert(0, os.path.dirname(mod.__file__))
/external/guava/guava-tests/test/com/google/common/collect/
H A DMultimapsTest.java83 ListMultimap<String, Integer> mod = ArrayListMultimap.create();
84 ListMultimap<String, Integer> unmod = Multimaps.unmodifiableListMultimap(mod);
85 assertNotSame(mod, unmod);
96 SetMultimap<String, Integer> mod = HashMultimap.create();
97 SetMultimap<String, Integer> unmod = Multimaps.unmodifiableSetMultimap(mod);
98 assertNotSame(mod, unmod);
109 Multimap<String, Integer> mod = HashMultimap.create();
110 Multimap<String, Integer> unmod = Multimaps.unmodifiableMultimap(mod);
111 assertNotSame(mod, unmod);
227 Multimap<String, Integer> mod
[all...]

Completed in 1811 milliseconds

<<11121314151617181920>>