| /mirbsd/src/gnu/usr.bin/binutils/bfd/ |
| D | peicode.h | 396 #define SIZEOF_ILF_SYMS (NUM_ILF_SYMS * sizeof (* vars.sym_cache)) 397 #define SIZEOF_ILF_SYM_TABLE (NUM_ILF_SYMS * sizeof (* vars.sym_table)) 398 #define SIZEOF_ILF_NATIVE_SYMS (NUM_ILF_SYMS * sizeof (* vars.native_syms)) 399 #define SIZEOF_ILF_SYM_PTR_TABLE (NUM_ILF_SYMS * sizeof (* vars.sym_ptr_table)) 400 #define SIZEOF_ILF_EXT_SYMS (NUM_ILF_SYMS * sizeof (* vars.esym_table)) 401 #define SIZEOF_ILF_RELOCS (NUM_ILF_RELOCS * sizeof (* vars.reltab)) 402 #define SIZEOF_ILF_INT_RELOCS (NUM_ILF_RELOCS * sizeof (* vars.int_reltab)) 415 sizeof (* vars.bim) \ 435 pe_ILF_make_a_symbol_reloc (pe_ILF_vars * vars, in pe_ILF_make_a_symbol_reloc() argument 444 entry = vars->reltab + vars->relcount; in pe_ILF_make_a_symbol_reloc() [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/t/lib/strict/ |
| D | vars | 1 Check strict vars functionality 21 no strict 'vars' ; 27 # strict vars - no error 28 use strict 'vars' ; 29 use vars qw( $freddy) ; 36 # strict vars - no error 37 use strict 'vars' ; 38 use vars qw( $freddy) ; 48 # strict vars - error 56 # strict vars - error [all …]
|
| /mirbsd/src/usr.sbin/httpd/src/modules/standard/ |
| D | mod_env.c | 106 table *vars; member 117 new->vars = ap_make_table(p, 50); in create_env_dir_config() 147 new_table = ap_copy_table(p, base->vars); in merge_env_dir_configs() 149 arr = ap_table_elts(add->vars); in merge_env_dir_configs() 163 new->vars = new_table; in merge_env_dir_configs() 174 table *vars = sconf->vars; in add_env_module_vars_passed() local 183 ap_table_setn(vars, name_ptr, ap_pstrdup(cmd->pool, env_var)); in add_env_module_vars_passed() 193 table *vars = sconf->vars; in add_env_module_vars_set() local 209 ap_table_setn(vars, name, value); in add_env_module_vars_set() 227 ap_table_unset(sconf->vars, arg); in add_env_module_vars_unset() [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/ext/Opcode/ |
| D | Safe.pm | 168 my($obj, @vars) = @_; 169 $obj->share_from(scalar(caller), \@vars); 175 my $vars = shift; 178 croak("vars not an array ref") unless ref $vars eq 'ARRAY'; 184 foreach $arg (@$vars) { 200 $obj->share_record($pkg, $vars) unless $no_record or !$vars; 206 my $vars = shift; 209 @{$shares}{@$vars} = ($pkg) x @$vars if @$vars;
|
| /mirbsd/src/gnu/usr.bin/perl/lib/ |
| D | vars.t | 22 use vars qw($p @q %r *s &t $X::p); 56 eval q{use vars qw(@X::y !abc); $e = ! *X::y{ARRAY} && 'not '}; 66 eval 'use vars qw($!)'; 72 eval 'use warnings "vars"; use vars qw($!)'; 77 no strict 'vars'; 78 eval 'use vars qw(@x%%)'; 87 use strict 'vars'; 88 eval 'use vars qw(@y%%)';
|
| D | Env.pm | 79 my @vars = grep /^[\$\@]?[A-Za-z_]\w*$/, (@_ ? @_ : keys(%ENV)); 80 return unless @vars; 82 @vars = map { m/^[\$\@]/ ? $_ : '$'.$_ } @vars; 84 eval "package $callpack; use vars qw(" . join(' ', @vars) . ")"; 86 foreach (@vars) {
|
| D | dotsh.pl | 36 local($tmp,$key,$shell,$command,$args,$vars) = ''; 43 $vars = join ("\n", @sh); 56 if (length($vars) > 0) { 57 open (_SH_ENV, "$shell \"$vars && . $command $args && set \" |") || die;
|
| D | dumpvar.pl | 383 my ($key, $val, $m, @vars) = @_; 384 return if @vars && !grep( matchlex($key, $_), @vars ); 446 my ($package,$m,@vars) = @_; 458 next if @vars && !grep( matchvar($key, $_), @vars ); 516 my ($package,@vars) = @_; 526 next if @vars && !grep($key eq $_,@vars);
|
| /mirbsd/src/gnu/usr.bin/perl/os2/OS2/REXX/ |
| D | REXX.xs | 24 static SHVBLOCK * vars; variable 301 if (vars) in needvars() 302 free(vars); in needvars() 304 vars = malloc(nvars * sizeof(SHVBLOCK)); in needvars() 358 SHVBLOCK * var = &vars[i]; in constant() 370 var->shvnext = &vars[i+1]; in constant() 382 vars[n-1].shvnext = NULL; in constant() 383 rc = pRexxVariablePool(vars); in constant() 403 SHVBLOCK * var = &vars[i]; in _fetch() 407 var->shvnext = &vars[i+1]; in _fetch() [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/binutils/ |
| D | ieee.c | 93 struct ieee_var *vars; member 162 struct ieee_vars vars; member 869 info.vars.alloc = 0; in parse_ieee() 870 info.vars.vars = NULL; in parse_ieee() 980 if (info->vars.vars != NULL) in parse_ieee_bb() 981 free (info->vars.vars); in parse_ieee_bb() 982 info->vars.vars = NULL; in parse_ieee_bb() 983 info->vars.alloc = 0; in parse_ieee_bb() 1246 info->global_vars->alloc = info->vars.alloc; in parse_ieee_be() 1247 info->global_vars->vars = ((struct ieee_var *) in parse_ieee_be() [all …]
|
| /mirbsd/src/usr.bin/make/ |
| D | for.c | 95 LIST vars; /* List of variables */ member 149 Lst_Init(&arg->vars); in For_Eval() 165 Lst_AtEnd(&arg->vars, Str_dupi(wrd, endVar)); in For_Eval() 178 for (ln = Lst_First(&arg->vars); ln != NULL; ln = Lst_Adv(ln)) in For_Eval() 242 arg->var = Lst_Last(&arg->vars); in ForExec() 271 Lst_Destroy(&arg->vars, (SimpleProc)free); in For_Run()
|
| /mirbsd/src/bin/mksh/ |
| D | tree.c | 67 t->vars[0] != NULL && t->vars[1] == NULL && in ptree() 73 fptreef(shf, indent, "%S", t->vars[0]); in ptree() 77 if (t->vars) { in ptree() 78 w = (const char **)t->vars; in ptree() 125 if (t->vars != NULL) { in ptree() 127 w = (const char **)t->vars; in ptree() 139 w = (const char **)t1->vars; in ptree() 540 if (t->vars == NULL) in tcopy() 541 r->vars = NULL; in tcopy() 543 tw = (const char **)t->vars; in tcopy() [all …]
|
| D | syn.c | 264 XPtrV args, vars; in get_command() local 271 XPinit(vars, 16); in get_command() 279 XPfree(vars); in get_command() 308 if (iopn == 0 && XPsize(vars) == 0 && in get_command() 314 XPput(vars, yylval.cp); in get_command() 320 if (XPsize(args) == 0 && XPsize(vars) == 1 && in get_command() 326 tcp = XPptrv(vars)[(vars.len = 0)]; in get_command() 349 XPsize(vars) == 0) { in get_command() 356 XPsize(vars) != 0) in get_command() 430 t->vars = wordlist(); in get_command() [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/lib/CGI/t/ |
| D | push.t | 38 my %vars = ( 44 $q->do_push(%vars); 55 $q->do_push(%vars, -type => 'fake' );
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Locale/Maketext/t/ |
| D | 60_super.t | 14 { package Whunk::L10N; use vars qw(@ISA %Lexicon); @ISA = 'Locale::Maketext'; 17 { package Whunk::L10N::en; use vars qw(@ISA %Lexicon); @ISA = 'Whunk::L10N'; 20 { package Whunk::L10N::zh_tw; use vars qw(@ISA %Lexicon); @ISA = 'Whunk::L10N';
|
| /mirbsd/src/gnu/usr.bin/perl/lib/ExtUtils/t/ |
| D | INST_PREFIX.t | 123 while( my($type, $vars) = each %Install_Vars) { 125 skip "VMS must expand macros in INSTALL* vars", scalar @$vars 127 skip '$Config{usevendorprefix} not set', scalar @$vars 130 foreach my $var (@$vars) {
|
| /mirbsd/src/gnu/usr.bin/perl/lib/ExtUtils/ |
| D | MM_AIX.pm | 43 my($vars) = $attribs{DL_VARS} || $self->{DL_VARS} || []; 62 ', "DL_VARS" => ', neatvalue($vars), ');\'
|
| D | MM_OS2.pm | 55 my($vars) = $attribs{DL_VARS} || $self->{DL_VARS} || []; 72 ', "DL_VARS" => ', neatvalue($vars), ');\'
|
| /mirbsd/src/gnu/usr.bin/perl/os2/OS2/REXX/t/ |
| D | rx_tievar.t | 38 tie %all, OS2::REXX, ""; # all REXX vars 42 # show all REXX vars 51 # check all REXX vars
|
| /mirbsd/src/gnu/usr.bin/perl/vms/ |
| D | gen_shrfls.pl | 144 else { $vars{$1}++; } 240 if ($debugging_enabled and $isgcc) { $vars{'colors'}++ } 265 foreach $var (sort (keys %vars,keys %cvars)) { 304 foreach $var (sort keys %vars) {
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Tie/ |
| D | Scalar.t | 12 use vars qw( @ISA ); 19 use vars qw( $flag );
|
| /mirbsd/src/gnu/usr.bin/perl/NetWare/ |
| D | config_sh.PL | 24 my @vars = split(/\t+~\t+/, $line); 25 for (@vars) {
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Test/ |
| D | More.pm | 843 my @vars = (); 844 ($vars[0] = $var) =~ s/\$FOO/ \$got/; 845 ($vars[1] = $var) =~ s/\$FOO/\$expected/; 856 $out .= "$vars[0] = $vals[0]\n"; 857 $out .= "$vars[1] = $vals[1]\n";
|
| /mirbsd/src/gnu/usr.bin/perl/wince/ |
| D | config_sh.PL | 25 my @vars = split(/\t+~\t+/, $line); 26 for (@vars) {
|
| /mirbsd/src/gnu/usr.bin/perl/ext/B/t/ |
| D | b.t | 31 use vars qw($This @That %wibble $moo %moo); 45 use vars qw(%Subs);
|