Search

Searched defs:val (Results 1 - 25 of 72) sorted by relevance

123

/bind-9.6-ESV-R11/lib/isc/alpha/include/isc/
H A Datomic.h64 * This routine atomically increments the value stored in 'p' by 'val', and
70 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
79 p, val));
83 * This routine atomically stores the value 'val' in 'p'.
86 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
94 p, val);
98 * This routine atomically replaces the value in 'p' with 'val', if the
103 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) { argument
116 p, cmpval, val));
120 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
140 isc_atomic_store(isc_int32_t *p, isc_int32_t val) argument
157 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) argument
[all...]
/bind-9.6-ESV-R11/lib/isc/ia64/include/isc/
H A Datomic.h27 * This routine atomically increments the value stored in 'p' by 'val', and
37 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) argument
42 swapped = prev + val;
57 * This routine atomically stores the value 'val' in 'p'.
63 isc_atomic_store(isc_int32_t *p, isc_int32_t val) argument
68 : "r" (val)
74 * This routine atomically replaces the value in 'p' with 'val', if the
82 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) argument
90 : "r" (cmpval), "r" (val), "m" (*p)
/bind-9.6-ESV-R11/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)
/bind-9.6-ESV-R11/lib/isc/unix/
H A Dsyslog.c33 int val; member in struct:dsn_c_pvt_sfnt
78 *facilityp = facilities[i].val;
/bind-9.6-ESV-R11/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...]
/bind-9.6-ESV-R11/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);
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Denv.c46 const char* val = getenv(name); local
47 PRE(val != NULL);
48 return val;
58 atf_env_set(const char *name, const char *val) argument
63 if (setenv(name, val, 1) == -1)
65 "'%s' to '%s'", name, val);
71 err = atf_text_format(&buf, "%s=%s", name, val);
75 "'%s' to '%s'", name, val);
H A Denv_test.c61 const char *val; local
65 val = atf_env_get("PATH");
66 ATF_REQUIRE(strlen(val) > 0);
67 ATF_REQUIRE(strchr(val, ':') != NULL);
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Denv.cpp60 impl::set(const std::string& name, const std::string& val) argument
62 atf_error_t err = atf_env_set(name.c_str(), val.c_str());
/bind-9.6-ESV-R11/bin/tests/
H A Dlwresconf_test.c32 CHECK(int val, const char *msg) { argument
33 if (val != 0) {
34 fprintf(stderr, "%s returned %d\n", msg, val);
/bind-9.6-ESV-R11/lib/isc/
H A Dinet_aton.c90 isc_uint32_t val; local
106 val = 0; base = 10; digit = 0;
126 val = (val * base) + (c - '0');
130 val = (val << 4) |
144 if (pp >= parts + 3 || val > 0xffU)
146 *pp++ = (isc_uint8_t)val;
171 if (val > 0xffffffU)
173 val |
[all...]
H A Dparseint.c57 isc_uint32_t val; local
59 result = isc_parse_uint32(&val, string, base);
62 if (val > 0xFFFF)
64 *uip = (isc_uint16_t) val;
70 isc_uint32_t val; local
72 result = isc_parse_uint32(&val, string, base);
75 if (val > 0xFF)
77 *uip = (isc_uint8_t) val;
H A Drandom.c76 isc_random_get(isc_uint32_t *val) argument
78 REQUIRE(val != NULL);
89 *val = ((rand() >> 4) & 0xffff) | ((rand() << 12) & 0xffff0000);
92 *val = ((rand() >> 4) & 0x000007ff) | ((rand() << 7) & 0x003ff800) |
98 *val = arc4random();
H A Dinet_pton.c140 unsigned int val; local
151 val = 0;
158 val <<= 4;
159 val |= (pch - xdigits);
174 *tp++ = (unsigned char) (val >> 8) & 0xff;
175 *tp++ = (unsigned char) val & 0xff;
177 val = 0;
191 *tp++ = (unsigned char) (val >> 8) & 0xff;
192 *tp++ = (unsigned char) val & 0xff;
/bind-9.6-ESV-R11/lib/isc/powerpc/include/isc/
H A Datomic.h27 * isc_atomic_xadd(isc_int32_t *p, isc_int32_t val);
29 * This routine atomically increments the value stored in 'p' by 'val', and
33 * isc_atomic_store(void *p, isc_int32_t val);
35 * This routine atomically stores the value 'val' in 'p'.
38 * isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val);
40 * This routine atomically replaces the value in 'p' with 'val', if the
56 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
65 ret = fetch_and_add((atomic_p)p, (int)val);
103 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
125 : "r"(p), "r"(val)
133 isc_atomic_store(void *p, isc_int32_t val) argument
157 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) argument
[all...]
/bind-9.6-ESV-R11/lib/isc/sparc64/include/isc/
H A Datomic.h65 * This routine atomically increments the value stored in 'p' by 'val', and
69 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
73 swapped = prev + val;
86 * This routine atomically stores the value 'val' in 'p'.
89 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
93 swapped = val;
104 * This routine atomically replaces the value in 'p' with 'val', if the
109 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) { argument
110 isc_int32_t temp = val;
/bind-9.6-ESV-R11/lib/lwres/
H A Dlwinetaton.c94 lwres_uint32_t val; local
112 val = 0;
135 val = (val * base) + (c - '0');
139 val = (val << 4) |
153 if (pp >= parts + 3 || val > 0xffU)
155 *pp++ = (lwres_uint8_t)val;
180 if (val > 0xffffffU)
182 val |
[all...]
H A Dlwbuffer.c96 * val to buffer *b.
102 * unsigned 16-bit or 32-bit integer val to buffer b, in network byte
243 lwres_buffer_putuint8(lwres_buffer_t *b, lwres_uint8_t val) argument
253 cp[0] = (val & 0x00ff);
278 lwres_buffer_putuint16(lwres_buffer_t *b, lwres_uint16_t val) argument
288 cp[0] = (val & 0xff00) >> 8;
289 cp[1] = (val & 0x00ff);
315 lwres_buffer_putuint32(lwres_buffer_t *b, lwres_uint32_t val) argument
325 cp[0] = (unsigned char)((val & 0xff000000) >> 24);
326 cp[1] = (unsigned char)((val
[all...]
H A Dlwinetpton.c142 unsigned int val; local
153 val = 0;
160 val <<= 4;
161 val |= (pch - xdigits);
176 *tp++ = (unsigned char) (val >> 8) & 0xff;
177 *tp++ = (unsigned char) val & 0xff;
179 val = 0;
193 *tp++ = (unsigned char) (val >> 8) & 0xff;
194 *tp++ = (unsigned char) val & 0xff;
/bind-9.6-ESV-R11/lib/dns/
H A Dsoa.c38 encode_uint32(isc_uint32_t val, unsigned char *p) { argument
39 p[0] = (isc_uint8_t)(val >> 24);
40 p[1] = (isc_uint8_t)(val >> 16);
41 p[2] = (isc_uint8_t)(val >> 8);
42 p[3] = (isc_uint8_t)(val >> 0);
85 soa_set(dns_rdata_t *rdata, isc_uint32_t val, int offset) { argument
89 encode_uint32(val, rdata->data + rdata->length - 20 + offset);
93 dns_soa_setserial(isc_uint32_t val, dns_rdata_t *rdata) { argument
94 soa_set(rdata, val, 0);
97 dns_soa_setrefresh(isc_uint32_t val, dns_rdata_ argument
101 dns_soa_setretry(isc_uint32_t val, dns_rdata_t *rdata) argument
105 dns_soa_setexpire(isc_uint32_t val, dns_rdata_t *rdata) argument
109 dns_soa_setminimum(isc_uint32_t val, dns_rdata_t *rdata) argument
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dbuild_test.c102 verbose_set_env(const char *var, const char *val) argument
104 printf("Setting %s to '%s'\n", var, val);
105 RE(atf_env_set(var, val));
H A Dconfig.c101 const char *val = atf_env_get(envname); local
102 if (strlen(val) > 0 || var->can_be_empty)
103 var->value = val;
/bind-9.6-ESV-R11/unit/atf-src/atf-config/
H A Datf-config.cpp104 atf_config::format_var(const std::string& name, const std::string& val) argument
109 str = val;
111 str = name + " : " + val;
/bind-9.6-ESV-R11/lib/isc/win32/
H A Dsyslog.c38 int val; member in struct:dsn_c_pvt_sfnt
83 *facilityp = facilities[i].val;
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dbuild_test.cpp76 verbose_set_env(const char *var, const char *val) argument
78 std::cout << "Setting " << var << " to '" << val << "'\n"; local
79 atf::env::set(var, val);

Completed in 806 milliseconds

123