Home
last modified time | relevance | path

Searched refs:psource (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_itt.inl102 KMP_DEBUG_ASSERT(loc->psource == entry->loc->psource);
149 __kmp_str_loc_init(loc->psource, /* init_fname */ false);
211 __kmp_str_loc_init(loc->psource, /* init_fname */ false);
239 __kmp_str_loc_init(loc->psource, /* init_fname */ false);
311 // Parse line and column from psource string: ";file;func;line;col;;"
312 KMP_DEBUG_ASSERT(loc->psource);
315 __kmp_str_loc_numbers(loc->psource, &line, &col);
344 __kmp_str_loc_numbers(loc->psource, &line, &col);
465 src = loc->psource;
[all...]
H A Dkmp_debugger.cpp148 offset_and_size_of(ident_t, psource),
272 kmp_str_loc_t loc = __kmp_str_loc_init(ident->psource, true); in __kmp_omp_num_threads()
H A Dkmp_error.cpp41 #define get_src(ident) ((ident) == NULL ? NULL : (ident)->psource)
94 if (ident != NULL && ident->psource != NULL) { in __kmp_pragma()
97 ident->psource); // Copy source to buffer. in __kmp_pragma()
H A Dkmp_str.h84 kmp_str_loc_t loc = __kmp_str_loc_init(ident->psource, false);
89 If psource is NULL or does not follow format above, file and/or func may be
101 kmp_str_loc_t __kmp_str_loc_init(char const *psource, bool init_fname);
H A Dkmp_str.cpp347 kmp_str_loc_t __kmp_str_loc_init(char const *psource, bool init_fname) { in __kmp_str_loc_init() argument
356 if (psource != NULL) { in __kmp_str_loc_init()
362 // Copy psource to keep it intact. in __kmp_str_loc_init()
363 loc._bulk = __kmp_str_format("%s", psource); in __kmp_str_loc_init()
365 // Parse psource string: ";file;func;line;col;;" in __kmp_str_loc_init()
H A Dkmp_taskdeps.cpp266 task_source->td_ident->psource, sink->dn.id, in __kmp_track_dependence()
267 task_sink->td_ident->psource); in __kmp_track_dependence()
H A Dkmp_csupport.cpp171 semi2 = loc->psource; in __kmpc_ok_to_fork()
185 while ((name > loc->psource) && (*name != '/') && (*name != ';')) { in __kmpc_ok_to_fork()
4547 if (loc && loc->psource) { in __kmpc_error()
4548 kmp_str_loc_t str_loc = __kmp_str_loc_init(loc->psource, false); in __kmpc_error()
H A Dkmp_sched.cpp178 (buff, *plastiter, *plower, *pupper, *pstride, loc->psource)); in __kmp_for_static_init()
H A Dkmp_lock.cpp3995 (loc->psource != NULL)) { in __kmp_cleanup_user_locks()
3996 kmp_str_loc_t str_loc = __kmp_str_loc_init(loc->psource, false); in __kmp_cleanup_user_locks()
H A Dkmp.h257 char const *psource; /**< String describing the source location. member
/freebsd/contrib/lua/src/
H A Dldump.c110 static void dumpFunction(DumpState *D, const Proto *f, TString *psource);
183 static void dumpFunction (DumpState *D, const Proto *f, TString *psource) { in dumpFunction() argument
184 if (D->strip || f->source == psource) in dumpFunction()
H A Dlundump.c152 static void loadFunction(LoadState *S, Proto *f, TString *psource);
258 static void loadFunction (LoadState *S, Proto *f, TString *psource) { in loadFunction() argument
261 f->source = psource; /* reuse parent's source */ in loadFunction()