Searched refs:init_globals (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Lib/ |
H A D | runpy.py | 65 def _run_code(code, run_globals, init_globals=None, 69 if init_globals is not None: 70 run_globals.update(init_globals) 91 def _run_module_code(code, init_globals=None, 98 _run_code(code, mod_globals, init_globals, 201 def run_module(mod_name, init_globals=None, 208 init_globals -- dictionary used to pre-populate the module’s 226 return _run_module_code(code, init_globals, run_name, mod_spec) 229 return _run_code(code, {}, init_globals, run_name, mod_spec) 262 def run_path(path_name, init_globals [all...] |
/third_party/python/Lib/test/ |
H A D | test_runpy.py | 155 def create_ns(init_globals): 156 return _run_code(example_source, {}, init_globals) 178 def create_ns(init_globals): 180 init_globals, 310 def create_ns(init_globals): 311 return run_module(mod_name, init_globals, alter_sys=alter_sys) 351 def create_ns(init_globals): 352 return run_module(pkg_name, init_globals, alter_sys=alter_sys) 550 def create_ns(init_globals): 551 return run_module(mod_name, init_globals, run_nam [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_sched.h | 324 void init_globals(val_set &s, bool prealloc);
|
H A D | sb_sched.cpp | 958 init_globals(c->live_after, true); in process_alu() 959 init_globals(c->live_before, true); in process_alu() 1103 void post_scheduler::init_globals(val_set &s, bool prealloc) { in init_globals() function in r600_sb::post_scheduler 1106 sblog << "init_globals: "; in init_globals() 1177 init_globals(live, false); in schedule_alu() 1192 init_globals(live, false); in schedule_alu()
|
/third_party/mesa3d/src/gallium/tests/trivial/ |
H A D | compute.c | 405 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() function
|
/third_party/toybox/toys/pending/ |
H A D | awk.c | 520 // This will be reassigned in init_globals() with an empty string. 3223 // init_globals() will assign a ZF_MAYBEMAP flag to it. If it is then assigned in assign_global() 4356 static void init_globals(int optind, int argc, char **argv, char *sepstring, in init_globals() function 4467 init_globals(optind, argc, argv, sepstring, assign_args); in run()
|
Completed in 14 milliseconds