Searched refs:suffix (Results 1 – 8 of 8) sorted by relevance
9 # The %O suffix on the start and end files indicates that the system's10 # standard suffix for object files (e.g., ".o") should be appended.11 # The %s suffix tells the compiler driver to search for the file in the
200 std::string FetcherConfig::FindCvdFileWithSuffix(const std::string& suffix) const { in FindCvdFileWithSuffix()207 auto expected_pos = file.size() - suffix.size(); in FindCvdFileWithSuffix()208 if (file.rfind(suffix) == expected_pos) { in FindCvdFileWithSuffix()212 LOG(DEBUG) << "Could not find file ending in " << suffix; in FindCvdFileWithSuffix()
82 std::string FindCvdFileWithSuffix(const std::string& suffix) const;
40 local suffix="-linux-gnu"42 echo ${arch}${suffix}
45 suffix: "32",48 suffix: "64",
83 static int SlotSuffixToIndex(const char* suffix) { in SlotSuffixToIndex() argument85 if (!strcmp(kSlotSuffixes[slot], suffix)) return slot; in SlotSuffixToIndex()
243 #define __int_c(v, suffix) __int_c_join(v, suffix) argument
102 with open(path + args.suffix, 'w') as out_file: