Searched refs:nval (Results 1 - 25 of 62) sorted by relevance

123

/macosx-10.9.5/eap8021x-180/eapolclient.tproj/
H A DKeyValue.c137 size_t nval; local
147 nval = strcspn(start, "=");
148 if (nval == 0) {
159 if (start[nval] == '\0') {
160 elements[count].value = start + nval;
163 start[nval] = '\0';
164 elements[count].value = start + nval + 1;
/macosx-10.9.5/awk-18/src/
H A Dtran.c170 xfree(cp->nval);
180 WARNING("can't happen: inconsistent element count freeing %s", ap->nval);
194 if (strcmp(s, p->nval) == 0) {
201 free(p->nval);
215 p, NN(p->nval), NN(p->sval), p->fval, p->tval) );
221 p->nval = tostring(n);
234 p, p->nval, p->sval, p->fval, p->tval) );
259 nh = hash(cp->nval, nsz);
276 if (strcmp(s, p->nval) == 0)
289 fldno = atoi(vp->nval);
[all...]
H A Dparse.c192 SYNTAX( "%s is a function, not an array", cp->nval );
239 SYNTAX( "`%s' is an array name and a function name", v->nval );
242 if (isarg(v->nval) != -1) {
243 SYNTAX( "`%s' is both function name and argument name", v->nval );
253 dprintf( ("defining func %s (%d args)\n", v->nval, n) );
263 if (strcmp(((Cell *)(p->narg[0]))->nval, s) == 0)
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...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/
H A Dattr.c294 struct berval nval = BER_BVNULL, *cval; local
311 mr, val, &nval, ctx );
316 cval = &nval;
357 if ( nval.bv_val )
358 slap_sl_free( nval.bv_val, ctx );
492 * of desc, the value is normalized and stored in nval; otherwise nval
564 struct berval *nval )
578 return attr_valadd( *a, val, nval, 1 );
583 * of desc, the value is normalized and stored in nval; otherwis
587 attr_normalize_one( AttributeDescription *desc, struct berval *val, struct berval *nval, void *memctx ) argument
621 struct berval nval = BER_BVNULL; local
[all...]
H A Dmr.c488 struct berval nval; local
511 nval.bv_val = mr->smr_oid;
512 nval.bv_len = strlen(mr->smr_oid);
513 if( attr_merge_one( e, ad_matchingRules, &mr->smr_str, &nval ) ) {
525 struct berval nval; local
542 nval.bv_val = mru->smru_oid;
543 nval.bv_len = strlen(mru->smru_oid);
544 if( attr_merge_one( e, ad_matchingRuleUse, &mru->smru_str, &nval ) ) {
H A Dsyntax.c335 struct berval nval; local
355 nval.bv_val = syn->ssyn_oid;
356 nval.bv_len = strlen(syn->ssyn_oid);
358 if( attr_merge_one( e, ad_ldapSyntaxes, &val, &nval ) )
H A Dcr.c476 struct berval nval; local
491 nval.bv_val = cr->scr_oid;
492 nval.bv_len = strlen(cr->scr_oid);
494 if( attr_merge_one( e, ad_ditContentRules, &val, &nval ) )
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;
/macosx-10.9.5/BerkeleyDB-21/db/hash/
H A Dhash.c1493 __ham_overwrite(dbc, nval, flags)
1495 DBT *nval;
1518 if (F_ISSET(nval, DB_DBT_PARTIAL)) {
1540 if (nval->doff > nondup_size)
1542 ((nval->doff - nondup_size) + nval->size);
1543 else if (nval->doff + nval->dlen > nondup_size)
1544 newsize += nval->size -
1545 (nondup_size - nval
[all...]
H A Dhash_dup.c62 * Called from hash_access to add a duplicate key. nval is the new
77 __ham_add_dup(dbc, nval, flags, pgnop)
79 DBT *nval;
99 add_bytes = nval->size +
100 (F_ISSET(nval, DB_DBT_PARTIAL) ? nval->doff : 0);
133 NULL, nval, flags, NULL));
162 if ((ret = __ham_make_dup(env, nval,
173 nval, &tmp_val.doff, &cmp, flags);
181 hcp->dup_len = nval
[all...]
/macosx-10.9.5/dtrace-118.1/cmd/
H A Ddtrace_1.c1504 dtrace_optval_t nval; local
1510 (void) dtrace_getopt(g_dtp, rates[i].optname, &nval);
1512 if (nval == DTRACEOPT_UNSET || nval == 0)
1515 if (rates[i].val == nval)
1518 dir = nval > rates[i].val ? "reduced" : "increased";
1520 if (nval <= NANOSEC && (NANOSEC % nval) == 0) {
1522 (long long)NANOSEC / (long long)nval);
1526 if ((nval
1614 dtrace_optval_t nval; local
[all...]
/macosx-10.9.5/dtrace-118.1/libdtrace/
H A Ddt_handle.c412 uint64_t nval = *((uint64_t *)naddr); local
415 if (nval == oval)
428 (void) snprintf(s, size, "%llu %s%s%s\n", nval - oval,
429 _dt_droptab[i].dtdrt_str, (nval - oval > 1) ? "s" : "",
434 drop.dtdda_total = nval;
435 drop.dtdda_drops = nval - oval;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/test/
H A Dtestlock.c47 int nval; member in struct:__anon6165
117 buff[put.nput] = put.nval;
119 put.nval++;
238 put.nput = put.nval = 0;
/macosx-10.9.5/apr-30/apr/apr/test/
H A Dtestlock.c47 int nval; member in struct:__anon6285
117 buff[put.nput] = put.nval;
119 put.nval++;
238 put.nput = put.nval = 0;
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/include/
H A Dpath.h30 #include <nval.h>
H A Dshell.h35 # include <nval.h>
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-sql/
H A Doperational.c40 struct berval val, nval; local
50 &val, &nval, NULL );
64 a->a_nvals[ 0 ] = nval;
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/comp_match/
H A Dinit.c737 comp_component_encoder ( void* mem_op, ComponentSyntaxInfo* csi , struct berval* nval ) {
759 nval->bv_val = CompAlloc( mem_op, bv.bv_len );
761 nval->bv_val = malloc( size );
762 memcpy( nval->bv_val, bv.bv_val, bv.bv_len );
763 nval->bv_len = bv.bv_len;
784 nval->bv_val = CompAlloc ( mem_op, size );
786 nval->bv_val = malloc( size );
787 nval->bv_len = size;
789 BufCopy( nval->bv_val, b, size );
/macosx-10.9.5/bash-92/bash-3.2/
H A Dprint_cmd.c380 char *nval; local
387 nval = value;
389 nval = sh_single_quote (value);
391 nval = ansic_quote (value, 0, (int *)0);
393 nval = value;
396 fprintf (stderr, "%s=(%s)\n", name, nval);
398 fprintf (stderr, "%s=%s\n", name, nval);
400 if (nval != value)
401 FREE (nval);
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.9.5/dcerpc-58/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.9.5/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);

Completed in 150 milliseconds

123