Home
last modified time | relevance | path

Searched refs:search (Results 1 – 25 of 151) sorted by relevance

1234567

/toolchain/binutils/binutils-2.25/opcodes/
Dcgen-opc.c154 CGEN_KEYWORD_SEARCH search; in cgen_keyword_search_init() local
163 search.table = kt; in cgen_keyword_search_init()
164 search.spec = spec; in cgen_keyword_search_init()
165 search.current_hash = 0; in cgen_keyword_search_init()
166 search.current_entry = NULL; in cgen_keyword_search_init()
167 return search; in cgen_keyword_search_init()
174 cgen_keyword_search_next (CGEN_KEYWORD_SEARCH *search) in cgen_keyword_search_next() argument
177 if (search->current_hash == search->table->hash_table_size) in cgen_keyword_search_next()
181 if (search->current_entry != NULL in cgen_keyword_search_next()
183 && search->current_entry->next_name != NULL) in cgen_keyword_search_next()
[all …]
/toolchain/binutils/binutils-2.25/ld/emultempl/
Dsunos.em93 linker, we add the directories in LD_LIBRARY_PATH to the search
133 /* Despite the name, we use this routine to search for dynamic
134 libraries. On SunOS this requires a directory search. We need to
140 search it after including the .so file. */
148 /* Search the directory for a .so file for each library search. */
153 search_dirs_type *search;
165 for (search = search_head; search != NULL; search = search->next)
169 found = gld${EMULATION_NAME}_search_dir (search->name, inp->filename,
179 found by the usual search. */
184 alc = (char *) xmalloc (strlen (search->name) + strlen (found) + 2);
[all …]
Daix.em775 search_dirs_type *search;
792 for (search = search_head->next; search != NULL; search = search->next)
796 name = search->name;
813 for (search = search_head->next; search != NULL; search = search->next)
817 nlen = strlen (search->name);
820 strcpy (libpath + len + 1, search->name);
1504 search_dirs_type *search,
1513 path = concat (search->name, "/", entry->filename,
1516 path = concat (search->name, "/lib", entry->filename, arch, ".a",
1526 path + strlen (search->name) + 1);
Dlinux.em60 (const char *arch, search_dirs_type *search, lang_input_statement_type *entry)
67 string = (char *) xmalloc (strlen (search->name)
72 sprintf (string, "%s/lib%s%s.sa", search->name, entry->filename, arch);
Dvms.em55 search_dirs_type *search,
63 string = (char *) xmalloc (strlen (search->name)
67 sprintf (string, "%s/%s.exe", search->name, entry->filename);
Delf32.em365 another file on the search path. */
564 /* Read the system search path the FreeBSD way rather than the Linux way. */
714 can search forward for the next '#' character and if found
1144 take priority over libs found in search dirs. */
1153 want to search for the file in the same way that the dynamic
1154 linker will search. That means that we want to use
1158 We do not search using the -L arguments.
1160 We search twice. The first time, we skip objects which may
1166 search_dirs_type *search;
1247 for (search = search_head; search != NULL; search = search->next)
[all …]
Dspuelf.em494 lang_input_statement_type *search;
515 for (search = (lang_input_statement_type *) input_file_chain.head;
516 search != NULL;
517 search = (lang_input_statement_type *) search->next_real_file)
518 if (search->filename != NULL)
520 const char *infile = base_name (search->filename);
Dlnk960.em102 add_on (lib_list_type *list, lang_input_file_enum_type search)
106 lang_add_input_file (list->name, search, (char *) NULL);
Dmmix-elfnmmo.em87 search for other errors), because it's a link error in the same way
Dpep.em307 {"dll-search-prefix", required_argument, NULL, OPTION_DLL_SEARCH_PREFIX},
438 …fprintf (file, _(" --dll-search-prefix=<string> When linking dynamically to a dll without\n\
2062 search_dirs_type *search,
2078 libfoo.dll and foo.dll in the search. */
2120 full_string = xmalloc (strlen (search->name)
2129 search->name and the start of the format string. */
2132 sprintf (full_string, "%s/", search->name);
/toolchain/binutils/binutils-2.25/ld/
Dldfile.c356 search_dirs_type *search; in ldfile_open_file_search() local
380 for (search = search_head; search != NULL; search = search->next) in ldfile_open_file_search()
386 if (ldemul_open_dynamic_archive (arch, search, entry)) in ldfile_open_file_search()
391 string = concat (search->name, slash, lib, entry->filename, in ldfile_open_file_search()
394 string = concat (search->name, slash, entry->filename, in ldfile_open_file_search()
562 search_dirs_type *search; in ldfile_find_command_file() local
592 for (search = default_only ? script_search : search_head; in ldfile_find_command_file()
593 search != NULL; in ldfile_find_command_file()
594 search = search->next) in ldfile_find_command_file()
596 path = concat (search->name, slash, name, (const char *) NULL); in ldfile_find_command_file()
Dldemul.c112 ldemul_open_dynamic_archive (const char *arch, search_dirs_type *search, in ldemul_open_dynamic_archive() argument
116 return (*ld_emulation->open_dynamic_archive) (arch, search, entry); in ldemul_open_dynamic_archive()
DREADME30 a different search path of -lfoo libraries than the default.
Dld.texinfo276 the library @code{libc.a}, which will come from the standard search
390 archive-library search path. @xref{i960,,@command{ld} and the Intel 960
663 will search the library path for a file called @var{filename}, otherwise it
664 will search the library path for a file called @file{lib@var{namespec}.a}.
666 On systems which support shared libraries, @command{ld} may also search for
668 and SunOS systems, @command{ld} will search a directory for a library
675 The linker will search an archive only once, at the location where it is
680 the command line will not cause the linker to search the archive again.
682 See the @option{-(} option for a way to force the linker to search
693 @cindex search directory, from cmd line
[all …]
Dldlang.c2631 lang_input_statement_type *search; in lookup_name() local
2633 for (search = (lang_input_statement_type *) input_file_chain.head; in lookup_name()
2634 search != NULL; in lookup_name()
2635 search = (lang_input_statement_type *) search->next_real_file) in lookup_name()
2640 const char *filename = search->local_sym_name; in lookup_name()
2647 if (search == NULL) in lookup_name()
2648 search = new_afile (name, lang_input_file_is_search_file_enum, in lookup_name()
2653 if (search->flags.loaded || !search->flags.real) in lookup_name()
2654 return search; in lookup_name()
2656 if (! load_symbols (search, NULL)) in lookup_name()
[all …]
/toolchain/binutils/binutils-2.25/intl/
Ddcigettext.c448 struct known_translation_t *search; variable
486 search = (struct known_translation_t *)
488 memcpy (search->msgid, msgid1, msgid_len);
489 search->domainname = (char *) domainname;
490 search->category = category;
492 foundp = (struct known_translation_t **) tfind (search, &root, transcmp);
493 freea (search);
/toolchain/binutils/binutils-2.25/libiberty/
Dpex-win32.c444 find_executable (const char *program, BOOL search) in find_executable() argument
457 search = FALSE; in find_executable()
459 if (search) in find_executable()
569 BOOL search, in win32_spawn() argument
619 full_executable = find_executable (executable, search); in win32_spawn()
/toolchain/binutils/binutils-2.25/config/
Dlib-prefix.m437 [ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib
38 --without-lib-prefix don't search for libraries in includedir and libdir],
Dgettext.m480 dnl Sometimes libintl requires libiconv, so first search for libiconv.
81 dnl Ideally we would do this search only after the
146 dnl Sometimes libintl requires libiconv, so first search for libiconv.
Dlib-ld.m472 # If it is relative, then search for the first ld in PATH.
Dlib-link.m435 dnl results of this search when this library appears as a dependency.
136 [ --with-lib$1-prefix[=DIR] search for lib$1 in DIR/include and DIR/lib
137 --without-lib$1-prefix don't search for lib$1 in includedir and libdir],
/toolchain/binutils/binutils-2.25/gold/po/
Did.po971 msgid "-l does not search for shared libraries"
1119 msgid "Add directory to search path"
1219 msgid "Add DIR to runtime search path"
1223 msgid "Add DIR to link time shared library search path"
1339 msgid "Default search path for Solaris compatibility"
1347 msgid "Start a library search group"
1351 msgid "End a library search group"
1395 msgid "Mark object not to use default search paths"
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/
Dtemplate29 # Call gas_start with two arguments: The input file name (which it'll search
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
Dvector.s128 (R0, R1) = search R2 (lt);
/toolchain/binutils/binutils-2.25/ld/po/
Dzh_CN.po195 " --dll-search-prefix=<string> When linking dynamically to a dll without\n"
199 " --dll-search-prefix=<字符串> 动态链接至 DLL 而缺少导入库时,使用\n"
1275 msgid "Add DIRECTORY to library search path"
1402 msgid "Default search path for Solaris compatibility"
1605 msgid "Set runtime shared library search path"
1609 msgid "Set link time shared library search path"

1234567