Searched refs:val (Results 126 - 150 of 4147) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/libiberty/
H A Dsimple-object-common.h270 simple_object_set_big_16 (unsigned char *buf, unsigned short val) argument
272 buf[0] = (val >> 8) & 0xff;
273 buf[1] = val & 0xff;
279 simple_object_set_little_16 (unsigned char *buf, unsigned short val) argument
281 buf[1] = (val >> 8) & 0xff;
282 buf[0] = val & 0xff;
288 simple_object_set_big_32 (unsigned char *buf, unsigned int val) argument
290 buf[0] = (val >> 24) & 0xff;
291 buf[1] = (val >> 16) & 0xff;
292 buf[2] = (val >>
299 simple_object_set_little_32(unsigned char *buf, unsigned int val) argument
310 simple_object_set_big_32_ulong(unsigned char *buf, ulong_type val) argument
318 simple_object_set_little_32_ulong(unsigned char *buf, ulong_type val) argument
328 simple_object_set_big_64(unsigned char *buf, ulong_type val) argument
343 simple_object_set_little_64(unsigned char *buf, ulong_type val) argument
[all...]
/netbsd-6-1-5-RELEASE/external/cddl/osnet/sys/sys/
H A Datomic.h43 atomic_or_8(volatile uint8_t *ptr, uint8_t val) argument
50 mask = (uint32_t)val;
53 mask = (uint32_t)val << 8;
56 mask = (uint32_t)val << 16;
59 mask = (uint32_t)val << 24;
65 mask = (uint32_t)val;
68 mask = (uint32_t)val << 8;
71 mask = (uint32_t)val << 16;
74 mask = (uint32_t)val << 24;
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/x86_32/include/isc/
H A Datomic.h29 * This routine atomically increments the value stored in 'p' by 'val', and
33 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
34 isc_int32_t prev = val;
50 isc_atomic_xaddq(isc_int64_t *p, isc_int64_t val) { argument
51 isc_int64_t prev = val;
67 * This routine atomically stores the value 'val' in 'p'.
70 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
82 : "r"(val), "m"(*p)
87 * This routine atomically replaces the value in 'p' with 'val', if the
92 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) { argument
116 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) argument
138 isc_atomic_store(isc_int32_t *p, isc_int32_t val) argument
153 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/include/isc/
H A Datomic.h14 * This routine atomically increments the value stored in 'p' by 'val', and
18 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
21 *p += val;
25 (uint32_t)val) - val;
31 isc_atomic_xaddq(isc_int64_t *p, isc_int64_t val) { argument
34 *p += val;
38 (uint64_t)val) - val;
44 * This routine atomically stores the value 'val' i
47 isc_atomic_store(isc_int32_t *p, isc_int32_t val) argument
61 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/x86_32/include/isc/
H A Datomic.h29 * This routine atomically increments the value stored in 'p' by 'val', and
33 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
34 isc_int32_t prev = val;
50 isc_atomic_xaddq(isc_int64_t *p, isc_int64_t val) { argument
51 isc_int64_t prev = val;
67 * This routine atomically stores the value 'val' in 'p'.
70 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
82 : "r"(val), "m"(*p)
87 * This routine atomically replaces the value in 'p' with 'val', if the
92 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) { argument
116 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) argument
138 isc_atomic_store(isc_int32_t *p, isc_int32_t val) argument
153 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) argument
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/string/
H A Dwcscspn_bloom.h62 size_t val; local
66 val = wcscspn_bloom1((size_t)*charset);
67 bloom[val / BLOOM_DIV] |= (size_t)1 << (val % BLOOM_DIV);
68 val = wcscspn_bloom2((size_t)*charset);
69 bloom[val / BLOOM_DIV] |= (size_t)1 << (val % BLOOM_DIV);
77 size_t val; local
79 val = wcscspn_bloom1((size_t)ch);
80 if (bloom[val / BLOOM_DI
[all...]
/netbsd-6-1-5-RELEASE/common/lib/libc/inet/
H A Dinet_addr.c111 struct in_addr val; local
113 if (inet_aton(cp, &val))
114 return (val.s_addr);
127 uint32_t val; local
143 val = 0; base = 10; digit = 0;
157 val = (val * base) + (c - '0');
162 val = (val << 4) |
176 if (pp >= parts + 3 || val >
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/python/libstdcxx/v6/
H A Dprinters.py25 def __init__ (self, typename, val):
27 self.val = val
30 if self.val['_M_refcount']['_M_pi'] == 0:
31 return '%s (empty) %s' % (self.typename, self.val['_M_ptr'])
33 self.val['_M_refcount']['_M_pi']['_M_use_count'],
34 self.val['_M_ptr'])
39 def __init__ (self, val):
40 self.val = val
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/mips/include/isc/
H A Datomic.h29 * This routine atomically increments the value stored in 'p' by 'val', and
33 isc_atomic_xadd(isc_int32_t *p, int val) { argument
45 : "m"(*p), "r"(val)
53 * This routine atomically stores the value 'val' in 'p'.
56 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
64 : "m"(*p), "r"(val)
70 * This routine atomically replaces the value in 'p' with 'val', if the
75 isc_atomic_cmpxchg(isc_int32_t *p, int cmpval, int val) { argument
88 : "m"(*p), "r"(cmpval), "r"(val)
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/noatomic/include/isc/
H A Datomic.h29 * This routine atomically increments the value stored in 'p' by 'val', and
33 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
36 *p += val;
42 * This routine atomically stores the value 'val' in 'p'.
45 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
46 *p = val;
50 * This routine atomically replaces the value in 'p' with 'val', if the
55 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) { argument
59 *p = val;
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/mips/include/isc/
H A Datomic.h29 * This routine atomically increments the value stored in 'p' by 'val', and
33 isc_atomic_xadd(isc_int32_t *p, int val) { argument
45 : "m"(*p), "r"(val)
53 * This routine atomically stores the value 'val' in 'p'.
56 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
64 : "m"(*p), "r"(val)
70 * This routine atomically replaces the value in 'p' with 'val', if the
75 isc_atomic_cmpxchg(isc_int32_t *p, int cmpval, int val) { argument
88 : "m"(*p), "r"(cmpval), "r"(val)
/netbsd-6-1-5-RELEASE/usr.bin/cksum/
H A Dprint.c50 pcrc(char *fn, u_int32_t val, off_t len) argument
52 (void)printf("%lu %lld", (unsigned long)val, (long long)len);
59 psum1(char *fn, u_int32_t val, off_t len) argument
61 (void)printf("%lu %lld", (unsigned long)val,
69 psum2(char *fn, u_int32_t val, off_t len) argument
71 (void)printf("%lu %lld", (unsigned long)val,
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/common/
H A Dsim-n-bits.h81 LSEXTRACTEDn (unsignedN val, argument
85 val <<= (N - 1 - start); /* drop high bits */
86 val >>= (N - 1 - start) + (stop); /* drop low bits */
87 return val;
94 MSEXTRACTEDn (unsignedN val, argument
98 val <<= (start); /* drop high bits */
99 val >>= (start) + (N - 1 - stop); /* drop low bits */
100 return val;
107 LSINSERTEDn (unsignedN val, argument
111 val <<
120 MSINSERTEDn(unsignedN val, int start, int stop) argument
133 ROTn(unsignedN val, int shift) argument
148 ROTLn(unsignedN val, int shift) argument
161 ROTRn(unsignedN val, int shift) argument
174 LSSEXTn(signedN val, int sign_bit) argument
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/gspa/gspa/
H A Dgsp_pseu.c48 int32_t val; local
60 if( !eval_expr(ops->op_u.value, &val, &ln) ){
66 line_pc = pc = val;
94 eval_expr(o->op_u.value, &val, &ln);
95 words[0] = val;
97 words[1] = val >> 16;
100 if( val < -32768 || val > 65535 )
126 if( !eval_expr(ops->op_u.value, &val, &ln) ){
131 val *
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/inet/
H A Dinet_network.c58 register u_long val, base, n, i; 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...]
/netbsd-6-1-5-RELEASE/lib/libc/inet/
H A Dinet_network.c64 in_addr_t val; local
73 val = 0; base = 10; digit = 0;
82 val = (val * base) + (c - '0');
88 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
97 if (pp >= parts + 4 || val > 0xff)
100 *pp++ = val, cp++;
105 *pp++ = val;
109 for (val
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/arm/arm32/
H A Darm11_pmc.c62 uint32_t val; local
64 __asm volatile ("mrc p15, 0, %0, c15, c12, 0" : "=r" (val));
66 return val;
70 arm11_pmc_ctrl_write(uint32_t val) argument
72 __asm volatile ("mcr p15, 0, %0, c15, c12, 0" :: "r" (val));
78 uint32_t val; local
80 __asm volatile ("mrc p15, 0, %0, c15, c12, 1" : "=r" (val));
82 return val;
86 arm11_pmc_ccnt_write(uint32_t val) argument
88 __asm volatile ("mcr p15, 0, %0, c15, c12, 1;" :: "r" (val));
97 uint32_t val; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/base/
H A Dbool.c51 heim_bool_create(int val) argument
53 return heim_base_make_tagged_object(!!val, HEIM_TID_BOOL);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/x86_64/include/isc/
H A Datomic.h43 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
45 UNUSED(val);
62 isc_atomic_xaddq(isc_int64_t *p, isc_int64_t val) { argument
64 UNUSED(val);
81 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
83 UNUSED(val);
99 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) { argument
102 UNUSED(val);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/x86_64/include/isc/
H A Datomic.h43 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { argument
45 UNUSED(val);
62 isc_atomic_xaddq(isc_int64_t *p, isc_int64_t val) { argument
64 UNUSED(val);
81 isc_atomic_store(isc_int32_t *p, isc_int32_t val) { argument
83 UNUSED(val);
99 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) { argument
102 UNUSED(val);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gold/testsuite/
H A Dmany_sections_test.cc37 static T val() { return C::val_; } function in class:C
49 assert(C<int>::val() == 0);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/libiberty/
H A Dmemset.c19 memset (PTR dest, register int val, register size_t len) argument
23 *ptr++ = val;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.jason/
H A Dparse9.C7 int val; member in class:Fu
9 Fu(int i) : val(i) { }
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.law/
H A Dvisibility6.C11 void val() {} // { dg-error "" } private base class function in class:Top
22 void oops() { derived.val(); }// { dg-error "" } .*
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.pt/
H A Denum3.C5 int val( ) function
13 return val<S::s0>( );

Completed in 368 milliseconds

1234567891011>>