Searched refs:value (Results 1 - 25 of 239) sorted by relevance

12345678910

/ast/src/cmd/INIT/
H A Dm4.c29 double value = 0; local
31 return isnan(value);
H A Dm5.c29 long double value = 0; local
31 return isnanl(value);
H A Dm6.c31 double value = -0.0; local
33 return !signbit(value);
H A Dm2.c29 double value = 0; local
33 r |= ldexp(value, exp) != 0;
34 r |= frexp(value, &exp) != 0;
H A Dm3.c29 long double value = 0; local
33 r |= ldexpl(value, exp) != 0;
34 r |= frexpl(value, &exp) != 0;
/ast/src/lib/libast/port/
H A Dastmath.c40 long double value = 0; local
42 double value = 0;
49 return ldexpl(value, exp) != 0;
52 return ldexp(value, exp) != 0;
55 return frexpl(value, &exp) != 0;
58 return frexp(value, &exp) != 0;
61 return isnan(value);
64 return isnan(value);
67 return copysign(1.0, value) < 0;
70 return signbit(value);
[all...]
/ast/src/lib/libast/include/
H A Dnamval.h27 * common name-value struct support
36 int value; member in struct:__anon272
/ast/src/lib/libpp/
H A Dpppragma.c31 pppragma(char* directive, char* pass, char* name, char* value, int newline) argument
58 if (value)
62 ppprintf("%s", value);
/ast/src/cmd/dsslib/netflow/
H A Dnetflow.c58 CXV("flow_active_timeout", "number", NETFLOW_flow_active_timeout, "Timeout value (in seconds) for active flow cache entries.")
59 CXV("flow_inactive_timeout", "number", NETFLOW_flow_inactive_timeout, "Timeout value (in seconds) for inactive flow cache entries.")
143 CXV("vendor_43", "number", NETFLOW_vendor_43, "Vendor private value.")
144 CXV("vendor_51", "number", NETFLOW_vendor_51, "Vendor private value.")
145 CXV("vendor_65", "number", NETFLOW_vendor_65, "Vendor private value.")
146 CXV("vendor_66", "number", NETFLOW_vendor_66, "Vendor private value.")
147 CXV("vendor_67", "number", NETFLOW_vendor_67, "Vendor private value.")
148 CXV("vendor_68", "number", NETFLOW_vendor_68, "Vendor private value.")
149 CXV("vendor_69", "number", NETFLOW_vendor_69, "Vendor private value.")
150 CXV("vendor_87", "number", NETFLOW_vendor_87, "Vendor private value
[all...]
/ast/src/lib/libcs/
H A Dcsvar.c38 const char* value; member in struct:__anon341
62 if (!p->value)
63 p->value = ((s = getenv(p->name)) && *s) ? (const char*)s : p->trust;
64 return (char*)p->value;
/ast/src/lib/libexpr/
H A Dexexpr.c41 if (sym && sym->lex == PROCEDURE && sym->value)
44 return excast(ex, sym->value->data.procedure.body, type, NiL, 0);
45 exfreenode(ex, sym->value);
47 sym->value = 0;
/ast/src/cmd/mailx/
H A Dvars.c165 * Copy a variable value into permanent (ie, not collected after each
216 * Set a variable value.
220 varset(register const char* name, register const char* value) argument
227 note(DEBUG, "set name=%s value=%s", name, value);
230 value = 0;
234 value = 0;
260 if (!value)
262 else if (isdigit(*value) || *value
329 set_notyet(struct var* vp, const char* value) argument
342 set_askbcc(struct var* vp, const char* value) argument
355 set_askcc(struct var* vp, const char* value) argument
368 setheaders(struct var* vp, const char* value) argument
402 set_askheaders(struct var* vp, const char* value) argument
412 set_asksub(struct var* vp, const char* value) argument
425 set_coprocess(struct var* vp, const char* value) argument
442 set_crt(struct var* vp, const char* value) argument
453 set_editheaders(struct var* vp, const char* value) argument
463 set_justfrom(struct var* vp, const char* value) argument
477 set_list(struct var* vp, const char* value) argument
491 set_mail(struct var* vp, const char* value) argument
501 set_mailcap(struct var* vp, const char* value) argument
511 set_news(struct var* vp, const char* value) argument
522 set_pwd(struct var* vp, const char* value) argument
537 set_sender(struct var* vp, const char* value) argument
609 set_screen(struct var* vp, const char* value) argument
620 set_sendmail(struct var* vp, const char* value) argument
633 set_shell(struct var* vp, const char* value) argument
644 set_spambody(struct var* vp, const char* value) argument
689 set_toplines(struct var* vp, const char* value) argument
700 set_trace(struct var* vp, const char* value) argument
716 set_user(struct var* vp, const char* value) argument
[all...]
/ast/src/cmd/std/
H A Ddd.c35 " physical io limitations. Options are of the form \aname=value\a"
121 Value_t value; member in struct:__anon223
404 if (!state.silent.value.number)
429 x = r / state.obs.value.number;
431 if (x = r - x * state.obs.value.number)
435 else if ((state.out.remains += x) >= state.obs.value.number)
437 state.out.remains -= state.obs.value.number;
472 state.from.value.string = state.to.value.string = "";
545 op->value
[all...]
/ast/src/cmd/dsslib/bgp/
H A Dbgp.c151 r->value.number = rp->afi ? rp->afi : MRT_AFI_IPV4;
156 r->value.buffer.data = rp->agg_addr.v6;
157 r->value.buffer.size = sizeof(rp->agg_addr.v6);
158 r->value.buffer.elements = 0;
163 r->value.number = rp->agg_addr.v4;
168 r->value.number = (rp->set & BGP_SET_agg_addrv6) ? 0 : rp->agg_addr.v4;
171 r->value.buffer.data = (rp->set & BGP_SET_agg_addrv6) ? rp->agg_addr.v6 : noipv6;
172 r->value.buffer.size = sizeof(rp->agg_addr.v6);
173 r->value.buffer.elements = 0;
178 r->value
[all...]
/ast/src/lib/libcoshell/
H A Dcoexport.c35 coexport(Coshell_t* co, const char* name, const char* value) argument
55 if (!value)
62 if (ex->value)
64 vmfree(co->vm, ex->value);
65 ex->value = 0;
67 if (value)
69 if (!(v = vmstrdup(co->vm, value)))
71 ex->value = v;
/ast/src/lib/libtk/library/
H A Dfocus.tcl132 set code [catch {$w cget -takefocus} value]
133 if {($code == 0) && ($value != "")} {
134 if {$value == 0} {
136 } elseif {$value == 1} {
139 set value [uplevel #0 $value $w]
140 if {$value != ""} {
141 return $value
148 set code [catch {$w cget -state} value]
149 if {($code == 0) && ($value
[all...]
/ast/src/lib/libjcl/
H A Dsym.c29 * add symbol name=value to the current step
30 * value==0 => name==name=value, got it?
31 * no diagnostic if value==0 and name!=name=value
35 jclsym(Jcl_t* jcl, const char* name, const char* value, int flags) argument
46 else if (value)
48 else if (value = (const char*)strchr(name, '='))
49 n = value++ - name;
60 if (!(v = vmnewof(jcl->vs, 0, Jclsym_t, 1, n + strlen(value)
[all...]
H A Duniq.c32 char* value; member in struct:Uniq_s
166 (*disc->errorf)(NiL, disc, 2, "%s: inconsistent size %I*u", u->value, sizeof(size), size);
168 (*disc->errorf)(NiL, disc, 2, "%s: inconsistent recfm %s", u->value, (recfm & JCL_RECFM_V) ? "v" : "f");
170 return u->value;
181 s = u->value = strcopy(u->name = (char*)(u + 1), name) + 1;
185 message((-7, "mark %s => %s", name, u->value));
195 if (!(n = strcmp(((Uniq_t*)a)->name, ((Uniq_t*)b)->name)) && ((Uniq_t*)a)->value)
196 n = strcmp(((Uniq_t*)a)->value, ((Uniq_t*)b)->value);
201 * add name [value] t
205 uniq(const char* name, const char* value, unsigned long flags, Jcldisc_t* disc) argument
251 diff(const char* name, const char* value, Jcldisc_t* disc) argument
[all...]
/ast/src/cmd/ksh93/include/
H A Dshtable.h53 #define sh_lookup(name,value) (sh_locate(name,(Shtable_t*)(value),sizeof(*(value)))->sh_number)
/ast/src/lib/libast/comp/
H A Dsetenv.c45 setenv(const char* name, const char* value, int overwrite)
51 if (!(s = sfprints("%s=%s", name, value)) || !(s = strdup(s)))
/ast/src/cmd/dsslib/html/
H A Dhtml.c42 if (!(t = vmnewof(cx->em, 0, char, arg->value.string.size, 1)))
53 s = arg->value.string.data;
92 ret->value.string.size = t - b;
93 ret->value.string.data = b;
96 ret->value = arg->value;
/ast/src/lib/libast/uwin/
H A Dmathimpl.h56 * Args are the name to define, the decimal floating point value,
57 * four 16-bit chunks of the float value in hex
69 # define vc(name, value, x1,x2,x3,x4, bexp, xval) \
72 # define ic(name, value, bexp, xval) ;
78 # define vc(name, value, x1,x2,x3,x4, bexp, xval) ;
80 # define ic(name, value, bexp, xval) \
81 const static double name = value;
/ast/src/cmd/dsslib/time_t/
H A Dtime_t.c45 time_external(Cx_t* cx, Cxtype_t* type, const char* details, Cxformat_t* format, Cxvalue_t* value, char* buf, size_t size, Cxdisc_t* disc) argument
52 t = value->number;
68 ret->value.number = tmscan(buf, &e, details, &f, NiL, 0);
72 ret->value.number = tmdate(buf, &e, NiL);
159 precise_external(Cx_t* cx, Cxtype_t* type, const char* details, Cxformat_t* format, Cxvalue_t* value, char* buf, size_t size, Cxdisc_t* disc) argument
167 t = value->number;
196 ret->value.number = t;
201 elapsed_external(Cx_t* cx, Cxtype_t* type, const char* details, Cxformat_t* format, Cxvalue_t* value, char* buf, size_t size, Cxdisc_t* disc) argument
206 s = fmtelapsed((unsigned long)value->number, 1000);
219 ret->value
226 tm_hour_external(Cx_t* cx, Cxtype_t* type, const char* details, Cxformat_t* format, Cxvalue_t* value, char* buf, size_t size, Cxdisc_t* disc) argument
267 tm_mon_external(Cx_t* cx, Cxtype_t* type, const char* details, Cxformat_t* format, Cxvalue_t* value, char* buf, size_t size, Cxdisc_t* disc) argument
318 tm_wday_external(Cx_t* cx, Cxtype_t* type, const char* details, Cxformat_t* format, Cxvalue_t* value, char* buf, size_t size, Cxdisc_t* disc) argument
[all...]
/ast/src/lib/libtk/generic/
H A DtkConfig.c34 Tk_Uid value, int valueIsUid, char *widgRec));
57 * A standard Tcl return value. In case of an error,
85 Tk_Uid value; /* Value of option from database. */
136 Tcl_AppendResult(interp, "value for \"", *argv,
169 value = NULL;
171 value = Tk_GetOption(tkwin, specPtr->dbName, specPtr->dbClass);
173 if (value != NULL) {
174 if (DoConfig(interp, tkwin, specPtr, value, 1, widgRec) !=
185 value = specPtr->defValue;
186 if ((value !
84 Tk_Uid value; /* Value of option from database. */ local
[all...]
/ast/src/lib/libdss/
H A Ddssprintf.c91 Value_t* value = (Value_t*)vp; local
104 if (ret.value.number < 1)
105 value->c = 0;
106 else if (ret.value.number > UCHAR_MAX)
107 value->c = UCHAR_MAX;
109 value->c = (unsigned char)ret.value.number;
113 value->f = ret.value.number;
124 if (((ret.value
[all...]

Completed in 762 milliseconds

12345678910