Home | History | Annotate | Download | only in tests

Lines Matching defs:src_str

79  * on src_str.
84 * @param src_str A string that represents the source register. The format for
91 const char * src_str)
100 if (!regex_helper(regex_str, src_str, matches, REGEX_SRC_MATCHES)) {
106 tokens.Negate.String = src_str + matches[1].rm_so;
108 tokens.Abs.String = src_str + matches[2].rm_so;
110 tokens.File.String = src_str + matches[3].rm_so;
112 tokens.Index.String = src_str + matches[4].rm_so;
114 tokens.Swizzle.String = src_str + matches[5].rm_so;
364 char * src_str;
370 src_str = malloc(sizeof(char) *
372 strncpy(src_str, tokens.Srcs[j].String,
374 src_str[tokens.Srcs[j].Length] = '\0';
375 init_rc_normal_src(inst, j, src_str);