/external/webrtc/rtc_base/ |
D | string_to_number.cc | 54 T StrToT(const char* str, char** str_end); 57 inline float StrToT(const char* str, char** str_end) { in StrToT() argument 58 return std::strtof(str, str_end); in StrToT() 62 inline double StrToT(const char* str, char** str_end) { in StrToT() argument 63 return std::strtod(str, str_end); in StrToT() 67 inline long double StrToT(const char* str, char** str_end) { in StrToT() argument 68 return std::strtold(str, str_end); in StrToT()
|
/external/perfetto/src/traced/probes/android_log/ |
D | android_log_data_source.cc | 333 const char* str_end; in ParseTextEvent() local 334 for (str_end = buf; str_end < end && *str_end; str_end++) { in ParseTextEvent() 336 if (str_end >= end - 2) in ParseTextEvent() 339 auto tag = base::StringView(buf, static_cast<size_t>(str_end - buf)); in ParseTextEvent() 348 buf = str_end + 1; // Move |buf| to the start of the message. in ParseTextEvent()
|
/external/pcre/dist2/src/ |
D | pcre2_jit_neon_inc.h | 85 static sljit_u8* SLJIT_FUNC FF_FUN(sljit_u8 *str_end, sljit_u8 *str_ptr, sljit_uw offs1, sljit_uw o… in FF_FUN() argument 263 while (str_ptr < str_end) in FF_FUN() 325 if (str_ptr >= str_end) in FF_FUN()
|
/external/kmod/tools/ |
D | modprobe.c | 686 char **new_argv, *str_start, *str_end, *str, *s, *quote; in prepend_options_from_env() local 707 str_end = str_start + envlen; in prepend_options_from_env() 730 for (it = s - 1; it < str_end - 2; it++) in prepend_options_from_env() 732 str_end -= 2; in prepend_options_from_env() 733 *str_end = '\0'; in prepend_options_from_env()
|
/external/python/cpython2/Modules/_io/ |
D | bytesio.c | 29 const char *str_end; in get_line() local 35 str_end = self->buf + self->string_size; in get_line() 37 n < str_end && *n != '\n'; in get_line() 41 if (n < str_end) in get_line()
|
/external/dtc/tests/ |
D | label01.dts | 41 prop: string = str: "foo", str_mid: "stuffstuff\t\t\t\n\n\n" str_end: ;
|
/external/llvm-project/lldb/source/Host/common/ |
D | NativeProcessProtocol.cpp | 690 void *str_end = std::memchr(curr_buffer, '\0', bytes_read); in ReadCStringFromMemory() local 691 if (str_end != nullptr) { in ReadCStringFromMemory() 693 static_cast<size_t>((static_cast<char *>(str_end) - buffer + 1)); in ReadCStringFromMemory()
|
/external/fmtlib/include/fmt/ |
D | printf.h | 517 auto str_end = str + specs.precision; 518 auto nul = std::find(str, str_end, Char()); 521 detail::to_unsigned(nul != str_end ? nul - str : specs.precision)));
|
/external/mesa3d/src/compiler/glsl/ |
D | link_uniforms.cpp | 838 const char *str_end; in set_opaque_indices() local 840 (str_end = strchr(name_copy, ']'))) { in set_opaque_indices() 841 memmove(str_start, str_end + 1, 1 + strlen(str_end + 1)); in set_opaque_indices()
|
/external/python/cpython3/Modules/ |
D | _zoneinfo.c | 1589 const char *str_end; in parse_abbr() local 1611 str_end = ptr; in parse_abbr() 1624 str_end = ptr; in parse_abbr() 1627 *abbr = PyUnicode_FromStringAndSize(str_start, str_end - str_start); in parse_abbr()
|
/external/mesa3d/src/imgui/ |
D | imgui_internal.h | 177 IMGUI_API const char* ImStrchrRange(const char* str_begin, const char* str_end, char c); 179 IMGUI_API const char* ImStreolRange(const char* str, const char* str_end); // End … 1214 ImGuiID GetID(const char* str, const char* str_end = NULL); 1216 ImGuiID GetIDNoKeepAlive(const char* str, const char* str_end = NULL);
|
D | imgui.cpp | 1325 const char* ImStrchrRange(const char* str, const char* str_end, char c) in ImStrchrRange() argument 1327 const char* p = (const char*)memchr(str, (int)c, str_end - str); in ImStrchrRange() 1340 const char* ImStreolRange(const char* str, const char* str_end) in ImStreolRange() argument 1342 const char* p = (const char*)memchr(str, '\n', str_end - str); in ImStreolRange() 1343 return p ? p : str_end; in ImStreolRange() 2128 void ImGuiTextBuffer::append(const char* str, const char* str_end) in append() argument 2130 int len = str_end ? (int)(str_end - str) : (int)strlen(str); in append() 2566 ImGuiID ImGuiWindow::GetID(const char* str, const char* str_end) in GetID() argument 2569 ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed); in GetID() 2582 ImGuiID ImGuiWindow::GetIDNoKeepAlive(const char* str, const char* str_end) in GetIDNoKeepAlive() argument [all …]
|
D | imgui.h | 1594 IMGUI_API void append(const char* str, const char* str_end = NULL);
|