Searched refs:val (Results 26 - 50 of 3447) sorted by relevance

1234567891011>>

/macosx-10.10/dtrace-147/test/tst/common/aggs/
H A Dtst.llquantnegorder.d32 val = (-a * b) + a;
37 incr = val % b;
38 val += a;
42 /val == 0/
44 val += a;
H A Dtst.quantzero.d36 val = (-a * b) + a;
41 incr = val % b;
42 val += a;
46 /val == 0/
48 val += a;
/macosx-10.10/bind9-45.101/bind9/lib/isc/
H A Dinet_aton.c94 unsigned long val; local
110 val = 0; base = 10; digit = 0;
130 val = (val * base) + (c - '0');
134 val = (val << 4) |
148 if (pp >= parts + 3 || val > 0xffU)
150 *pp++ = (isc_uint8_t)val;
175 if (val > 0xffffffU)
177 val |
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/lwres/
H A Dlwinetaton.c98 unsigned long val; local
116 val = 0;
139 val = (val * base) + (c - '0');
143 val = (val << 4) |
157 if (pp >= parts + 3 || val > 0xffU)
159 *pp++ = (lwres_uint8_t)val;
184 if (val > 0xffffffU)
186 val |
[all...]
/macosx-10.10/ntp-92/lib/isc/
H A Dinet_aton.c94 unsigned long val; local
110 val = 0; base = 10; digit = 0;
130 val = (val * base) + (c - '0');
134 val = (val << 4) |
148 if (pp >= parts + 3 || val > 0xffU)
150 *pp++ = (isc_uint8_t)val;
175 if (val > 0xffffffU)
177 val |
[all...]
/macosx-10.10/procmail-14/procmail/src/
H A Dacommon.c40 char*ultoan(val,dest)unsigned long val;char*dest; /* convert to a number */
43 { i=val&0x3f; /* collating sequence dependency! */
47 while(val>>=6);
52 char*ultstr(minwidth,val,dest)int minwidth;unsigned long val;char*dest;
54 j=val;i=0; /* a beauty, isn't it :-) */
60 do *--dest='0'+val%10; /* display value backwards */
61 while(val/=10);
/macosx-10.10/bind9-45.101/bind9/lib/isc/x86_32/include/isc/
H A Datomic.h27 * This routine atomically increments the value stored in 'p' by 'val', and
31 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
32 isc_int32_t prev = val;
48 isc_atomic_xaddq(isc_int64_t *p, isc_int64_t val) { argument
49 isc_int64_t prev = val;
65 * This routine atomically stores the value 'val' in 'p'.
68 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
80 : "r"(val), "m"(*p)
85 * This routine atomically replaces the value in 'p' with 'val', if the
90 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) { argument
114 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) argument
136 isc_atomic_store(isc_int32_t *p, isc_int32_t val) argument
151 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) argument
[all...]
/macosx-10.10/ntp-92/lib/isc/x86_32/include/isc/
H A Datomic.h27 * This routine atomically increments the value stored in 'p' by 'val', and
31 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
32 isc_int32_t prev = val;
48 isc_atomic_xaddq(isc_int64_t *p, isc_int64_t val) { argument
49 isc_int64_t prev = val;
65 * This routine atomically stores the value 'val' in 'p'.
68 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
80 : "r"(val), "m"(*p)
85 * This routine atomically replaces the value in 'p' with 'val', if the
90 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) { argument
114 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) argument
136 isc_atomic_store(isc_int32_t *p, isc_int32_t val) argument
151 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) argument
[all...]
/macosx-10.10/Libc-1044.1.2/net/FreeBSD/
H A Dinet_addr.c96 struct in_addr val; local
98 if (inet_aton(cp, &val))
99 return (val.s_addr);
114 u_long val; local
130 val = 0; base = 10; digit = 0;
144 val = (val * base) + (c - '0');
149 val = (val << 4) |
163 if (pp >= parts + 3 || val >
[all...]
H A Dinet_network.c58 in_addr_t val, base, n; local
64 val = 0; base = 10; digit = 0;
73 val = (val * base) + (c - '0');
79 val = (val << 4) +
89 if (pp >= parts + 4 || val > 0xffU)
92 *pp++ = val, cp++;
97 *pp++ = val;
101 for (val
[all...]
/macosx-10.10/swig-12/Lib/ruby/
H A Djstring.i5 SWIG_AsVal(jstring)(VALUE obj, jstring *val)
8 if (val) *val = 0;
12 if (val) {
15 *val = JvNewStringLatin1(cstr, len);
25 SWIG_From(jstring)(jstring val)
27 if (!val) {
30 jint len = JvGetStringUTFLength(val);
32 JvGetStringUTFRegion(val, 0, len, buf);
/macosx-10.10/swig-12/Lib/tcl/
H A Djstring.i5 SWIG_AsVal_dec(jstring)(Tcl_Obj * obj, jstring *val)
10 if (val) *val = 0;
15 if (val) {
16 *val = JvNewString((const jchar*)ucstr, len);
26 SWIG_From_dec(jstring)(jstring val)
28 if (!val) {
31 return Tcl_NewUnicodeObj((Tcl_UniChar *)JvGetStringChars(val),JvGetStringUTFLength(val));
/macosx-10.10/ksh-23/ksh/src/lib/libast/features/
H A Dlimits.c93 unsigned long val; local
107 val = 1;
108 while (uc >>= 1) val++;
109 printf("#define CHAR_BIT %lu\n", val);
112 val = 1;
113 printf("#define MB_LEN_MAX %lu\n", val);
132 val = uc;
134 printf("#define UCHAR_MAX %luU\n", val);
136 printf("#define UCHAR_MAX %lu\n", val);
141 val
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/isc/mips/include/isc/
H A Datomic.h27 * This routine atomically increments the value stored in 'p' by 'val', and
31 isc_atomic_xadd(isc_int32_t *p, int val) { argument
43 : "m"(*p), "r"(val)
51 * This routine atomically stores the value 'val' in 'p'.
54 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
62 : "m"(*p), "r"(val)
68 * This routine atomically replaces the value in 'p' with 'val', if the
73 isc_atomic_cmpxchg(isc_int32_t *p, int cmpval, int val) { argument
86 : "m"(*p), "r"(cmpval), "r"(val)
/macosx-10.10/ntp-92/lib/isc/mips/include/isc/
H A Datomic.h27 * This routine atomically increments the value stored in 'p' by 'val', and
31 isc_atomic_xadd(isc_int32_t *p, int val) { argument
43 : "m"(*p), "r"(val)
51 * This routine atomically stores the value 'val' in 'p'.
54 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
62 : "m"(*p), "r"(val)
68 * This routine atomically replaces the value in 'p' with 'val', if the
73 isc_atomic_cmpxchg(isc_int32_t *p, int cmpval, int val) { argument
86 : "m"(*p), "r"(cmpval), "r"(val)
/macosx-10.10/bash-94.1.2/bash-3.2/lib/sh/
H A Dinet_aton.c96 struct in_addr val;
98 if (inet_aton(cp, &val))
99 return (val.s_addr);
116 register u_bits32_t val; local
136 val = 0; base = 10;
146 val = (val * base) + (c - '0');
149 val = (val << 4) |
164 *pp++ = val;
[all...]
/macosx-10.10/swig-12/Lib/python/
H A Dpyprimtypes.swg18 SWIG_AsVal_dec(bool)(PyObject *obj, bool *val)
23 if (val) *val = r ? true : false;
37 SWIG_AsVal_dec(long)(PyObject *obj, long* val)
40 if (val) *val = PyInt_AsLong(obj);
45 if (val) *val = v;
56 if (val) *val
[all...]
/macosx-10.10/CPANInternal-159.1/IO-Socket-SSL/util/
H A Dexport_certs.pl17 my (%certhash, $key, $val);
27 while ( ($key, $val) = each %certhash ) {
37 $vlen = length($val);
50 $cert = substr($val, 13);
/macosx-10.10/Heimdal-398.1.2/base/
H A Dbool.c49 heim_bool_create(int val) argument
51 return heim_base_make_tagged_object(!!val, HEIM_TID_BOOL);
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Desetenv.c41 esetenv(const char *var, const char *val, int rewrite) argument
43 if (setenv (rk_UNCONST(var), rk_UNCONST(val), rewrite))
H A Dparse_bytes-test.c41 int val; member in struct:testcase
65 int val = parse_bytes (tests[i].str, tests[i].def_unit); local
68 if (val != tests[i].val) {
72 val, tests[i].val);
76 len = unparse_bytes (tests[i].val, buf, sizeof(buf));
79 tests[i].val, buf, tests[i].str);
/macosx-10.10/JavaScriptCore-7600.1.17/tests/stress/
H A Dftl-putbyid.js2 Object.prototype.__defineSetter__("r", function(val){ o = val })
/macosx-10.10/Libc-1044.1.2/secure/
H A Dmemset_chk.c29 __memset_chk (void *dest, int val, size_t len, size_t dstlen) argument
34 return memset (dest, val, len);
/macosx-10.10/bind9-45.101/bind9/lib/isc/x86_64/include/isc/
H A Datomic.h41 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
43 UNUSED(val);
60 isc_atomic_xaddq(isc_int64_t *p, isc_int64_t val) { argument
62 UNUSED(val);
79 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
81 UNUSED(val);
97 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) { argument
100 UNUSED(val);
/macosx-10.10/cxxfilt-11/cxxfilt/libiberty/
H A Dmemset.c19 memset (PTR dest, register int val, register size_t len) argument
23 *ptr++ = val;

Completed in 237 milliseconds

1234567891011>>