Home
last modified time | relevance | path

Searched refs:this_mod (Results 1 – 25 of 116) sorted by relevance

12345

/dports/graphics/libprojectm/projectm-3.1.12/src/MilkDrop2/vis_milk2/
H A Dvis.cpp50 void config(struct winampVisModule *this_mod); // configuration dialog
52 int render1(struct winampVisModule *this_mod); // rendering for module 1
53 void quit(struct winampVisModule *this_mod); // deinitialization for module
185 void config(struct winampVisModule *this_mod) in config() argument
194 g_plugin.PluginPreInitialize(this_mod->hwndParent, this_mod->hDllInstance); in config()
208 int init(struct winampVisModule *this_mod) in init() argument
221 if (!WaitUntilPluginFinished(this_mod->hwndParent)) in init()
244 if (!g_plugin.PluginPreInitialize(this_mod->hwndParent, this_mod->hDllInstance)) in init()
262 int render1(struct winampVisModule *this_mod) in render1() argument
264 if (g_plugin.PluginRender(this_mod->waveformData[0], this_mod->waveformData[1])) in render1()
[all …]
/dports/lang/ghc/ghc-8.10.7/compiler/main/
H A DStaticPtrTable.hs165 sptCreateStaticBinds hsc_env this_mod binds
213 [ unitIdFS $ moduleUnitId this_mod
214 , moduleNameFS $ moduleName this_mod
229 [ unitIdString $ moduleUnitId this_mod
230 , moduleNameString $ moduleName this_mod
259 sptModuleInitCode this_mod entries = vcat function
260 [ text "static void hs_spt_init_" <> ppr this_mod
262 , text "static void hs_spt_init_" <> ppr this_mod <> text "(void)"
277 , text "static void hs_spt_fini_" <> ppr this_mod
279 , text "static void hs_spt_fini_" <> ppr this_mod <> text "(void)"
H A DCodeOutput.hs63 codeOutput dflags this_mod filenm location foreign_stubs foreign_fps pkg_deps
75 (text "CmmLint"<+>brackets (ppr this_mod))
91 ; stubs_exist <- outputForeignStubs dflags this_mod location foreign_stubs
93 HscAsm -> outputAsm dflags this_mod location filenm
156 outputAsm dflags this_mod location filenm cmm_stream
164 nativeCodeGen dflags this_mod location h ncg_uniqs cmm_stream
H A DHscMain.hs1414 cg_module = this_mod,
1430 corePrepPgm hsc_env this_mod location
1435 myCoreToStg dflags this_mod prepd_binds
1481 cg_module = this_mod,
1538 doCodeGen hsc_env this_mod data_tycons
1546 StgToCmm.codeGen dflags this_mod data_tycons
1578 myCoreToStg dflags this_mod prepd_binds = do
1581 coreToStg dflags this_mod prepd_binds
1585 stg2stg dflags this_mod stg_binds
1709 let !CgGuts{ cg_module = this_mod,
[all …]
/dports/lang/ghc/ghc-8.10.7/compiler/profiling/
H A DProfInit.hs26 profilingInitCode this_mod (local_CCs, singleton_CCSs)
35 ++ [ text "static void prof_init_" <> ppr this_mod
37 , text "static void prof_init_" <> ppr this_mod <> text "(void)"
47 local_cc_list_label = text "local_cc_" <> ppr this_mod
58 singleton_cc_list_label = text "singleton_cc_" <> ppr this_mod
/dports/lang/ghc/ghc-8.10.7/compiler/nativeGen/
H A DPIC.hs122 = do this_mod <- getThisModule
127 this_mod
239 howToAccessLabel dflags _ OSMinGW32 this_mod _ lbl
247 | labelDynamic dflags this_mod lbl
265 | labelDynamic dflags this_mod lbl
289 , labelDynamic dflags this_mod lbl
298 , labelDynamic dflags this_mod lbl
351 _ | labelDynamic dflags this_mod lbl
384 , labelDynamic dflags this_mod lbl
388 howToAccessLabel dflags _ os this_mod _ lbl
[all …]
H A DAsmCodeGen.hs161 nativeCodeGen dflags this_mod modLoc h us cmms
318 nativeCodeGen' dflags this_mod modLoc ncgImpl h us cmms
451 cmmNativeGens dflags this_mod modLoc ncgImpl h dbgMap = go
550 cmmToCmm dflags this_mod fixed_cmm
1046 cmmToCmm dflags this_mod (CmmProc info lbl live graph)
1047 = runCmmOpt dflags this_mod $
1073 CmmOptM $ \dflags this_mod imports0 ->
1074 case f dflags this_mod imports0 of
1081 getThisModule = CmmOptM $ \_ this_mod imports -> OptMResult this_mod imports
1090 runCmmOpt dflags this_mod (CmmOptM f) =
[all …]
/dports/graphics/libprojectm/projectm-3.1.12/src/MilkDrop2/Winamp/
H A DVIS.H21 void (__cdecl *Config)(struct winampVisModule *this_mod); // configuration dialog
22 int (__cdecl *Init)(struct winampVisModule *this_mod); // 0 on success, creates window, etc
23 …int (__cdecl *Render)(struct winampVisModule *this_mod); // returns 0 if successful, 1 if vis sh…
24 void (__cdecl *Quit)(struct winampVisModule *this_mod); // call when done
/dports/lang/ghc/ghc-8.10.7/compiler/stgSyn/
H A DCoreToStg.hs227 coreToStg dflags this_mod pgm
255 coreTopBindsToStg dflags this_mod env ccs (b:bs)
259 coreTopBindToStg dflags this_mod env ccs b
298 coreTopBindToStg dflags this_mod env ccs (Rec pairs)
354 coreToTopStgRhs dflags ccs this_mod (bndr, rhs)
699 mkTopStgRhs dflags this_mod ccs bndr rhs
710 not (isDllConApp dflags this_mod con args)
742 | otherwise = this_mod
745 (_, all_cafs_ccs) = getAllCAFsCC this_mod
916 getAllCAFsCC this_mod =
[all …]
/dports/net/py-trio/trio-0.19.0/trio/tests/
H A Dmodule_with_deprecations.py12 this_mod = sys.modules[__name__] variable
13 assert this_mod.regular == "hi"
14 assert not hasattr(this_mod, "dep1")
/dports/lang/ghc/ghc-8.10.7/compiler/GHC/
H A DStgToCmm.hs66 codeGen dflags this_mod data_tycons
76 let (a,st') = runC dflags this_mod st (getCmm fcode)
89 ; cg (mkModuleInit cost_centre_info this_mod hpc_info)
167 mkModuleInit cost_centre_info this_mod hpc_info
168 = do { initHpc this_mod hpc_info
/dports/lang/ghc/ghc-8.10.7/compiler/rename/
H A DRnEnv.hs164 do { this_mod <- getModule
165 ; unless (this_mod == nameModule name)
169 do { this_mod <- getModule
170 ; externaliseName this_mod name }
173 = do { this_mod <- getModule
208 do { this_mod <- getModule
413 = do { this_mod <- getModule
1242 ; this_mod <- getModule
1544 lookup rdr = do { this_mod <- getModule
1549 guard_builtin_syntax this_mod rdr (Right name)
[all …]
/dports/games/avp/avp-20170505/src/avp/win95/
H A Dprojload.cpp3007 if(this_mod->m_mapptr) DeallocateMem(this_mod->m_mapptr); in DeallocateModules()
3008 this_mod->m_mapptr=0; in DeallocateModules()
3009 if(this_mod->name) DeallocateMem(this_mod->name); in DeallocateModules()
3010 this_mod->name=0; in DeallocateModules()
3011 if(this_mod->m_vmptr) DeallocateMem(this_mod->m_vmptr); in DeallocateModules()
3012 this_mod->m_vmptr=0; in DeallocateModules()
3013 if(this_mod->m_lightarray) DeallocateMem(this_mod->m_lightarray); in DeallocateModules()
3014 this_mod->m_lightarray=0; in DeallocateModules()
3204 if(this_mod->m_vmptr) in LoadModuleData()
3263 this_mod->m_vmptr[j].vmod_data.vmodidata_ptr=&this_mod->m_vmptr[k]; in LoadModuleData()
[all …]
/dports/lang/ghc/ghc-8.10.7/compiler/GHC/StgToCmm/
H A DHpc.hs41 initHpc this_mod (HpcInfo tickCount _hashNo)
44 do emitDataLits (mkHpcTicksLabel this_mod)
/dports/lang/ghc/ghc-8.10.7/compiler/iface/
H A DFlagChecker.hs36 fingerprintDynFlags dflags@DynFlags{..} this_mod nameio =
37 let mainis = if mainModIs == this_mod then Just mainFunIs else Nothing
/dports/devel/hs-hlint/hlint-3.3.4/_cabal_deps/ghc-lib-parser-9.0.1.20210324/compiler/GHC/Types/
H A DName.hs249 isDynLinkName platform this_mod name
272 OSMinGW32 -> moduleUnit mod /= moduleUnit this_mod
275 _ -> mod /= this_mod
318 nameIsHomePackage this_mod
325 this_pkg = moduleUnit this_mod
330 nameIsHomePackageImport this_mod
333 Just nm_mod -> nm_mod /= this_mod
336 this_pkg = moduleUnit this_mod
/dports/devel/hs-ormolu/ormolu-0.4.0.0/_cabal_deps/ghc-lib-parser-9.2.1.20211101/compiler/GHC/Types/
H A DName.hs290 isDynLinkName platform this_mod name
313 OSMinGW32 -> moduleUnit mod /= moduleUnit this_mod
316 _ -> mod /= this_mod
359 nameIsHomePackage this_mod
366 this_pkg = moduleUnit this_mod
371 nameIsHomePackageImport this_mod
374 Just nm_mod -> nm_mod /= this_mod
377 this_pkg = moduleUnit this_mod
/dports/multimedia/libv4l/linux-5.13-rc2/include/linux/iio/
H A Dtrigger.h130 struct module *this_mod);
136 struct module *this_mod);
/dports/multimedia/v4l_compat/linux-5.13-rc2/include/linux/iio/
H A Dtrigger.h130 struct module *this_mod);
136 struct module *this_mod);
/dports/multimedia/v4l-utils/linux-5.13-rc2/include/linux/iio/
H A Dtrigger.h130 struct module *this_mod);
136 struct module *this_mod);
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/ghcide/src/Development/IDE/Spans/
H A DDocumentation.hs47 mkDocMap env rm this_mod =
48 do let (_ , DeclDocMap this_docs, _) = extractDocs this_mod
50 k <- foldrM getType (tcg_type_env this_mod) names
65 mod = tcg_mod this_mod
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/ghcide/src/Development/IDE/Spans/
H A DDocumentation.hs47 mkDocMap env rm this_mod =
48 do let (_ , DeclDocMap this_docs, _) = extractDocs this_mod
50 k <- foldrM getType (tcg_type_env this_mod) names
65 mod = tcg_mod this_mod
/dports/lang/ghc/ghc-8.10.7/compiler/deSugar/
H A DDsUsage.hs109 mkUsageInfo hsc_env this_mod dir_imp_mods used_names dependent_files merged
115 let mod_usages = mk_mod_usage_info (eps_PIT eps) hsc_env this_mod
243 mk_mod_usage_info pit hsc_env this_mod direct_imports used_names
290 || mod == this_mod -- We don't care about usages of
/dports/lang/ghc/ghc-8.10.7/compiler/specialise/
H A DSpecialise.hs582 specProgram guts@(ModGuts { mg_module = this_mod
588 ; (binds', uds) <- runSpecM dflags this_mod (go binds)
642 specImports dflags this_mod top_env local_rules
681 spec_imports dflags this_mod top_env
714 spec_import dflags this_mod top_env callers
739 ; runSpecM dflags this_mod $
1435 ; this_mod <- getModule
1445 -> text "SPEC/" <> ppr this_mod
1455 this_mod
2826 runSpecM dflags this_mod (SpecM spec)
[all …]
/dports/devel/py-jedi/jedi-0.18.0/test/test_api/
H A Dtest_search.py73 this_mod = 'test.test_api.test_search.'
74 assert [d.type + ' ' + d.full_name.replace(this_mod, '') for d in defs] == descriptions

12345