Home
last modified time | relevance | path

Searched refs:tmp_search (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl2/texinfo/dist/info/
H A Dsearch.c435 SEARCH_BINDING tmp_search; in find_tags_table() local
438 tmp_search.buffer = binding->buffer; in find_tags_table()
439 tmp_search.start = binding->start; in find_tags_table()
440 tmp_search.end = binding->end; in find_tags_table()
441 tmp_search.flags = S_FoldCase; in find_tags_table()
443 while ((position = find_node_separator (&tmp_search)) != -1 ) in find_tags_table()
445 tmp_search.start = position; in find_tags_table()
446 tmp_search.start += skip_node_separator (tmp_search.buffer in find_tags_table()
447 + tmp_search.start); in find_tags_table()
449 if (looking_at (TAGS_TABLE_BEG_LABEL, &tmp_search)) in find_tags_table()
[all …]
H A Dinfo-utils.c177 SEARCH_BINDING tmp_search; in info_menu_of_node() local
180 tmp_search.buffer = node->contents; in info_menu_of_node()
181 tmp_search.start = 0; in info_menu_of_node()
182 tmp_search.end = node->nodelen; in info_menu_of_node()
183 tmp_search.flags = S_FoldCase; in info_menu_of_node()
186 position = search_forward (INFO_MENU_LABEL, &tmp_search); in info_menu_of_node()
193 tmp_search.start = position + strlen (INFO_MENU_LABEL); in info_menu_of_node()
194 tmp_search.start += skip_line (tmp_search.buffer + tmp_search.start); in info_menu_of_node()
195 tmp_search.start--; in info_menu_of_node()
196 menu = info_menu_items (&tmp_search); in info_menu_of_node()
[all …]
H A Dnodes.c595 SEARCH_BINDING *tmp_search; in get_nodes_of_tags_table() local
599 tmp_search = copy_binding (buffer_binding); in get_nodes_of_tags_table()
602 position = find_tags_table (tmp_search); in get_nodes_of_tags_table()
609 tmp_search->start = position; in get_nodes_of_tags_table()
610 tmp_search->start += skip_node_separator in get_nodes_of_tags_table()
611 (tmp_search->buffer + tmp_search->start); in get_nodes_of_tags_table()
612 tmp_search->start += strlen (TAGS_TABLE_BEG_LABEL); in get_nodes_of_tags_table()
613 tmp_search->start--; in get_nodes_of_tags_table()
617 while ((position = search_forward ("\n", tmp_search)) != -1) in get_nodes_of_tags_table()
625 tmp_search->start = position; in get_nodes_of_tags_table()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/store/
H A Dstore_lib.c477 OSSL_STORE_SEARCH tmp_search; in OSSL_STORE_supports_search() local
481 tmp_search.search_type = search_type; in OSSL_STORE_supports_search()
482 return ctx->loader->find(NULL, &tmp_search); in OSSL_STORE_supports_search()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/store/
H A Dstore_lib.c839 OSSL_STORE_SEARCH tmp_search; in OSSL_STORE_supports_search() local
843 tmp_search.search_type = search_type; in OSSL_STORE_supports_search()
844 ret = ctx->loader->find(NULL, &tmp_search); in OSSL_STORE_supports_search()