Home
last modified time | relevance | path

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

/third_party/boost/libs/nowide/src/
Dcstdlib.cpp99 const char* key_end = string; in putenv() local
100 while(*key_end != '=' && *key_end != '\0') in putenv()
101 key_end++; in putenv()
102 if(*key_end == '\0') in putenv()
104 const wshort_stackstring wkey(key, key_end); in putenv()
105 const wstackstring wvalue(key_end + 1); in putenv()
/third_party/libpsl/src/
Dlookup_string_in_fixed_set.c210 const char* key_end = key + key_length; in LookupStringInFixedSet() local
223 if (key != key_end && !IsEOL(offset, end)) { in LookupStringInFixedSet()
237 while (!IsEOL(offset, end) && key != key_end) { in LookupStringInFixedSet()
249 if (key == key_end) { in LookupStringInFixedSet()
/third_party/glib/gio/
Dgdbusdaemon.c209 is_key (const char *key_start, const char *key_end, const char *value) in is_key() argument
213 g_assert (key_end >= key_start); in is_key()
214 if (len != (gsize) (key_end - key_start)) in is_key()
221 parse_key (MatchElement *element, const char *key_start, const char *key_end) in parse_key() argument
225 if (is_key (key_start, key_end, "type")) in parse_key()
229 else if (is_key (key_start, key_end, "sender")) in parse_key()
233 else if (is_key (key_start, key_end, "interface")) in parse_key()
237 else if (is_key (key_start, key_end, "member")) in parse_key()
241 else if (is_key (key_start, key_end, "path")) in parse_key()
245 else if (is_key (key_start, key_end, "path_namespace")) in parse_key()
[all …]
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/string/
Dpredict.cc51 int32_t *key_end = key_begin + keys_tensor->ElementsNum(); in GetLabelInfo() local
59 int *p = std::lower_bound(key_begin, key_end, input[i]); in GetLabelInfo()
60 if (p == nullptr || p == key_end || *p != input[i]) { in GetLabelInfo()
/third_party/boost/boost/graph/detail/
Dhistogram_sort.hpp87 void histogram_sort(KeyIterator key_begin, KeyIterator key_end, in histogram_sort() argument
105 for (KeyIterator i = key_begin; i != key_end; ++i, ++v1i) in histogram_sort()
123 void histogram_sort(KeyIterator key_begin, KeyIterator key_end, in histogram_sort() argument
143 for (KeyIterator i = key_begin; i != key_end; ++i, ++v1i, ++v2i) in histogram_sort()
/third_party/boost/libs/nowide/test/
Dtest_system.cpp83 const char* key_end = strchr(key_begin, '='); in compare_getenv() local
84 TEST(key_end); in compare_getenv()
85 std::string key = std::string(key_begin, key_end); in compare_getenv()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DOnDiskHashTable.h540 key_iterator key_end() { return key_iterator(); } in key_end() function
543 return make_range(key_begin(), key_end()); in keys()
/third_party/glib/glib/
Dgkeyfile.c1354 gchar *key, *value, *key_end, *value_start, *locale; in g_key_file_parse_key_value_pair() local
1365 key_end = value_start = strchr (line, '='); in g_key_file_parse_key_value_pair()
1367 g_warn_if_fail (key_end != NULL); in g_key_file_parse_key_value_pair()
1369 key_end--; in g_key_file_parse_key_value_pair()
1374 while (g_ascii_isspace (*key_end)) in g_key_file_parse_key_value_pair()
1375 key_end--; in g_key_file_parse_key_value_pair()
1377 key_len = key_end - line + 2; in g_key_file_parse_key_value_pair()
/third_party/ffmpeg/libavutil/
Dopt.c1519 const char *key_start, *key_end; in get_key() local
1524 key_end = opts; in get_key()
1529 if (!(*rkey = av_malloc(key_end - key_start + 1))) in get_key()
1531 memcpy(*rkey, key_start, key_end - key_start); in get_key()
1532 (*rkey)[key_end - key_start] = 0; in get_key()
/third_party/boost/boost/move/algo/detail/
Dadaptive_sort_merge.hpp356 RandItKeys const key_end (key_first+n_bef_irreg2); in merge_blocks_bufferless() local
359 for(RandItKeys key_next = key_first; key_next != key_end; ++key_next){ in merge_blocks_bufferless()