Home
last modified time | relevance | path

Searched refs:svalue (Results 1 – 20 of 20) sorted by relevance

/illumos-gate/usr/src/lib/krb5/kadm5/
H A Dalt_prof.c420 char *svalue; local
744 sp = svalue;
794 svalue = NULL;
811 if (svalue)
820 svalue = NULL;
887 svalue = NULL;
902 if (svalue)
1140 char *svalue; local
1257 sp = svalue;
1294 svalue = NULL;
[all …]
/illumos-gate/usr/src/cmd/sgs/demo_rdb/common/
H A Dsyms.c150 ulong_t svalue; in addr_map_sym() local
159 svalue = (ulong_t)sym.st_value; in addr_map_sym()
161 if (svalue <= addr) { in addr_map_sym()
169 (svalue >= (ulong_t)lsymr->st_value))) { in addr_map_sym()
170 if (lsymr && (lsymr->st_value == svalue)) in addr_map_sym()
177 (svalue >= (ulong_t)symr->st_value)) { in addr_map_sym()
178 if (symr && (symr->st_value == svalue)) in addr_map_sym()
/illumos-gate/usr/src/cmd/vi/port/
H A Dprintf.c295 int svalue; local
334 svalue = value;
335 while (svalue > 0) {
336 *--bp = (svalue % 10) + '0';
337 svalue /= 10;
H A Dex_unix.c321 execlp((char *)svalue(vi_SHELL), (char *)svalue(vi_SHELL),
324 svalue(vi_SHELL));
468 execlp(EXRECOVER, "exrecover", "-x", svalue(vi_DIRECTORY), file, (char *) 0); in recover()
470 execlp(EXRECOVER, "exrecover", svalue(vi_DIRECTORY), file, (char *) 0); in recover()
H A Dex_vops3.c314 isa(svalue(vi_PARAGRAPHS)) || isa(svalue(vi_SECTIONS))); in endPS()
592 isa(svalue(vi_SECTIONS))) { in lbrack()
H A Dex_temp.c75 if (strlen(svalue(vi_DIRECTORY)) > (PATH_MAX -13)) in fileinit()
77 CP(tfname, svalue(vi_DIRECTORY)); in fileinit()
H A Dex_io.c302 execlp((char *)svalue(vi_SHELL), "sh", "-c", genbuf, (char *)0); in glob()
304 filioerr(svalue(vi_SHELL)); in glob()
H A Dex.h148 #define svalue(a) options[a].osvalue macro
H A Dex_cmdsub.c671 CP(tagfbuf, svalue(vi_TAGS));
/illumos-gate/usr/src/lib/libnisdb/yptol/
H A Ddit_access_utils.c1252 sfree(svalue); in singleWriteToDIT()
1296 sfree(svalue); in singleWriteToDIT()
1320 sfree(svalue); in singleWriteToDIT()
1359 sfree(svalue); in singleWriteToDIT()
1406 svalue, t->dbId, map); in singleWriteToDIT()
1418 sfree(svalue); in singleWriteToDIT()
1433 sfree(svalue); in singleWriteToDIT()
1927 if (svalue && in addNISObject()
1934 svalue = NULL; in addNISObject()
1949 svalue = value + 1; in addNISObject()
[all …]
/illumos-gate/usr/src/cmd/power/
H A Dhandlers.c680 longlong_t svalue = 0, factor = 1; in get_scaled_value() local
684 svalue = strtol(str, &sp, 0); in get_scaled_value()
698 svalue *= factor; in get_scaled_value()
699 if (svalue < INT_MIN || svalue > INT_MAX) in get_scaled_value()
704 mesg(MDEBUG, "got scaled value %d\n", (int)svalue); in get_scaled_value()
705 return ((int)svalue); in get_scaled_value()
/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dgprof.c138 nlp->svalue = nlp->value / sizeof (UNIT); in alignentries()
140 bucket_of_entry = (nlp->svalue - lowpc) / scale; in alignentries()
141 bucket_of_code = (nlp->svalue + UNITS_TO_CODE - lowpc) / scale; in alignentries()
146 "to 0x%llx\n", nlp->svalue, in alignentries()
147 nlp->svalue + UNITS_TO_CODE); in alignentries()
225 svalue0 = nl[j].svalue; in asgnsamples()
226 svalue1 = nl[j+1].svalue; in asgnsamples()
1942 (void) printf(" %lld ", timesortnlp[i]->svalue); in main()
H A Dgprof.h230 pctype svalue; /* entry point aligned to histograms */ member
/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dldebug.c328 *name = svalue(kvalue); /* it is its own name */ in kname()
442 *name = svalue(&p->k[b]); in getobjname()
H A Dlobject.c225 return svalue(L->top - 1); in luaO_pushvfstring()
H A Dlgc.c439 ((weakkey = strchr(svalue(mode), 'k')), in traversetable()
440 (weakvalue = strchr(svalue(mode), 'v')), in traversetable()
830 ? svalue(L->top - 1) in GCTM()
H A Dlvm.c38 if (ttisstring(obj) && luaO_str2d(svalue(obj), tsvalue(obj)->len, &num)) { in luaV_tonumber()
324 memcpy(buffer+tl, svalue(top-i), l * sizeof(char)); in luaV_concat()
H A Dlobject.h424 #define svalue(o) getstr(rawtsvalue(o)) macro
H A Dlapi.c402 return svalue(o); in lua_tolstring()
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipqosconf/
H A Dipqosconf.c4314 char *svalue; in read_int_array() local
4371 svalue = strchr(entry, ':'); in read_int_array()
4372 if (svalue == NULL) { /* missing value string */ in read_int_array()
4376 *svalue++ = '\0'; in read_int_array()
4387 SKIPWS(svalue); in read_int_array()
4388 tmp = svalue; in read_int_array()
4401 res = read_enum_value(NULL, svalue, enum_nvs, in read_int_array()
4406 value = (int)strtol(svalue, &end, 10); in read_int_array()
4408 if ((svalue == end) || (*end != '\0')) { in read_int_array()