Home
last modified time | relevance | path

Searched refs:temp_str (Results 1 – 10 of 10) sorted by relevance

/external/rappor/client/cpp/
Dopenssl_hash_impl.cc71 std::string temp_str(v); in HmacDrbg() local
72 temp_str.append(std::string("\0", 1)); in HmacDrbg()
74 temp_str.append(key); in HmacDrbg()
75 temp_str.append(value); in HmacDrbg()
80 if (!HmacSha256(std::string(k_array, k_array + 32), temp_str, &temp_output)) { in HmacDrbg()
/external/tensorflow/tensorflow/core/platform/cloud/
Dcurl_http_request_test.cc215 string temp_str = str; in curl_easy_escape() local
217 while ((n = temp_str.find(victim, n)) != std::string::npos) { in curl_easy_escape()
218 temp_str.replace(n, victim.size(), encoded); in curl_easy_escape()
222 port::Malloc(sizeof(char) * temp_str.size() + 1)); in curl_easy_escape()
223 std::copy(temp_str.begin(), temp_str.end(), out_char_str); in curl_easy_escape()
224 out_char_str[temp_str.size()] = '\0'; in curl_easy_escape()
/external/OpenCL-CTS/test_conformance/spir/
Drun_services.cpp87 char *temp_str, *p; in get_kernel_name() local
94 temp_str = (char *)temp.c_str(); in get_kernel_name()
95 p = strstr(temp_str, "."); in get_kernel_name()
100 kernel_name.assign(temp_str); in get_kernel_name()
/external/toolchain-utils/crosperf/
Dmachine_manager_unittest.py915 temp_str = "abcde"
916 checksum_str = cm._GetMD5Checksum(temp_str)
919 temp_str = ""
920 checksum_str = cm._GetMD5Checksum(temp_str)
/external/bc/src/
Dprogram.c2241 char* temp_str; in bc_program_asciify() local
2277 temp_str = bc_vm_malloc(v->len + 1); in bc_program_asciify()
2288 temp_str[i] = (bc_program_string(p, num))[0]; in bc_program_asciify()
2292 temp_str[i] = (char) bc_program_asciifyNum(p, num); in bc_program_asciify()
2296 temp_str[v->len] = '\0'; in bc_program_asciify()
2300 idx = bc_program_addString(p, temp_str); in bc_program_asciify()
2301 free(temp_str); in bc_program_asciify()
2343 free(temp_str); in bc_program_asciify()
/external/libaom/third_party/libwebm/mkvmuxer/
Dmkvmuxer.cc3021 char* temp_str = new (std::nothrow) char[length]; // NOLINT in set_muxing_app() local
3022 if (!temp_str) in set_muxing_app()
3026 strcpy_s(temp_str, length, app); in set_muxing_app()
3028 strcpy(temp_str, app); in set_muxing_app()
3032 muxing_app_ = temp_str; in set_muxing_app()
3039 char* temp_str = new (std::nothrow) char[length]; // NOLINT in set_writing_app() local
3040 if (!temp_str) in set_writing_app()
3044 strcpy_s(temp_str, length, app); in set_writing_app()
3046 strcpy(temp_str, app); in set_writing_app()
3050 writing_app_ = temp_str; in set_writing_app()
/external/libwebm/mkvmuxer/
Dmkvmuxer.cc3021 char* temp_str = new (std::nothrow) char[length]; // NOLINT in set_muxing_app() local
3022 if (!temp_str) in set_muxing_app()
3026 strcpy_s(temp_str, length, app); in set_muxing_app()
3028 strcpy(temp_str, app); in set_muxing_app()
3032 muxing_app_ = temp_str; in set_muxing_app()
3039 char* temp_str = new (std::nothrow) char[length]; // NOLINT in set_writing_app() local
3040 if (!temp_str) in set_writing_app()
3044 strcpy_s(temp_str, length, app); in set_writing_app()
3046 strcpy(temp_str, app); in set_writing_app()
3050 writing_app_ = temp_str; in set_writing_app()
/external/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.cc3021 char* temp_str = new (std::nothrow) char[length]; // NOLINT in set_muxing_app() local
3022 if (!temp_str) in set_muxing_app()
3026 strcpy_s(temp_str, length, app); in set_muxing_app()
3028 strcpy(temp_str, app); in set_muxing_app()
3032 muxing_app_ = temp_str; in set_muxing_app()
3039 char* temp_str = new (std::nothrow) char[length]; // NOLINT in set_writing_app() local
3040 if (!temp_str) in set_writing_app()
3044 strcpy_s(temp_str, length, app); in set_writing_app()
3046 strcpy(temp_str, app); in set_writing_app()
3050 writing_app_ = temp_str; in set_writing_app()
/external/autotest/client/cros/power/
Dpower_status.py269 temp_str = ''
275 temp_str += '%s:%d ' % (kname, val)
282 return temp_str
531 temp_str = self.thermal.get_temps()
532 if temp_str:
533 logging.info('Temperature reading: %s', temp_str)
/external/libwebm/
Dwebm_info.cc174 string temp_str(str, strlen(str)); in UTF8ToWideString() local
175 wstr.assign(temp_str.begin(), temp_str.end()); in UTF8ToWideString()