Searched defs:value (Results 1 - 25 of 126) sorted by relevance

123456

/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 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;
H A Dm6.c31 double value = -0.0; local
33 return !signbit(value);
/ast/src/lib/libast/include/
H A Dnamval.h27 * common name-value struct support
36 int value; member in struct:__anon272
/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/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;
H A Dcolib.h72 char* value; member in struct:Coexport_s
118 char* type; /* CO_ENV_TYPE value */
/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/lib/libast/misc/
H A Dstack.c97 * get value on top of stack
108 * push value on to stack
112 stackpush(register STACK stack, void* value) argument
133 stack->position.block->stack[stack->position.index] = value;
138 * pop value off stack
/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/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 Dlib.c53 * return value for &name. variable
54 * if value!=0 then value is set
61 lookup(register Jcl_t* jcl, const char* name, const char* value, int flags, int set) argument
71 if (!value)
88 v->value = stash(jcl, jcl->vm, value, 0);
91 if (!value)
180 (*jcl->disc->errorf)(NiL, jcl->disc, 1, "%%%%%s operand value or %s environment value expecte
[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/lib/libast/hash/
H A Dhashlook.c37 hashlook(register Hash_table_t* tab, const char* name, long flags, const char* value) argument
52 if (flags & HASH_HASHED) n = *((unsigned int*)value);
68 if (!c) return((flags & HASH_VALUE) ? b->value : (char*)b);
94 else if (flags & HASH_HASHED) n = *((unsigned int*)value);
166 value = 0;
172 if (tab->root->local->free && b->value)
174 (*tab->root->local->free)(b->value);
175 b->value = 0;
179 value = b->value;
[all...]
/ast/src/lib/libdss/
H A Ddssmisc.c116 * return variable value in value
122 dssget(Dssrecord_t* record, Dssvariable_t* variable, Dsstype_t* type, const char* details, Dssvalue_t* value) argument
128 *value = ret.value;
/ast/src/cmd/dsslib/lookup/
H A Dlookup.c24 "[+DESCRIPTION?The lookup checks if the \avariable\a operand value "
25 "appears in the \afile\a operand, where \afile\a contains one value per "
38 char value[1]; member in struct:Value_s
72 state->dictdisc.key = offsetof(Value_t, value);
123 strcpy(v->value, s);
142 return !!dtmatch(state->dict, val.value.string.data);
158 "look up variable value in file",
/ast/src/cmd/tests/aso/
H A Dtthread.c37 int value; member in struct:_obj_s
95 obj->value = i;
/ast/src/cmd/cs/
H A Dnam.c30 * <op> <mount> <path> [pwd=<pwd>] [<name>=<value>] ...
82 char* value; local
121 while (tokscan(msg, &msg, " %s=%s ", &name, &value) == 2)
125 chdir(value);
/ast/src/lib/libtksh/tcl/
H A DtclLink.c38 } lastValue; /* Last known value of C variable; used to
77 * The return value is TCL_OK if everything went well or TCL_ERROR
81 * The value at *addr is linked to the Tcl variable "varName",
181 * The Tcl variable "varName" is updated from its C value,
241 char *value, **pp;
303 * convert the Tcl value to C if possible. If the variable isn't
305 * value and return an error. Another tricky thing: we have to save
315 value = Tcl_GetVar(interp, linkPtr->varName, TCL_GLOBAL_ONLY);
316 if (value == NULL) {
327 if (Tcl_GetInt(interp, value,
237 char *value, **pp; local
[all...]
/ast/src/lib/libcmd/
H A Dfds.c64 int value; member in struct:NV_s
322 for (type = 0; family[type].name && family[type].value != addr.sin_family; type++);
H A Dgetconf.c33 "[+DESCRIPTION?\bgetconf\b displays the system configuration value for"
35 " the value is determined relative to \apath\a or the current"
37 " \bgetconf\b attempts to change the process local value to \avalue\a."
43 "[+?The current value for \aname\a is written to the standard output. If"
46 " determining its value, then a diagnostic written to the standard error"
70 " [+XX?Constant value.]"
104 "\n[ name [ path [ value ] ] ... ]\n"
111 "environment variable. The \b_AST_FEATURES\b value is a "
115 "\avalue\a is the system configuration value. \b_AST_FEATURES\b "
138 register char* value; local
[all...]
/ast/src/lib/libmam/
H A Dmam.c384 * if value!=0 then var value is set
388 mamvar(register struct proc* pp, const char* name, const char* value) argument
397 if (value) v->value = (char*)value;
/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...]

Completed in 289 milliseconds

123456