Home
last modified time | relevance | path

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

/libCEED/interface/
H A Dceed-jit-tools.c74 …nt CeedNormalizePath(Ceed ceed, const char *source_file_path, char **normalized_source_file_path) { in CeedNormalizePath() argument
75 CeedCall(CeedStringAllocCopy(source_file_path, normalized_source_file_path)); in CeedNormalizePath()
77 char *first_dot = strchr(*normalized_source_file_path, '.'); in CeedNormalizePath()
84 …if (first_dot != *normalized_source_file_path && strlen(first_dot) > 2) memcpy(keyword, &first_dot… in CeedNormalizePath()
92 …if (first_dot != *normalized_source_file_path && strlen(first_dot) > 3) memcpy(keyword, &first_dot… in CeedNormalizePath()
98 while (last_slash[0] != '/' && last_slash != *normalized_source_file_path) last_slash--; in CeedNormalizePath()
99 …CeedCheck(last_slash != *normalized_source_file_path, ceed, CEED_ERROR_MAJOR, "Malformed source pa… in CeedNormalizePath()