Lines Matching refs:temp
3727 char* temp = new char[total_size + 1];
3729 memcpy(temp, buf, my_old_size); // skip the +1 ('\0') for speed
3734 data.ptr = temp;
3749 char* temp = new char[data.capacity];
3751 memcpy(temp, data.ptr, my_old_size); // skip the +1 ('\0') for speed
3756 data.ptr = temp;
6507 auto temp = std::strstr(argv[index], pattern);
6508 … if(temp && (value || strlen(temp) == strlen(pattern))) { //!OCLINT prefer early exits and continue
6512 while(curr != temp) {
6521 temp += strlen(pattern);
6522 const unsigned len = strlen(temp);
6524 *value = temp;
6948 const auto temp = first[i];
6951 first[idxToSwap] = temp;