Home
last modified time | relevance | path

Searched refs:search_result (Results 1 – 6 of 6) sorted by relevance

/third_party/rust/crates/memchr/src/memchr/
Diter.rs12 ($self_:expr, $search_result:expr) => {
13 $search_result.map(move |index| {
24 ($self_:expr, $search_result:expr) => {
25 $search_result.map(move |index| {
/third_party/f2fs-tools/fsck/
Ddir.c658 void *search_result; in f2fs_search_hardlink() local
664 search_result = tsearch(find_hardlink, &(sbi->hardlink_cache), in f2fs_search_hardlink()
666 ASSERT(search_result != 0); in f2fs_search_hardlink()
668 found_hardlink = *(struct hardlink_cache_entry**) search_result; in f2fs_search_hardlink()
/third_party/nghttp2/lib/
Dnghttp2_hd.c1170 } search_result; typedef
1172 static search_result search_static_table(const nghttp2_nv *nv, int32_t token, in search_static_table()
1174 search_result res = {token, 0}; in search_static_table()
1196 static search_result search_hd_table(nghttp2_hd_context *context, in search_hd_table()
1200 search_result res = {-1, 0}; in search_hd_table()
1345 search_result res; in deflate_nv()
/third_party/node/deps/nghttp2/lib/
Dnghttp2_hd.c1165 } search_result; typedef
1167 static search_result search_static_table(const nghttp2_nv *nv, int32_t token, in search_static_table()
1169 search_result res = {token, 0}; in search_static_table()
1191 static search_result search_hd_table(nghttp2_hd_context *context, in search_hd_table()
1195 search_result res = {-1, 0}; in search_hd_table()
1339 search_result res; in deflate_nv()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-string-prototype.c605 … ecma_value_t search_result = ecma_op_function_call (search_method, regexp_value, &this_value, 1); in ecma_builtin_string_prototype_object_search() local
608 return search_result; in ecma_builtin_string_prototype_object_search()
/third_party/python/Lib/
Dpydoc.py2519 search_result = []
2524 search_result.append((modname, desc and '- ' + desc))
2540 for name, desc in search_result: