Searched refs:instruction_set_str (Results 1 – 2 of 2) sorted by relevance
145 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); in Parse() local146 instruction_set_ = GetInstructionSetFromString(instruction_set_str.data()); in Parse()148 fprintf(stderr, "Unsupported instruction set %s\n", instruction_set_str.data()); in Parse()
609 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); in ParseInstructionSet() local611 std::unique_ptr<char[]> buf(new char[instruction_set_str.length() + 1]); in ParseInstructionSet()612 strncpy(buf.get(), instruction_set_str.data(), instruction_set_str.length()); in ParseInstructionSet()613 buf.get()[instruction_set_str.length()] = 0; in ParseInstructionSet()