Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
Drc_test_helpers.c266 const char * dst_str) in init_rc_normal_dst() argument
274 if (!regex_helper(regex_str, dst_str, matches, REGEX_DST_MATCHES)) { in init_rc_normal_dst()
280 tokens.File.String = dst_str + matches[1].rm_so; in init_rc_normal_dst()
282 tokens.Index.String = dst_str + matches[2].rm_so; in init_rc_normal_dst()
284 tokens.WriteMask.String = dst_str + matches[3].rm_so; in init_rc_normal_dst()
405 char * dst_str; in parse_rc_normal_instruction() local
410 dst_str = malloc(sizeof(char) * (tokens.Dst.Length + 1)); in parse_rc_normal_instruction()
411 strncpy(dst_str, tokens.Dst.String, tokens.Dst.Length); in parse_rc_normal_instruction()
412 dst_str[tokens.Dst.Length] = '\0'; in parse_rc_normal_instruction()
413 init_rc_normal_dst(inst, dst_str); in parse_rc_normal_instruction()
[all …]
Drc_test_helpers.h46 const char * dst_str);