Searched refs:val (Results 451 - 475 of 4147) sorted by relevance

<<11121314151617181920>>

/netbsd-6-1-5-RELEASE/lib/libc/inet/
H A Dinet_net_pton.c200 int val; local
203 val = 0;
210 if (n++ != 0 && val == 0) /* no leading zeros */
212 val *= 10;
213 val += (pch - digits);
214 if (val > 128) /* range */
222 *bitsp = val;
231 u_int val; local
234 val = 0;
241 if (n++ != 0 && val
276 u_int val; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dtypeprint.c117 struct value *val; local
130 val = evaluate_type (expr);
133 val = access_value_history (0);
135 type = value_type (val);
144 real_type = value_rtti_target_type (val, &full, &top, &using_enc);
154 real_type = value_rtti_type (val, &full, &top, &using_enc);
205 print_type_scalar (struct type *type, LONGEST val, struct ui_file *stream) argument
219 if (TYPE_FIELD_BITPOS (type, i) == val)
230 print_longest (stream, 'd', 0, val);
235 print_longest (stream, TYPE_UNSIGNED (type) ? 'u' : 'd', 0, val);
247 print_type_scalar (TYPE_TARGET_TYPE (type), val, stream); local
282 struct value *val; local
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/arm/xscale/
H A Di80312_gpio.c59 i80312_gpio_set_direction(uint8_t which, uint8_t val) argument
63 sc->sc_gpio_dir = (sc->sc_gpio_dir & ~which) | val;
74 i80312_gpio_set_val(uint8_t which, uint8_t val) argument
78 sc->sc_gpio_val = (sc->sc_gpio_val & ~which) | val;
H A Di80321_gpio.c56 i80321_gpio_set_direction(uint8_t which, uint8_t val) argument
60 sc->sc_gpio_dir = (sc->sc_gpio_dir & ~which) | val;
70 i80321_gpio_set_val(uint8_t which, uint8_t val) argument
74 sc->sc_gpio_val = (sc->sc_gpio_val & ~which) | val;
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/opcodes/
H A Dmcore-dis.c200 long val = inst & 0x3FF; local
203 val |= 0xFFFFFC00;
205 (*print_func) (stream, "\t0x%lx", (long)(memaddr + 2 + (val << 1)));
210 val = memaddr + 2 + (val << 1);
212 if (info->print_address_func && val != 0)
215 info->print_address_func (val, info);
223 long val; local
224 val = (inst & 0x000F);
227 (long) (memaddr - (val <<
233 unsigned long val; local
263 unsigned long val; local
[all...]
/netbsd-6-1-5-RELEASE/tests/lib/libc/sys/
H A Dt_listen.c47 int sd, val; local
51 val = IP_PORTRANGE_LOW;
52 if (setsockopt(sd, IPPROTO_IP, IP_PORTRANGE, &val,
53 sizeof(val)) == -1)
/netbsd-6-1-5-RELEASE/usr.bin/make/
H A Dhash.h132 * Hash_SetValue(h, val);
134 * char *val;
137 #define Hash_SetValue(h, val) ((h)->clientInfo.clientPtr = (val))
138 #define Hash_SetTimeValue(h, val) ((h)->clientInfo.clientTime = (val))
/netbsd-6-1-5-RELEASE/sys/fs/v7fs/
H A Dv7fs_endian.h41 #define V7FS_VAL32(x, v) ((*(x)->val.conv32)(v))
42 #define V7FS_VAL16(x, v) ((*(x)->val.conv16)(v))
43 #define V7FS_VAL24_READ(x, a) ((*(x)->val.conv24read)(a))
44 #define V7FS_VAL24_WRITE(x, v, a) ((*(x)->val.conv24write)(v, a))
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/libopts/
H A Dnumeric.c118 long val; local
132 val = strtol(pOD->optArg.argString, &pz, 0);
139 case 't': val *= 1000;
140 case 'g': val *= 1000;
141 case 'm': val *= 1000;
142 case 'k': val *= 1000; break;
144 case 'T': val *= 1024;
145 case 'G': val *= 1024;
146 case 'M': val *= 1024;
147 case 'K': val *
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/sntp/libopts/
H A Dnumeric.c110 long val; local
124 val = strtol(pOD->optArg.argString, &pz, 0);
131 case 't': val *= 1000;
132 case 'g': val *= 1000;
133 case 'm': val *= 1000;
134 case 'k': val *= 1000; break;
136 case 'T': val *= 1024;
137 case 'G': val *= 1024;
138 case 'M': val *= 1024;
139 case 'K': val *
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/stdlib/
H A Dstrsuftoll.c116 strsuftoll(const char *desc, const char *val,
122 result = strsuftollx(desc, val, min, max, errbuf, sizeof(errbuf));
134 __strsuftollx(const char *desc, const char *val, argument
141 _DIAGASSERT(val != NULL);
149 while (isspace((unsigned char)*val)) /* Skip leading space */
150 val++;
153 num = strtoll(val, &expr, 10);
157 if (expr == val) /* No digits */
224 snprintf(ebuf, ebuflen, "%s `%s': illegal number", desc, val);
244 strsuftollx(const char *desc, const char *val, argument
[all...]
/netbsd-6-1-5-RELEASE/common/lib/libc/atomic/
H A Datomic_and_64_cas.c39 atomic_and_64(volatile uint64_t *addr, uint64_t val) argument
45 new = old & val;
H A Datomic_and_64_nv_cas.c39 atomic_and_64_nv(volatile uint64_t *addr, uint64_t val) argument
45 new = old & val;
H A Datomic_or_64_cas.c39 atomic_or_64(volatile uint64_t *addr, uint64_t val) argument
45 new = old | val;
H A Datomic_or_64_nv_cas.c39 atomic_or_64_nv(volatile uint64_t *addr, uint64_t val) argument
45 new = old | val;
/netbsd-6-1-5-RELEASE/common/lib/libx86emu/
H A Dx86emu_i8254.c182 x86emu_i8254_write_command(struct x86emu_i8254 *sc, uint8_t val) argument
187 if ((val >> 6) == 3) {
195 if ((val & (2 << i)) == 0)
197 if ((val & 0x10) != 0)
199 if ((val & 0x20) != 0)
205 timer = &sc->timer[val >> 6];
207 switch (val & 0x30) {
224 timer->rw_status = val & 0x30;
226 timer->new_mode = (val >> 1) & 0x7;
227 timer->new_is_bcd = (val
234 uint16_t val; local
274 x86emu_i8254_write_counter(struct x86emu_i8254 *sc, struct x86emu_i8254_timer *timer, uint8_t val) argument
309 uint8_t val; local
319 x86emu_i8254_write_nmi(struct x86emu_i8254 *sc, uint8_t val) argument
369 x86emu_i8254_outb(struct x86emu_i8254 *sc, uint16_t port, uint8_t val) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libelf/dist/
H A Dlibelf.c52 uint32_t val; member in union:__anon1687
55 .val = 0xdeadbeef,
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/bfd/
H A Dstab-syms.c53 #define __define_name(val, str) case val: return str;
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/opcodes/
H A Dd30v-dis.c95 int val; local
103 val = ((num & 0x3FFFF)
107 val = (num >> (32 + shift)) & mask;
110 val = (num >> shift) & mask;
113 val <<= 3;
115 return val;
126 int val, opnum, need_comma = 0; local
136 val =
140 (*info->fprintf_func) (info->stream, "%s", d30v_cc_names[val]);
204 val
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/template/
H A Dstatic19.C3 template <bool val> struct bool_var {
4 static const bool value = val;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D20000224-1.c18 unsigned long val: 32; member in struct:Lisp_Object::__anon5192
35 val: ((unsigned long )d)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgomp/config/linux/
H A Dmutex.h61 int val = __sync_lock_test_and_set (mutex, 0); local
62 if (__builtin_expect (val > 1, 0))
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/bfd/
H A Dstab-syms.c53 #define __define_name(val, str) case val: return str;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/template/
H A Dstatic19.C3 template <bool val> struct bool_var {
4 static const bool value = val;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D20000224-1.c18 unsigned long val: 32; member in struct:Lisp_Object::__anon3558
35 val: ((unsigned long )d)

Completed in 376 milliseconds

<<11121314151617181920>>