HomeSort by relevance Sort by last modified time
    Searched defs:vars (Results 1 - 7 of 7) sorted by null

  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
vars.pm 1 package vars; package
8 use strict qw(vars subs);
22 warnings::warn("No need to declare built-in vars");
23 } elsif (($^H &= strict::bits('vars'))) {
25 Carp::croak("'$_' is not a valid variable name under strict vars");
51 vars - Perl pragma to predeclare global variable names (obsolete)
55 use vars qw($frob @mung %seen);
67 Unlike pragmas that affect the C<$^H> hints variable, the C<use vars> and
70 declarations with C<no vars> or C<no subs>.
74 package lexicals defined using C<my()>. While the B<vars> pragm
    [all...]
overload.t 500 sub vars { my $p = shift; tie($_, $p), $_->nop foreach @_; } subroutine
560 symbolic->vars($a, $b);
621 sub vars { my $p = shift; tie($_, $p), $_->nop foreach @_; } subroutine
681 symbolic1->vars($a, $b);
  /onnv/onnv-gate/usr/src/lib/libgen/common/
reg_compile.c 77 vars_storage *vars; local
81 vars = pthread_getspecific(*keyp);
82 if (vars == NULL) {
83 vars = calloc(1, sizeof (vars_storage));
84 if (thr_setspecific(*keyp, vars) != 0) {
85 if (vars)
86 (void) free(vars);
87 vars = NULL;
90 return (vars);
99 vars_storage *vars = _get_vars_storage(&key) local
110 vars_storage *vars = _get_vars_storage(&key); local
121 vars_storage *vars = _get_vars_storage(&key); local
    [all...]
reg_step.c 75 vars_storage *vars; local
79 vars = pthread_getspecific(*keyp);
80 if (vars == NULL) {
81 vars = calloc(1, sizeof (vars_storage));
82 if (thr_setspecific(*keyp, vars) != 0) {
83 if (vars)
84 (void) free(vars);
85 vars = NULL;
88 return (vars);
97 vars_storage *vars = _get_vars_storage(&key) local
108 vars_storage *vars = _get_vars_storage(&key); local
119 vars_storage *vars = _get_vars_storage(&key); local
130 vars_storage *vars = _get_vars_storage(&key); local
141 vars_storage *vars = _get_vars_storage(&key); local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libcurses/screen/
tparm.c 254 long vars[26]; local
546 vars[*cp++ - 'a'] = pop(&stk);
565 push(&stk, vars[*cp++ - 'a']);
  /onnv/onnv-gate/usr/src/cmd/picl/plugins/sun4v/lib/snmp/
pdu.h 66 pdu_varlist_t *vars; member in struct:snmp_pdu
  /onnv/onnv-gate/usr/src/lib/libshell/common/sh/
streval.c 65 struct vars /* vars stacked per invocation */ struct
115 static int _seterror(struct vars *vp,const char *msg)
418 static int gettok(register struct vars *vp)
480 static int expr(register struct vars *vp,register int precedence)
799 struct vars cur;

Completed in 480 milliseconds