Home
last modified time | relevance | path

Searched refs:nlist (Results 1 – 25 of 123) sorted by relevance

12345

/external/rust/crates/regex/src/
Dpikevm.rs45 nlist: Threads, field
79 Cache { clist: Threads::new(), nlist: Threads::new(), stack: vec![] } in new()
101 cache.nlist.resize(prog.len(), prog.captures.len()); in exec()
105 &mut cache.nlist, in exec()
117 mut nlist: &mut Threads, in exec_()
127 nlist.set.clear(); in exec_()
174 &mut nlist, in exec_()
206 mem::swap(clist, nlist); in exec_()
207 nlist.set.clear(); in exec_()
226 nlist: &mut Threads, in step()
[all …]
/external/llvm-project/lldb/tools/compact-unwind/
Dcompact-unwind-dumper.c311 struct nlist_64 nlist; in scan_macho_load_commands() local
312 memset(&nlist, 0, sizeof(struct nlist_64)); in scan_macho_load_commands()
314 memcpy(&nlist, local_syms + (i * nlist_size), in scan_macho_load_commands()
317 struct nlist nlist_32; in scan_macho_load_commands()
318 memset(&nlist_32, 0, sizeof(struct nlist)); in scan_macho_load_commands()
320 sizeof(struct nlist)); in scan_macho_load_commands()
321 nlist.n_un.n_strx = nlist_32.n_un.n_strx; in scan_macho_load_commands()
322 nlist.n_type = nlist_32.n_type; in scan_macho_load_commands()
323 nlist.n_sect = nlist_32.n_sect; in scan_macho_load_commands()
324 nlist.n_desc = nlist_32.n_desc; in scan_macho_load_commands()
[all …]
/external/curl/tests/libtest/
Dlib1591.c58 struct curl_slist *nlist = NULL; in trailers_callback() local
61 nlist = curl_slist_append(*list, "my-super-awesome-trailer: trail1"); in trailers_callback()
62 if(nlist) in trailers_callback()
63 nlist2 = curl_slist_append(nlist, "my-other-awesome-trailer: trail2"); in trailers_callback()
69 curl_slist_free_all(nlist); in trailers_callback()
/external/elfutils/libelf/
Dnlist.h34 struct nlist struct
50 extern int nlist (__const char *__filename, struct nlist *__nl); argument
Dnlist.c60 nlist (const char *filename, struct nlist *nl) in nlist() function
DMakefile.am40 include_HEADERS = libelf.h gelf.h nlist.h
88 nlist.c \
Dlibelf.map94 nlist;
/external/selinux/python/sepolicy/sepolicy/
Dnetwork.py27 nlist = []
30 if i not in nlist:
31 nlist.append(i)
32 return nlist
/external/llvm-project/lldb/source/Plugins/ObjectFile/Mach-O/
DObjectFileMachO.cpp2150 struct nlist_64 nlist; in ParseNList() local
2153 nlist.n_strx = nlist_data.GetU32_unchecked(&nlist_data_offset); in ParseNList()
2154 nlist.n_type = nlist_data.GetU8_unchecked(&nlist_data_offset); in ParseNList()
2155 nlist.n_sect = nlist_data.GetU8_unchecked(&nlist_data_offset); in ParseNList()
2156 nlist.n_desc = nlist_data.GetU16_unchecked(&nlist_data_offset); in ParseNList()
2157 nlist.n_value = nlist_data.GetAddress_unchecked(&nlist_data_offset); in ParseNList()
2158 return nlist; in ParseNList()
2268 bit_width_32 ? sizeof(struct nlist) : sizeof(struct nlist_64); in ParseSymtab()
2803 struct nlist_64 nlist = *nlist_maybe; in ParseSymtab() local
2807 string_table_offset + nlist.n_strx); in ParseSymtab()
[all …]
/external/google-breakpad/src/third_party/mac_headers/mach-o/
Dnlist.h76 struct nlist { struct
306 extern int nlist (const char *filename, struct nlist *list);
/external/elfutils/tests/
Dtest-nlist.c37 struct nlist nl[6] = in main()
49 if (nlist (".libs/test-nlist", nl) != 0 in main()
50 && nlist ("./test-nlist", nl) != 0) in main()
/external/llvm-project/llvm/tools/llvm-objcopy/MachO/
DMachOReader.cpp191 SymbolEntry constructSymbolEntry(StringRef StrTable, const nlist_t &nlist) { in constructSymbolEntry() argument
192 assert(nlist.n_strx < StrTable.size() && in constructSymbolEntry()
195 SE.Name = StringRef(StrTable.data() + nlist.n_strx).str(); in constructSymbolEntry()
196 SE.n_type = nlist.n_type; in constructSymbolEntry()
197 SE.n_sect = nlist.n_sect; in constructSymbolEntry()
198 SE.n_desc = nlist.n_desc; in constructSymbolEntry()
199 SE.n_value = nlist.n_value; in constructSymbolEntry()
/external/llvm/tools/obj2yaml/
Dmacho2yaml.cpp430 MachOYAML::NListEntry constructNameList(const nlist_t &nlist) { in constructNameList() argument
432 NL.n_strx = nlist.n_strx; in constructNameList()
433 NL.n_type = nlist.n_type; in constructNameList()
434 NL.n_sect = nlist.n_sect; in constructNameList()
435 NL.n_desc = nlist.n_desc; in constructNameList()
436 NL.n_value = nlist.n_value; in constructNameList()
448 : constructNameList<MachO::nlist>( in dumpSymbols()
449 *reinterpret_cast<const MachO::nlist *>( in dumpSymbols()
/external/llvm-project/flang/test/Lower/
Dpre-fir-tree02.f90255 namelist /nlist/ a, b, c
257 write(10, NML=nlist)
/external/kernel-headers/original/uapi/linux/
Da.out.h146 struct nlist { struct
149 struct nlist *n_next; argument
/external/llvm-project/llvm/tools/obj2yaml/
Dmacho2yaml.cpp559 MachOYAML::NListEntry constructNameList(const nlist_t &nlist) { in constructNameList() argument
561 NL.n_strx = nlist.n_strx; in constructNameList()
562 NL.n_type = nlist.n_type; in constructNameList()
563 NL.n_sect = nlist.n_sect; in constructNameList()
564 NL.n_desc = nlist.n_desc; in constructNameList()
565 NL.n_value = nlist.n_value; in constructNameList()
577 : constructNameList<MachO::nlist>( in dumpSymbols()
/external/google-breakpad/src/client/mac/handler/
Dbreakpad_nlist_64.h40 struct nlist *list,
Dbreakpad_nlist_64.cc115 typedef struct nlist nlist32;
155 struct nlist *list, in breakpad_nlist()
/external/llvm-project/lld/lib/ReaderWriter/MachO/
DMachONormalizedFileBinaryReader.cpp411 if ( symOffset+(symCount*sizeof(nlist)) > objSize) in readBinary()
413 const nlist *symbols = in readBinary()
414 reinterpret_cast<const nlist *>(start + symOffset); in readBinary()
417 const nlist *sin = &symbols[i]; in readBinary()
418 nlist tempSym; in readBinary()
/external/python/cpython2/Lib/plat-irix5/
Dflp.py256 nlist = []
258 nlist.append(_parse_num(i))
259 return nlist
/external/python/cpython2/Lib/plat-irix6/
Dflp.py255 nlist = []
257 nlist.append(_parse_num(i))
258 return nlist
/external/curl/
Dltmain.sh4679 nlist=$output_objdir/$my_outputname.nm
4681 func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
4718 $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
4725 $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'"
4802 $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'"
4808 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
4816 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
4824 test -f "$nlist" || : > "$nlist"
4827 $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
4828 $MV "$nlist"T "$nlist"
[all …]
/external/python/cpython2/Modules/_ctypes/libffi/
Dltmain.sh4468 nlist=$output_objdir/$my_outputname.nm
4470 func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
4507 $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
4514 $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'"
4591 $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'"
4597 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
4605 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
4613 test -f "$nlist" || : > "$nlist"
4616 $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
4617 $MV "$nlist"T "$nlist"
[all …]
/external/llvm-project/polly/lib/External/isl/interface/
Dltmain.sh4587 nlist=$output_objdir/$my_outputname.nm
4589 func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
4626 $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
4633 $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'"
4710 $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'"
4716 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
4724 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
4732 test -f "$nlist" || : > "$nlist"
4735 $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
4736 $MV "$nlist"T "$nlist"
[all …]
/external/libpng/
Dltmain.sh4587 nlist=$output_objdir/$my_outputname.nm
4589 func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
4626 $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
4633 $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'"
4710 $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'"
4716 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
4724 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
4732 test -f "$nlist" || : > "$nlist"
4735 $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
4736 $MV "$nlist"T "$nlist"
[all …]

12345