Home
last modified time | relevance | path

Searched refs:init_globals (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/
Drunpy.py62 def _run_code(code, run_globals, init_globals=None, argument
66 if init_globals is not None:
67 run_globals.update(init_globals)
75 def _run_module_code(code, init_globals=None, argument
81 _run_code(code, mod_globals, init_globals,
176 def run_module(mod_name, init_globals=None, argument
187 return _run_module_code(code, init_globals, run_name,
191 return _run_code(code, {}, init_globals, run_name,
235 def run_path(path_name, init_globals=None, run_name=None): argument
252 return _run_module_code(code, init_globals, run_name, path_name)
[all …]
/external/python/cpython2/Doc/library/
Drunpy.rst23 .. function:: run_module(mod_name, init_globals=None, run_name=None, alter_sys=False)
38 The optional dictionary argument *init_globals* may be used to pre-populate
84 .. function:: run_path(file_path, init_globals=None, run_name=None)
103 The optional dictionary argument *init_globals* may be used to pre-populate
/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_sched.h319 void init_globals(val_set &s, bool prealloc);
Dsb_sched.cpp946 init_globals(c->live_after, true); in process_alu()
947 init_globals(c->live_before, true); in process_alu()
1091 void post_scheduler::init_globals(val_set &s, bool prealloc) { in init_globals() function in r600_sb::post_scheduler
1150 init_globals(live, false); in schedule_alu()
1165 init_globals(live, false); in schedule_alu()
/external/mesa3d/src/gallium/tests/trivial/
Dcompute.c405 static void init_globals(struct context *ctx, const int *slots, in init_globals() function
668 init_globals(ctx, (int []){ 0, 1, 2, 3, -1 }, in test_input_global()