Searched refs:nval (Results 26 - 50 of 73) sorted by relevance

123

/macosx-10.10.1/awk-20/src/
H A Dawkgram.y451 SYNTAX("%s is an array, not a function", p->nval);
453 SYNTAX("you can't define function %s more than once", p->nval);
454 curfname = p->nval;
480 char *s = cp->nval;
482 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
H A Dawk.h82 char *nval; /* name, for variables only */ member in struct:Cell
H A Drun.c235 s = fcn->nval;
257 i, NN(y->nval), y->fval, isarr(y) ? "(array)" : NN(y->sval), y->tval) );
259 FATAL("can't use function %s as argument in %s", y->nval, s);
330 y->nval = x->nval; /* BUG? */
346 n+1, fp->fcncell->nval);
472 FATAL("out of memory for %s[%s...]", x->nval, buf);
479 dprintf( ("making %s into an array\n", NN(x->nval)) );
519 FATAL("out of memory deleting %s[%s...]", x->nval, buf);
543 dprintf( ("making %s into an array\n", ap->nval) );
[all...]
H A Dytab.c3690 SYNTAX("%s is an array, not a function", p->nval);
3692 SYNTAX("you can't define function %s more than once", p->nval);
3693 curfname = p->nval;
3719 char *s = cp->nval;
3721 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
H A Dlib.c67 fldtab[0]->nval = tostring("0");
82 fldtab[i]->nval = tostring(temp);
354 printf("field %d (%s): |%s|\n", j, p->nval, p->sval);
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Darrayfunc.c319 char *w, *val, *nval; local
344 nval = make_variable_value (var, w, flags);
346 (*var->assign_func) (var, nval, last_ind);
348 array_insert (a, last_ind, nval);
349 FREE (nval);
/macosx-10.10.1/dcerpc-61/dcerpc/idl_compiler/
H A Dastp_exp.c270 long nval = ASTP_expr_integer_value(location, op1->exp.expression.oper2); local
276 && (nval == 1 || nval == 3 || nval == 7) &&
278 == nval)
/macosx-10.10.1/tcsh-65/tcsh/
H A Dsh.time.c153 int nval = 0; local
158 nval = 4;
160 nval = getn(cp);
162 if (setpriority(PRIO_PROCESS, 0, nval) == -1 && errno)
165 (void) nice(nval);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dentry.c675 int i, nat = 0, nval = 0; local
692 nval++;
697 nval++; /* empty berval at end */
700 nval++;
705 nval++;
711 len += entry_lenlen(nval);
714 *pnvals = nval;
H A Dslapacl.c44 struct berval *nval )
50 rc = access_allowed_mask( op, e, desc, nval, ACL_AUTH, NULL, &mask );
H A Dvalue.c225 struct berval nval = BER_BVNULL; local
240 mr, val, &nval, ctx );
252 &vals[i], nval.bv_val == NULL ? val : &nval, &text );
255 slap_sl_free( nval.bv_val, ctx );
260 slap_sl_free( nval.bv_val, ctx );
H A Doc.c884 struct berval nval; local
893 nval = oc->soc_cname;
897 (long) val.bv_len, val.bv_val, nval.bv_val );
900 if( attr_merge_one( e, ad_objectClasses, &val, &nval ) ) {
/macosx-10.10.1/dtrace-147/cmd/
H A Ddtrace_1.c1357 dtrace_optval_t nval; local
1363 (void) dtrace_getopt(g_dtp, rates[i].optname, &nval);
1365 if (nval == DTRACEOPT_UNSET || nval == 0)
1368 if (rates[i].val == nval)
1371 dir = nval > rates[i].val ? "reduced" : "increased";
1373 if (nval <= NANOSEC && (NANOSEC % nval) == 0) {
1375 (long long)NANOSEC / (long long)nval);
1379 if ((nval
[all...]
/macosx-10.10.1/ksh-23/ksh/src/cmd/ksh93/include/
H A Dshell.h37 # include <nval.h>
/macosx-10.10.1/libxml2-26/libxml2/
H A DSAX2.c1102 xmlChar *nval; local
1141 nval = xmlStrdup(fullname);
1142 value = (const xmlChar *) nval;
1153 nval = xmlValidCtxtNormalizeAttributeValue(&ctxt->vctxt,
1159 if (nval != NULL)
1160 value = nval;
1162 nval = NULL;
1217 if (nval != NULL)
1218 xmlFree(nval);
1280 if (nval !
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A DSAX2.c1072 xmlChar *nval; local
1111 nval = xmlStrdup(fullname);
1112 value = (const xmlChar *) nval;
1123 nval = xmlValidCtxtNormalizeAttributeValue(&ctxt->vctxt,
1129 if (nval != NULL)
1130 value = nval;
1132 nval = NULL;
1187 if (nval != NULL)
1188 xmlFree(nval);
1250 if (nval !
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/ldap/
H A Dldapx.tcl498 if {! [regexp {^([^=]+)=([^,]+)$} $newrdn m nattr nval]} then {
519 if {[lsearch -exact [$self get $nattr] $nval] == -1} then {
520 $self add1 $nattr $nval
703 if {! [regexp {^([^=]+)=([^,]+),(.*)} $newdn m nattr nval nsup]} then {
707 set nrdn "$nattr=$nval"
743 foreach {a v} [list $oattr $oval $nattr $nval] {
/macosx-10.10.1/Security-57031.1.35/Security/utilities/src/
H A DSecDb.c1060 double nval; local
1061 convertOk = CFNumberGetValue(value, kCFNumberDoubleType, &nval);
1062 result = SecDbBindDouble(stmt, param, nval, error);
1064 int nval; local
1065 convertOk = CFNumberGetValue(value, kCFNumberSInt32Type, &nval);
1067 result = SecDbBindInt(stmt, param, nval, error);
/macosx-10.10.1/Security-57031.1.35/Security/utilities/utilities/
H A DSecDb.c1060 double nval; local
1061 convertOk = CFNumberGetValue(value, kCFNumberDoubleType, &nval);
1062 result = SecDbBindDouble(stmt, param, nval, error);
1064 int nval; local
1065 convertOk = CFNumberGetValue(value, kCFNumberSInt32Type, &nval);
1067 result = SecDbBindInt(stmt, param, nval, error);
/macosx-10.10.1/swig-12/Source/Swig/
H A Dnaming.c1199 String *nval = Swig_get_lattr(n, lattr); local
1203 Printf(stdout, "mi %d %s re %d not %d \n", i, nval, notmatch, rxsmatch);
1209 if (nval) {
1211 match = rxsmatch ? Swig_name_rxsmatch_value(kwval, nval)
1212 : Swig_name_match_value(kwval, nval);
1214 Printf(stdout, "val %s %s %d %d \n", nval, kwval, match, ilen);
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Dsimple.c90 bfd_vma nval ATTRIBUTE_UNUSED)
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/
H A Dbfdlink.h479 bfd *nbfd, asection *nsec, bfd_vma nval);
/macosx-10.10.1/ksh-23/ksh/src/cmd/ksh93/bltins/
H A Dgetopts.c33 #include <nval.h>
/macosx-10.10.1/text_cmds-88/sed/
H A Dcompile.c559 unsigned long nval; local
591 nval = strtol(p, &p, 10);
592 if (errno == ERANGE || nval > INT_MAX)
595 s->n = nval;
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dbind.c1620 int nval = 100; local
1624 nval = atoi (value);
1625 if (nval < 0)
1626 nval = 0;
1628 rl_completion_query_items = nval;

Completed in 289 milliseconds

123