HomeSort by: relevance | last modified time | path
    Searched defs:Copy (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfilingFile.c 83 char *Copy = malloc(strlen(Filename) + 1);
84 strcpy(Copy, Filename);
85 __llvm_profile_recursive_mkdir(Copy);
86 free(Copy);
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
function_call_trie_test.cc 231 // We want to make a deep copy and compare notes.
233 FunctionCallTrie Copy(B);
234 Trie.deepCopyInto(Copy);
237 ASSERT_EQ(Trie.getRoots().size(), Copy.getRoots().size());
239 const auto &R0Copy = *Copy.getRoots()[0];
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_segmented_array.h 128 Iterator Copy(*this);
130 return Copy;
134 Iterator Copy(*this);
136 return Copy;
384 // FIXME: This is a duplication of AppenEmplace with the copy semantics
385 // explicitly used, as a work-around to GCC 4.8 not invoking the copy

Completed in 11 milliseconds