Searched refs:syms (Results 1 - 25 of 110) sorted by relevance

12345

/macosx-10.9.5/MITKerberosShim-62.1/
H A Dgen.pl205 my $syms = shift;
208 foreach $sym (@$syms) {
215 my $syms = shift;
232 foreach $sym (@$syms) {
253 my $syms = shift;
261 foreach $sym (@$syms) {
282 foreach $sym (@$syms) {
286 foreach $sym (@$syms) {
299 my $syms = shift;
305 foreach $sym (@$syms) {
[all...]
/macosx-10.9.5/ruby-104/ruby/
H A Daddr2line.h17 rb_dump_backtrace_with_lines(int num_traces, void **traces, char **syms);
/macosx-10.9.5/Heimdal-323.92.1/tests/apple/
H A Dcheck-export.c311 void *syms; local
315 syms = dlopen("/System/Library/Framework/GSS.framework/GSS", RTLD_NOW | RTLD_LOCAL);
316 if (syms == NULL)
320 if (dlsym(syms, exported_10_7[n]) == NULL)
324 if (dlsym(syms, import_mkshim_gss[n]) == NULL)
327 dlclose(syms);
331 syms = dlopen("/System/Library/PrivateFrameworks/Heimdal.framework/Heimdal", RTLD_NOW | RTLD_LOCAL);
332 if (syms == NULL)
336 if (dlsym(syms, import_mkshim_heimdal[n]) == NULL)
339 dlclose(syms);
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dudat.cpp431 const DateFormatSymbols *syms; local
435 syms = sdtfmt->getDateFormatSymbols();
437 syms = rdtfmt->getDateFormatSymbols();
446 res = syms->getEras(count);
450 res = syms->getEraNames(count);
454 res = syms->getMonths(count);
458 res = syms->getShortMonths(count);
462 res = syms->getWeekdays(count);
466 res = syms->getShortWeekdays(count);
470 res = syms
554 const DateFormatSymbols *syms; local
704 setEra(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
711 setEraName(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
718 setMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
725 setShortMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
732 setNarrowMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
739 setStandaloneMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
746 setStandaloneShortMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
753 setStandaloneNarrowMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
760 setWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
767 setShortWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
774 setShorterWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
781 setNarrowWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
788 setStandaloneWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
795 setStandaloneShortWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
802 setStandaloneShorterWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
809 setStandaloneNarrowWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
816 setQuarter(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
823 setShortQuarter(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
830 setStandaloneQuarter(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
837 setStandaloneShortQuarter(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
844 setAmPm(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
851 setLocalPatternChars(DateFormatSymbols *syms, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
[all...]
/macosx-10.9.5/zlib-53/zlib/examples/
H A Denough.c116 syms: number of symbols remaining to code
122 syms: 3..totsym (totsym == total symbols to code)
123 left: 2..syms - 1, but only the evens (so syms == 8 -> 2, 4, 6)
126 syms == 2 is not saved since that immediately leads to a single code. left
129 left ends at syms-1 since left == syms immediately results in a single code.
134 first one (syms) being outermost, and the last one (len) being innermost.
135 We build the array with length max-1 lists for the len index, with syms-3
148 to the num[] array as described above for the (syms, lef
200 count(int syms, int len, int left) argument
255 beenhere(int syms, int len, int left, int mem, int rem) argument
319 examine(int syms, int len, int left, int mem, int rem) argument
400 enough(int syms) argument
457 int syms; /* total number of symbols to code */ local
[all...]
/macosx-10.9.5/CPANInternal-140/Variable-Magic/t/
H A D01-import.t10 my %syms = (
28 for (sort keys %syms) {
31 is prototype($_), $syms{$_}, "prototype $_";
/macosx-10.9.5/curl-78.94.1/curl/tests/
H A Dsymbol-scan.pl44 my @syms;
55 push @syms, $_;
65 push @syms, $1;
95 for my $e (sort @syms) {
149 printf "%d symbols in headers (out of which %d are ignored)\n", scalar(@syms),
152 scalar(@syms)- $ignored;
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Dbinary.c165 asymbol *syms; local
169 syms = bfd_alloc (abfd, amt);
170 if (syms == NULL)
174 syms[0].the_bfd = abfd;
175 syms[0].name = mangle_name (abfd, "start");
176 syms[0].value = 0;
177 syms[0].flags = BSF_GLOBAL;
178 syms[0].section = sec;
179 syms[0].udata.p = NULL;
182 syms[
[all...]
H A Dppcboot.c302 asymbol *syms;
306 syms = (asymbol *) bfd_alloc (abfd, amt);
307 if (syms == NULL)
311 syms[0].the_bfd = abfd;
312 syms[0].name = mangle_name (abfd, "start");
313 syms[0].value = 0;
314 syms[0].flags = BSF_GLOBAL;
315 syms[0].section = sec;
316 syms[0].udata.p = NULL;
319 syms[
295 asymbol *syms; local
[all...]
/macosx-10.9.5/ruby-104/ruby/win32/
H A Dmkexports.rb37 syms = {}
39 syms["ruby_sysinit_real"] = "ruby_sysinit"
41 syms[internal] = export
45 read_substitution(incdir+"/win32.h", syms, winapis)
46 read_substitution(incdir+"/subst.h", syms, winapis)
47 syms["rb_w32_vsnprintf"] ||= "ruby_vsnprintf"
48 syms["rb_w32_snprintf"] ||= "ruby_snprintf"
49 @syms = syms
52 def read_substitution(header, syms, winapi
[all...]
/macosx-10.9.5/Heimdal-323.92.1/cf/
H A Dw32-check-exported-symbols.pl40 my %syms;
70 $syms{$1} = 1;
86 if (not exists $syms{$f} and not $2) {
90 delete $syms{$f};
94 #while (($k,$v) = each %syms) {
95 for $k (sort keys %syms) {
/macosx-10.9.5/llvmCore-3425.0.33/tools/gold/
H A Dgold-plugin.cpp64 std::vector<ld_plugin_symbol> syms; member in struct:__anon10698::claimed_file
289 cf.syms.reserve(sym_count);
296 cf.syms.push_back(ld_plugin_symbol());
297 ld_plugin_symbol &sym = cf.syms.back();
348 cf.syms.reserve(cf.syms.size());
350 if (!cf.syms.empty()) {
351 if ((*add_symbols)(cf.handle, cf.syms.size(), &cf.syms[0]) != LDPS_OK) {
386 if (I->syms
[all...]
/macosx-10.9.5/Security-55471.14.18/sec/SOSCircle/CloudKeychainProxy/scripts/
H A Dinstall_on_devices4 syms="/tmp/security.syms.tgz"
23 scp -P $sshport $sshopts $roots $syms $srcs root@localhost:/var/mobile/
H A Dsoscopy9 RSYNC_PASSWORD=alpine rsync -av /tmp/security.syms.tgz rsync://root@localhost:$port/root/var/mobile/
H A Dsosbuildroot22 symtar=/tmp/security.syms.tgz
H A Dsosinstallroot25 tar -xzvf /var/mobile/security.syms.tgz -C $symdir
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Daddr2line.c50 static asymbol **syms; /* Symbol table. */ variable
112 symcount = bfd_read_minisymbols (abfd, FALSE, (void *) &syms, &size);
114 symcount = bfd_read_minisymbols (abfd, TRUE /* dynamic */, (void *) &syms, &size);
154 found = bfd_find_nearest_line (abfd, section, syms, pc - vma,
175 found = bfd_find_nearest_line (abfd, section, syms, pc,
310 if (syms != NULL)
312 free (syms);
313 syms = NULL;
H A Drddbg.c46 read_debugging_info (bfd *abfd, asymbol **syms, long symcount) argument
55 if (! read_section_stabs_debugging_info (abfd, syms, symcount, dhandle,
61 if (! read_symbol_stabs_debugging_info (abfd, syms, symcount, dhandle,
78 if (! parse_coff (abfd, syms, symcount, dhandle))
96 read_section_stabs_debugging_info (bfd *abfd, asymbol **syms, long symcount, argument
151 shandle = start_stab (dhandle, abfd, TRUE, syms, symcount);
259 read_symbol_stabs_debugging_info (bfd *abfd, asymbol **syms, long symcount, argument
266 symend = syms + symcount;
267 for (ps = syms; ps < symend; ps++)
280 shandle = start_stab (dhandle, abfd, FALSE, syms, symcoun
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dlocalize-hidden-1.d2 #objdump: --syms
/macosx-10.9.5/CPANInternal-140/Parse-Yapp/lib/Parse/Yapp/
H A DParse.pm34 my($syms,$head,$tail,$token,$term,$nterm,$rules,$precterm,$start,$nullable);
493 exists($$syms{$_[1][0]})
495 $$syms{$_[1][0]} = $_[1][1];
509 exists($$syms{$_[1][0]})
511 $$syms{$_[1][0]} = $_[1][1];
547 "Previously defined line $$syms{$symbol}",
569 "Previously defined line $$syms{$symbol}",
610 "Previously defined line $$syms{$symbol}",
975 "Previously declared line $$syms{$lhs}",$lineno);
981 my($where) = exists($$token{$lhs}) ? $$token{$lhs} : $$syms{
[all...]
/macosx-10.9.5/CPANInternal-140/Parse-Yapp-1.05/lib/Parse/Yapp/
H A DParse.pm34 my($syms,$head,$tail,$token,$term,$nterm,$rules,$precterm,$start,$nullable);
493 exists($$syms{$_[1][0]})
495 $$syms{$_[1][0]} = $_[1][1];
509 exists($$syms{$_[1][0]})
511 $$syms{$_[1][0]} = $_[1][1];
547 "Previously defined line $$syms{$symbol}",
569 "Previously defined line $$syms{$symbol}",
610 "Previously defined line $$syms{$symbol}",
975 "Previously declared line $$syms{$lhs}",$lineno);
981 my($where) = exists($$token{$lhs}) ? $$token{$lhs} : $$syms{
[all...]
/macosx-10.9.5/xnu-2422.115.4/libkern/kxld/
H A Dkxld_symtab.c45 KXLDArray syms; member in struct:kxld_symtab
126 rval = kxld_array_init(&symtab->syms, sizeof(KXLDSym), src->nsyms);
191 sym = kxld_array_get_item(&symtab->syms, i);
218 sym = kxld_array_get_item(&symtab->syms, i);
290 kxld_array_clear(&symtab->syms);
306 kxld_array_deinit(&symtab->syms);
319 return symtab->syms.nitems;
329 return kxld_array_get_item(&symtab->syms, idx);
340 for (i = 0; i < symtab->syms.nitems; ++i) {
341 sym = kxld_array_get_item(&symtab->syms,
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/grammar_fa/
H A Ddacceptor.tcl84 foreach s [set syms [$tmp symbols]] {set sym($s) .}
87 foreach sy $syms {
/macosx-10.9.5/cctools-845/misc/
H A Dchecksyms.c280 struct symbol *syms; local
366 syms = allocate(nsymbols * sizeof(struct symbol));
373 syms[i].name = "";
375 syms[i].name = "bad string index";
377 syms[i].name = symbols[i].n_un.n_strx + strings;
381 syms[i].indr_name = NULL;
383 syms[i].indr_name = "bad string index";
385 syms[i].indr_name = strings + symbols[i].n_value;
387 syms[i].n_value = symbols[i].n_value;
391 syms[
[all...]
/macosx-10.9.5/CPANInternal-140/YAML-Syck/
H A Dsyck_.c166 p->syms = NULL;
182 if ( p->syms == NULL )
184 p->syms = st_init_numtable();
186 id = p->syms->num_entries + 1;
187 st_insert( p->syms, id, (st_data_t)data );
194 if ( p->syms == NULL ) return 0;
195 return st_lookup( p->syms, id, (st_data_t *)data );
233 if ( p->syms != NULL )
235 st_free_table( p->syms );
236 p->syms
[all...]

Completed in 228 milliseconds

12345