Searched defs:mod (Results 176 - 200 of 395) sorted by relevance

1234567891011>>

/external/python/cpython2/Parser/
H A Dasdl.py337 def visitModule(self, mod):
338 for dfn in mod.dfns:
369 def check(mod):
371 v.visit(mod)
374 if t not in mod.types and not t in builtin_types:
406 mod = parse(file) variable
407 print "module", mod.name
408 print len(mod.dfns), "definitions"
409 if not check(mod):
412 for dfn in mod
[all...]
/external/python/cpython3/Modules/_ctypes/
H A Dcallbacks.c436 PyObject *mod, *func, *result; local
443 mod = PyImport_ImportModuleNoBlock("ctypes");
444 if (!mod) {
450 func = PyObject_GetAttrString(mod, "DllGetClassObject");
451 Py_DECREF(mod);
515 PyObject *mod, *func, *result; local
522 mod = PyImport_ImportModuleNoBlock("ctypes");
523 if (!mod) {
531 func = PyObject_GetAttrString(mod, "DllCanUnloadNow");
532 Py_DECREF(mod);
[all...]
/external/python/cpython3/Objects/
H A Dmoduleobject.c46 module_init_dict(PyModuleObject *mod, PyObject *md_dict, argument
72 Py_XSETREF(mod->md_name, name);
/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...]
/external/skia/bench/
H A DMathBench.cpp556 T div = 0, mod = 0; variable
559 SkTDivMod((T)(i+1), (T)i, &div, &mod);
561 b ^= mod;
/external/skia/samplecode/
H A DSampleFilterQuality.cpp104 void setMod(SkScalar value, SkScalar mod) { argument
108 fMod = mod;
/external/skqp/bench/
H A DMathBench.cpp556 T div = 0, mod = 0; variable
559 SkTDivMod((T)(i+1), (T)i, &div, &mod);
561 b ^= mod;
/external/skqp/samplecode/
H A DSampleFilterQuality.cpp104 void setMod(SkScalar value, SkScalar mod) { argument
108 fMod = mod;
/external/swiftshader/third_party/LLVM/unittests/VMCore/
H A DPassManagerTest.cpp401 Module* mod = new Module("test-mem", getGlobalContext()); local
402 mod->setDataLayout("e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-"
405 mod->setTargetTriple("x86_64-unknown-linux-gnu");
427 /*Name=*/"test1", mod);
435 /*Name=*/"test2", mod);
443 /*Name=*/"test3", mod);
451 /*Name=*/"test4", mod);
534 return mod;
/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/syslinux/com32/lib/sys/module/
H A Dcommon.c434 struct elf_module *m, *mod, *begin = NULL; local
436 for_each_module(mod) {
437 if (!strcmp(mod->name, name)) {
438 begin = mod;
446 for_each_module_safe(mod, m) {
447 if (mod == begin)
450 if (mod != begin)
451 module_unload(mod);
/external/turbine/java/com/google/turbine/binder/
H A DConstEvaluator.java512 static Const.Value mod(Const.Value a, Const.Value b) { method in class:ConstEvaluator
777 return mod(lhs, rhs);
/external/aac/libAACdec/src/
H A Dusacdec_fac.cpp116 UCHAR mod[NB_DIV], int *pState) {
127 if (mod[i >> 1] == 0) {
137 FDK_ASSERT(mod[(i >> 1)] == 0);
212 const INT mod) {
219 facFactor = fMult(gainFac[mod], tcx_gain);
228 k = i >> (3 - mod);
115 CLpd_FAC_GetMemory(CAacDecoderChannelInfo *pAacDecoderChannelInfo, UCHAR mod[NB_DIV], int *pState) argument
210 CFac_ApplyGains(FIXP_DBL fac_data[LFAC], const INT fac_length, const FIXP_DBL tcx_gain, const FIXP_DBL alfd_gains[], const INT mod) argument
/external/capstone/arch/X86/
H A DX86DisassemblerDecoder.c1518 uint8_t mod, rm, reg; local
1535 // handle MOVcr, MOVdr, MOVrc, MOVrd by pretending they have MRM.mod = 3
1540 mod = modFromModRM(insn->modRM);
1577 switch (mod) {
1614 switch (mod) {
1643 insn->eaDisplacement = (mod == 0x1 ? EA_DISP_8 : EA_DISP_32);
/external/elfutils/libdwfl/
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...]
H A Dlinux-kernel-modules.c226 Dwfl_Module *mod = INTUSE(dwfl_report_elf) (dwfl, KERNEL_MODNAME, local
228 if (mod == NULL)
232 mod->e_type = ET_DYN;
514 check_notes (Dwfl_Module *mod, const char *notesfile, argument
555 (mod, NULL, mod->name, 0, secname, 0, NULL, &vaddr) != 0
561 return INTUSE(dwfl_module_report_build_id) (mod, bits,
578 check_module_notes (Dwfl_Module *mod) argument
581 if (asprintf (&dirs[0], MODNOTESFMT, mod->name) < 0)
600 result = check_notes (mod,
656 Dwfl_Module *mod = report (); local
694 dwfl_linux_kernel_find_elf(Dwfl_Module *mod, void **userdata __attribute__ ((unused)), const char *module_name, Dwarf_Addr base __attribute__ ((unused)), char **file_name, Elf **elfp) argument
939 Dwfl_Module *mod = INTUSE(dwfl_report_module) (dwfl, modname, local
[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...]
H A Dstack.c110 get_addr_width (Dwfl_Module *mod) argument
114 if (width == 0 && mod)
117 Elf *elf = dwfl_module_getelf (mod, &bias);
133 module_callback (Dwfl_Module *mod, void **userdata __attribute__((unused)), argument
139 Elf *elf = dwfl_module_getelf (mod, &bias);
140 Dwarf *dwarf = dwfl_module_getdwarf (mod, &bias);
145 const char *modname = dwfl_module_info (mod, NULL, NULL, &end, NULL,
149 int width = get_addr_width (mod);
155 int id_len = dwfl_module_build_id (mod, &id, &id_vaddr);
217 Dwarf_Addr pc_adjusted, Dwfl_Module *mod,
216 print_frame(int nr, Dwarf_Addr pc, bool isactivation, Dwarf_Addr pc_adjusted, Dwfl_Module *mod, const char *symname, Dwarf_Die *cudie, Dwarf_Die *die) argument
319 print_inline_frames(int *nr, Dwarf_Addr pc, bool isactivation, Dwarf_Addr pc_adjusted, Dwfl_Module *mod, const char *symname, Dwarf_Die *cudie, Dwarf_Die *die) argument
375 Dwfl_Module *mod = dwfl_addrmodule (dwfl, pc_adjusted); local
432 Dwfl_Module *mod = dwfl_addrmodule (dwfl, pc_adjusted); local
[all...]
/external/elfutils/tests/
H A Dvarlocs.c781 Dwfl_Module *mod = dwfl_cumodule (cu); local
783 dw = dwfl_module_getdwarf (mod, &modbias);
787 const char *modname = dwfl_module_info (mod, NULL,
802 Elf *elf = dwfl_module_getelf (mod, &elfbias);
/external/fsck_msdos/
H A Ddir.c536 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 |
980 int mod; local
[all...]
/external/ipsec-tools/src/racoon/
H A Deaytest.c743 vchar_t mod; local
766 mod.v = str2val(r_hmd5, 16, &mod.l);
767 if (memcmp(res->v, mod.v, mod.l)) {
771 free(mod.v);
781 mod.v = str2val(r_hmd5, 16, &mod.l);
782 if (memcmp(res->v, mod.v, mod
[all...]
/external/javassist/src/main/javassist/
H A DCtField.java238 public void setModifiers(int mod) { argument
240 fieldInfo.setAccessFlags(AccessFlag.of(mod));
/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/libmicrohttpd/src/microhttpd/
H A Ddigestauth.c306 uint32_t mod; local
309 mod = connection->daemon->nonce_nc_size;
310 if (0 == mod)
320 off = off % mod;
/external/libxaac/decoder/
H A Dixheaacd_lpc.c333 WORD32 *mod; local
366 mod = pstr_td_frame_data->mod;
381 pstr_td_frame_data->mod);
388 if ((first_lpd_flag && mod[0] == 0) || (first_lpd_flag && mod[1] == 0) ||
389 ((first_lpd_flag && mod[2] == 0 && len_subfrm != LEN_FRAME))) {
408 if (mod[0] == 0) {
439 if (mod[0] == 0 && len_subfrm != LEN_FRAME) {
455 if (mod[
[all...]

Completed in 679 milliseconds

1234567891011>>