Searched refs:val (Results 376 - 400 of 4147) sorted by relevance

<<11121314151617181920>>

/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/all/
H A Dcofftag.s28 .val 0
33 .val 1
38 .val 4
50 .val _token
55 .val _what
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A Dpr39845.c23 tree val = (void *)0; local
33 if (((enum tree_code) (val)->base.code) == EXCESS_PRECISION_EXPR
35 val = ((val)->exp.operands[0]);
36 return val;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgomp/config/linux/ia64/
H A Dfutex.h32 sys_futex0(int *addr, long op, int val) argument
36 register long out2 asm ("out2") = val;
61 futex_wait (int *addr, int val) argument
63 long err = sys_futex0 (addr, gomp_futex_wait, val);
68 sys_futex0 (addr, gomp_futex_wait, val);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgomp/config/linux/s390/
H A Dfutex.h30 sys_futex0 (int *addr, int op, int val) argument
39 gpr4 = val;
51 futex_wait (int *addr, int val) argument
53 long err = sys_futex0 (addr, gomp_futex_wait, val);
58 sys_futex0 (addr, gomp_futex_wait, val);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dmem-break.c47 int val; local
58 val = target_read_memory (bp_tgt->placed_address, bp_tgt->shadow_contents,
62 if (val == 0)
63 val = target_write_memory (bp_tgt->placed_address, bp,
66 return val;
H A Dvalue.c646 struct value *val;
656 val = (struct value *) xzalloc (sizeof (struct value));
657 val->contents = NULL;
658 val->next = all_values;
659 all_values = val;
660 val->type = type;
661 val->enclosing_type = type;
662 VALUE_LVAL (val) = not_lval;
663 val->location.address = 0;
664 VALUE_FRAME_ID (val)
645 struct value *val; local
684 allocate_value_contents(struct value *val) argument
695 struct value *val = allocate_value_lazy (type); local
925 set_value_lazy(struct value *value, int val) argument
937 set_value_stack(struct value *value, int val) argument
986 set_value_optimized_out(struct value *value, int val) argument
1033 set_value_embedded_offset(struct value *value, int val) argument
1045 set_value_pointed_to_offset(struct value *value, int val) argument
1140 value_incref(struct value *val) argument
1150 value_free(struct value *val) argument
1183 struct value *val; local
1201 struct value *val; local
1231 release_value(struct value *val) argument
1257 struct value *val; local
1279 struct value *val; local
1326 struct value *val = allocate_value (enc_type); local
1366 record_latest_value(struct value *val) argument
1446 struct value *val; local
1550 LONGEST val; member in struct:internalvar::internalvar_data::__anon688
1668 struct value *val; local
1814 set_internalvar(struct internalvar *var, struct value *val) argument
1939 value_internal_function_name(struct value *val) argument
2106 value_as_long(struct value *val) argument
2116 value_as_double(struct value *val) argument
2131 value_as_address(struct value *val) argument
2428 set_value_enclosing_type(struct value *val, struct type *new_encl_type) argument
2623 ULONGEST val; local
2714 unpack_value_field_as_long_1(struct type *type, const gdb_byte *valaddr, int embedded_offset, int fieldno, const struct value *val, LONGEST *result) argument
2733 unpack_value_field_as_long(struct type *type, const gdb_byte *valaddr, int embedded_offset, int fieldno, const struct value *val, LONGEST *result) argument
2764 value_field_bitfield(struct type *type, int fieldno, const gdb_byte *valaddr, int embedded_offset, const struct value *val) argument
2913 struct value *val = allocate_value (type); local
2925 struct value *val = allocate_value (type); local
2938 struct value *val = allocate_value (type); local
2971 struct value *val = allocate_value (type); local
2988 struct value *val = allocate_value (type); local
3108 set_value_initialized(struct value *val, int status) argument
3116 value_initialized(struct value *val) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/ia64/include/
H A Dlock.h92 uint8_t val; local
94 val = __SIMPLELOCK_LOCKED;
96 "=r" (val)
97 :"r" (lockp), "r" (val)
99 return val == __SIMPLELOCK_UNLOCKED;
/netbsd-6-1-5-RELEASE/sys/external/bsd/acpica/dist/include/platform/
H A Dacos2.h82 unsigned long long val = 0LL; \
83 val = n_lo | ( ((unsigned long long)h_hi) << 32 ); \
84 __llrotr (val,1); \
85 n_hi = (unsigned long)((val >> 32 ) & 0xffffffff ); \
86 n_lo = (unsigned long)(val & 0xffffffff); \
/netbsd-6-1-5-RELEASE/usr.sbin/puffs/mount_9p/
H A Dninebuf.c50 uint8_t val; local
52 puffs_framebuf_getdata_atoff(pb, 4, &val, 1);
53 return val;
59 uint16_t val; local
61 puffs_framebuf_getdata_atoff(pb, 5, &val, 2);
62 return le16toh(val);
68 uint32_t val; local
70 puffs_framebuf_getdata_atoff(pb, 0, &val, 4);
71 return le32toh(val);
187 p9pbuf_put_1(struct puffs_framebuf *pb, uint8_t val) argument
196 p9pbuf_put_2(struct puffs_framebuf *pb, uint16_t val) argument
206 p9pbuf_put_4(struct puffs_framebuf *pb, uint32_t val) argument
216 p9pbuf_put_8(struct puffs_framebuf *pb, uint64_t val) argument
254 p9pbuf_get_1(struct puffs_framebuf *pb, uint8_t *val) argument
261 p9pbuf_get_2(struct puffs_framebuf *pb, uint16_t *val) argument
272 p9pbuf_get_4(struct puffs_framebuf *pb, uint32_t *val) argument
283 p9pbuf_get_8(struct puffs_framebuf *pb, uint64_t *val) argument
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dbase64.c107 unsigned int val = 0; local
112 val *= 64;
118 val += pos(token[i]);
122 return (marker << 24) | val;
133 unsigned int val = token_decode(p); local
134 unsigned int marker = (val >> 24) & 0xff;
135 if (val == DECODE_ERROR)
137 *q++ = (val >> 16) & 0xff;
139 *q++ = (val >> 8) & 0xff;
141 *q++ = val
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/iscsi/
H A Dbase64.c135 uint32_t val = 0; local
142 val *= 64;
148 val += pos(token[i]);
154 return (marker << 24) | val;
166 uint32_t val = token_decode(p); local
167 marker = (val >> 24) & 0xff;
168 if (val == DECODE_ERROR) {
171 *q++ = (val >> 16) & 0xff;
173 *q++ = (val >> 8) & 0xff;
176 *q++ = val
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dtest_store.c43 int8_t val[] = { local
49 for (i = 0; i < sizeof(val[0])/sizeof(val); i++) {
51 ret = krb5_store_int8(sp, val[i]);
58 if (v != val[i])
68 int16_t val[] = { local
74 for (i = 0; i < sizeof(val[0])/sizeof(val); i++) {
76 ret = krb5_store_int16(sp, val[i]);
83 if (v != val[
93 int32_t val[] = { local
118 uint8_t val[] = { local
143 uint16_t val[] = { local
168 uint32_t val[] = { local
[all...]
/netbsd-6-1-5-RELEASE/bin/ksh/
H A Dexpr.c128 struct tbl *val; /* value from token() */ member in struct:expr_state
163 *rval = v.val.i;
206 es->val = tempvar();
238 s = es->val->name;
241 s = str_val(es->val);
301 vl->val.i = ~vl->val.i;
303 vl->val.i = !vl->val.i;
305 vl->val
[all...]
H A Dc_ulimit.c128 rlim_t UNINITIALIZED(val);
179 val = KSH_RLIM_INFINITY;
196 val = (u_long)rval * l->factor;
205 val = limit.rlim_cur;
207 val = limit.rlim_max;
212 val = ulimit(l->gcmd, (rlim_t) 0);
219 if (val == RLIM_INFINITY)
224 val /= l->factor;
225 shprintf("%ld\n", (long) val);
235 limit.rlim_cur = val;
[all...]
/netbsd-6-1-5-RELEASE/sys/external/isc/atheros_hal/dist/ar5312/
H A Dar5312_gpio.c72 ar5312GpioSet(struct ath_hal *ah, uint32_t gpio, uint32_t val) argument
81 reg |= (val&1) << gpio;
96 uint32_t val = OS_REG_READ(ah, gpioOffset+AR5312_GPIODI); local
97 val = ((val & AR5312_GPIOD_MASK) >> gpio) & 0x1;
98 return val;
110 uint32_t val; local
114 val = OS_REG_READ(ah, gpioOffset+AR5312_GPIOCR);
115 val &= ~(AR_GPIOCR_CR_A(gpio) |
117 val |
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/ppc/
H A Didecode_expression.h59 #define SIGNED64(val) ((signed64)(signed32)(val))
60 #define UNSIGNED64(val) ((unsigned64)(unsigned32)(val))
65 #define ALU_BEGIN(val) \
70 ALU_SET(val)
117 #define ALU_SET(val) \
119 alu_val = val; \
125 #define ALU_SET(val) \
127 alu_val = val; \
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/servers/slapd/back-passwd/
H A Dsearch.c77 struct berval val; local
120 BER_BVSTR( &val, "organizationalUnit" );
121 attr_merge_one( &e, ad_objectClass, &val, NULL );
275 struct berval val; local
286 val.bv_len = STRLENOF("uid=,") + ( pwlen + be->be_suffix[0].bv_len );
287 val.bv_val = ch_malloc( val.bv_len + 1 );
290 sprintf( val.bv_val, "uid=%s,%s",
293 rc = dnNormalize( 0, NULL, NULL, &val, &bv, NULL );
295 free( val
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/opcodes/
H A Dpj-dis.c80 int val; local
83 if ((status = get_int (addr, &val, info)))
87 (*info->print_address_func) (val + insn_start, info);
100 if ((status = get_int (addr, &val, info)))
103 (*info->print_address_func) (val + insn_start, info);
117 int val; local
120 if ((status = get_int (addr, &val, info)))
125 (*info->print_address_func) (val + insn_start, info);
133 if ((status = get_int (addr, &val, info)))
136 fprintf_fn (stream, " %d:[", val);
151 int val = 0; local
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/hpcmips/tx/
H A Dtx39ioreg.h66 #define TX391X_IOCTRL_IODEBSEL_SET(cr, val) \
67 ((cr) | (((val) << TX391X_IOCTRL_IODEBSEL_SHIFT) & \
75 #define TX391X_IOCTRL_IODIREC_SET(cr, val) \
76 ((cr) | (((val) << TX391X_IOCTRL_IODIREC_SHIFT) & \
86 #define TX391X_IOCTRL_IODOUT_SET(cr, val) \
87 ((cr) | (((val) << TX391X_IOCTRL_IODOUT_SHIFT) & \
103 #define TX392X_IOCTRL_IODEBSEL_SET(cr, val) \
104 ((cr) | (((val) << TX392X_IOCTRL_IODEBSEL_SHIFT) & \
112 #define TX392X_IOCTRL_IODIREC_SET(cr, val) \
113 ((cr) | (((val) << TX392X_IOCTRL_IODIREC_SHIF
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/opcodes/
H A Dpj-dis.c80 int val; local
83 if ((status = get_int (addr, &val, info)))
87 (*info->print_address_func) (val + insn_start, info);
100 if ((status = get_int (addr, &val, info)))
103 (*info->print_address_func) (val + insn_start, info);
117 int val; local
120 if ((status = get_int (addr, &val, info)))
125 (*info->print_address_func) (val + insn_start, info);
133 if ((status = get_int (addr, &val, info)))
136 fprintf_fn (stream, " %d:[", val);
151 int val = 0; local
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/arm/omap/
H A Domap2_l3i.c228 L3i_decode_ta_COMPONENT(uint32_t val) argument
230 aprint_normal("\tCODE %#" PRIxMAX "\n", TA_COMPONENT_CODE(val));
231 aprint_normal("\tREV %#" PRIxMAX "\n", TA_COMPONENT_REV(val));
235 L3i_decode_ta_CORE(uint32_t val) argument
237 aprint_normal("\tCODE %#" PRIxMAX "\n", TA_AGENT_CORE_CODE(val));
238 aprint_normal("\tREV %#" PRIxMAX "\n", TA_AGENT_CORE_REV(val));
242 L3i_decode_ta_AGENT_CONTROL(uint32_t val) argument
249 core_timeout_ix = (val & TA_AGENT_CONTROL_CORE_TIMEOUT_BASE)
253 ((val & TA_AGENT_CONTROL_CORE_REQ_TIMEOUT_REP) != 0));
255 ((val
265 L3i_decode_ta_AGENT_STATUS(uint32_t val) argument
288 L3i_decode_ta_ERROR_LOG(uint32_t val) argument
301 L3i_decode_ta_ERROR_LOG_ADDR(uint32_t val) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp700.C123 inline virtual int val() const;
159 inline int Int::val() const { return rep; } function in class:Int
160 inline Int::operator int() const { return val(); }
164 inline Int::Int (const Int& b) :rep(b.Int::val()) {}
170 { rep = b.Int::val(); ; }
182 { rep += b.Int::val(); ; }
184 { rep -= b.Int::val(); ; }
186 { rep *= b.Int::val(); ; }
188 { rep /= b.Int::val(); ; }
190 { rep %= b.Int::val(); ; }
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/25_algorithms/partial_sort/
H A Dmoveable.cc51 VERIFY( array[0].val == 0 && array[1].val == 1 && array[2].val == 2 );
66 VERIFY( array[0].val == 0 && array[1].val == 1 && array[2].val == 2 );
84 VERIFY( array[0].val == 0 && array[1].val == 1 && array[2].val == 2 );
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp700.C123 inline virtual int val() const;
159 inline int Int::val() const { return rep; } function in class:Int
160 inline Int::operator int() const { return val(); }
164 inline Int::Int (const Int& b) :rep(b.Int::val()) {}
170 { rep = b.Int::val(); ; }
182 { rep += b.Int::val(); ; }
184 { rep -= b.Int::val(); ; }
186 { rep *= b.Int::val(); ; }
188 { rep /= b.Int::val(); ; }
190 { rep %= b.Int::val(); ; }
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/include/ibm4xx/
H A Dcpu.h92 mtdcr(int reg, uint32_t val) argument
94 __asm volatile("mtdcr %0,%1" : : "K"(reg), "r"(val));
100 uint32_t val; local
102 __asm volatile("mfdcr %0,%1" : "=r"(val) : "K"(reg));
103 return val;
107 mtcpr(int reg, uint32_t val) argument
110 mtdcr(DCR_CPR0_CFGDATA, val);
121 mtsdr(int reg, uint32_t val) argument
124 mtdcr(DCR_SDR0_CFGDATA, val);

Completed in 416 milliseconds

<<11121314151617181920>>