HomeSort by relevance Sort by last modified time
    Searched refs:value (Results 1 - 25 of 2894) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/preprocessor/
tst.precondi.d 38 #define value 5
44 /value == 5/
46 printf("The value is %d\n", value);
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/type/
DoubleHolder.java 45 public double value; field in class:DoubleHolder
49 public DoubleHolder(double value) {
50 this.value = value;
IntHolder.java 45 public int value; field in class:IntHolder
49 public IntHolder(int value) {
50 this.value = value;
  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
modf.c 31 * modf(value, iptr) returns the signed fractional part of value
39 modf(value, iptr)
40 double value;
45 if ((absvalue = (value >= 0.0) ? value : -value) >= MAXPOWTWO)
46 *iptr = value; /* it must be an integer */
52 if (value < 0.0)
55 return (value - *iptr); /* signed fractional part *
    [all...]
ldexp.c 34 * double ldexp (value, exp)
35 * double value;
38 * Ldexp returns value * 2**exp, if that result is in range.
40 * it returns a value of appropriate sign and largest single-
45 * other than ERANGE first (zero is a reasonable value to use).
56 ldexp(value, exp)
57 register double value;
62 if (exp == 0 || value == 0.0) /* nothing to do for zero */
63 return (value);
68 frexp(value, &old_exp)
    [all...]
  /onnv/onnv-gate/usr/src/tools/cscope-fast/
mygetenv.c 33 /* return the non-null environment value or the default argument */
41 char *value; local
43 value = getenv(variable);
44 if (value == (char *)NULL || *value == '\0') {
47 return (value);
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/encoding/
CRC16.java 42 value = 0;
52 if ((value & 0x8000) != 0)
53 value = (value << 1) + b ^ 0x1021;
55 value = (value << 1) + b;
58 value = value & 0xffff;
63 value = 0;
66 public int value; field in class:CRC16
    [all...]
  /onnv/onnv-gate/usr/src/lib/libast/common/port/
astmath.c 40 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...]
  /onnv/onnv-gate/usr/src/lib/libxcurses/src/libc/xcurses/
has.c 49 bool value; local
55 value = 0 < max_colors;
57 return __m_return_int("has_colors", value);
63 bool value; local
69 value = ((insert_character != (char *) 0 || parm_ich != (char *) 0)
73 return __m_return_int("has_ic", value);
79 bool value; local
85 value = ((insert_line != (char *) 0 || parm_insert_line != (char *) 0)
89 return __m_return_int("has_il", value);
95 bool value; local
    [all...]
isendwin.c 56 int value; local
62 value = __m_screen != (SCREEN *) 0 && (__m_screen->_flags & S_ENDWIN);
64 return __m_return_int("isendwin", value);
  /onnv/onnv-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
has.c 54 bool value; local
56 value = 0 < max_colors;
58 return (value);
66 bool value; local
68 value = ((insert_character != NULL || parm_ich != NULL) &&
72 return (value);
80 bool value; local
82 value = ((insert_line != NULL || parm_insert_line != NULL) &&
86 return (value);
94 bool value; local
    [all...]
isendwin.c 59 int value; local
61 value = __m_screen != NULL && (__m_screen->_flags & S_ENDWIN);
63 return ((bool) value);
getch.c 54 int value; local
56 value = wgetch(stdscr);
58 return (value);
66 int value; local
71 value = wgetch(stdscr);
73 return (value);
81 int value; local
86 value = wgetch(w);
88 return (value);
tigetstr.c 56 char *value = (char *) -1; local
61 value = cur_term->_str[i];
62 if (value == NULL)
63 value = (char *)-1;
68 return (value);
  /onnv/onnv-gate/usr/src/uts/intel/asm/
byteorder.h 47 extern __inline__ uint16_t htons(uint16_t value)
50 __asm__("xchgb %h0, %b0" : "+Q" (value));
52 __asm__("xchgb %h0, %b0" : "+q" (value));
54 return (value);
57 extern __inline__ uint16_t ntohs(uint16_t value)
60 __asm__("xchgb %h0, %b0" : "+Q" (value));
62 __asm__("xchgb %h0, %b0" : "+q" (value));
64 return (value);
67 extern __inline__ uint32_t htonl(uint32_t value)
69 __asm__("bswap %0" : "+r" (value));
    [all...]
mmu.h 43 uint64_t value; local
47 : "=r" (value));
48 return (value);
51 extern __inline__ void setcr3(ulong_t value)
56 : "r" (value));
68 uint32_t value; local
72 : "=r" (value));
73 return (value);
76 extern __inline__ void setcr3(ulong_t value)
81 : "r" (value));
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/types/
tst.charconstants.d 55 printf("decimal value = %d; character value = %c\n", char_1, char_1);
56 printf("decimal value = %d; character value = %c\n", char_2, char_2);
57 printf("decimal value = %d; character value = %c\n", char_3, char_3);
58 printf("decimal value = %d; character value = %c\n", char_4, char_4);
59 printf("decimal value = %d; character value = %c\n", char_5, char_5)
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/asn1/
a_utf8.c 67 * to the string and the length of the string. It sets 'value' to the value of
79 unsigned long value; local
84 /* Check syntax and work out the encoded value (if correct) */
86 value = *p++ & 0x7f;
91 value = (*p++ & 0x1f) << 6;
92 value |= *p++ & 0x3f;
93 if(value < 0x80) return -4;
99 value = (*p++ & 0xf) << 12;
100 value |= (*p++ & 0x3f) << 6
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mailx/hdr/
usg.local.h 62 #define PG (value("PAGER") ? value("PAGER") : \
63 (value("bsdcompat") ? "more" : "pg -e"))
66 #define LS (value("LISTER") ? value("LISTER") : "ls")
78 # define MASTER (value("bsdcompat") ? libpath("Mail.rc") : \
81 # define MASTER (value("bsdcompat") ? "/etc/mail/Mail.rc" : \
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/data/qualifier/
QualifierString.java 36 public Object parseValue(String value) {
37 return value.trim();
40 public String formatValue(String value) {
41 if (value == null) {
45 return value.trim();
QualifierFQDN.java 41 public Object parseValue(String value) {
42 if (value == null) {
46 value = value.trim();
49 Matcher matcher = pattern.matcher(value);
52 return value;
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
goto_xs.t 28 # should always return a value, even on platforms which don't define the
38 $value = Fcntl::constant($VALID);
39 print((!defined $value)
49 print(($ret == $value) ? "ok 2\n" : "not ok 2\n# ($ret != $value)\n");
56 print(($ret == $value) ? "ok 3\n" : "not ok 3\n# ($ret != $value)\n");
60 print(($ret == $value) ? "ok 4\n" : "not ok 4\n# ($ret != $value)\n");
62 print(($ret == $value) ? "ok 5\n" : "not ok 5\n# ($ret != $value)\n")
    [all...]
  /onnv/onnv-gate/usr/src/uts/intel/zfs/
spa_boot.c 34 char *value; local
37 DDI_PROP_DONTPASS, propname, &value) != DDI_SUCCESS)
39 return (value);
43 spa_free_bootprop(char *value)
45 ddi_prop_free(value);
  /onnv/onnv-gate/usr/src/cmd/fmli/sys/
chgepenv.c 37 chgepenv(name, value)
38 char *name, *value;
46 return chgenv(strcat(strcpy(dirpath, Home), "/pref/.environ"), name, value);
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
lltostr.c 36 * lltostr(value, ptr)
37 * long long value;
41 * into which the decimal representation of "value" is to be
42 * placed as a string. Lltostr converts "value" to decimal and
47 * Lltostr's behavior is undefined if "value" is negative. A single
48 * zero digit is produced if "value" is zero.
59 lltostr(longlong_t value, char *ptr)
64 if (!(0xffffffff00000000ULL & value)) {
65 ulong_t t, val = (ulong_t)value;
76 *--ptr = (char)('0' + value - 10 * (t = value / 10))
    [all...]

Completed in 930 milliseconds

1 2 3 4 5 6 7 8 91011>>