Searched refs:valp (Results 1 - 25 of 79) sorted by relevance

1234

/freebsd-10-stable/contrib/nvi/common/
H A Doptions_f.c39 u_long *valp)
41 if (*valp)
54 u_long *valp)
57 if (*valp < MINIMUM_SCREEN_COLS) {
72 if (*valp > MAXIMUM_SCREEN_COLS) {
88 u_long *valp)
91 if (*valp < MINIMUM_SCREEN_ROWS) {
106 if (*valp > MAXIMUM_SCREEN_ROWS) {
116 o_set(sp, O_LINES, 0, NULL, *valp);
117 if (*valp
35 f_altwerase( SCR *sp, OPTION *op, char *str, u_long *valp) argument
50 f_columns( SCR *sp, OPTION *op, char *str, u_long *valp) argument
84 f_lines( SCR *sp, OPTION *op, char *str, u_long *valp) argument
141 f_lisp( SCR *sp, OPTION *op, char *str, u_long *valp) argument
155 f_msgcat( SCR *sp, OPTION *op, char *str, u_long *valp) argument
169 f_print( SCR *sp, OPTION *op, char *str, u_long *valp) argument
198 f_readonly( SCR *sp, OPTION *op, char *str, u_long *valp) argument
219 f_recompile( SCR *sp, OPTION *op, char *str, u_long *valp) argument
240 f_reformat( SCR *sp, OPTION *op, char *str, u_long *valp) argument
254 f_ttywerase( SCR *sp, OPTION *op, char *str, u_long *valp) argument
269 f_w300( SCR *sp, OPTION *op, char *str, u_long *valp) argument
290 f_w1200( SCR *sp, OPTION *op, char *str, u_long *valp) argument
311 f_w9600( SCR *sp, OPTION *op, char *str, u_long *valp) argument
332 f_window( SCR *sp, OPTION *op, char *str, u_long *valp) argument
348 f_encoding( SCR *sp, OPTION *op, char *str, u_long *valp) argument
[all...]
/freebsd-10-stable/contrib/gdb/gdb/
H A Dauxv.h46 CORE_ADDR *typep, CORE_ADDR *valp);
53 CORE_ADDR match, CORE_ADDR *valp);
H A Dauxv.c122 CORE_ADDR *typep, CORE_ADDR *valp)
135 *valp = extract_unsigned_integer (ptr, sizeof_auxv_field);
147 target_auxv_search (struct target_ops *ops, CORE_ADDR match, CORE_ADDR *valp) argument
165 *valp = val;
121 target_auxv_parse(struct target_ops *ops, char **readptr, char *endptr, CORE_ADDR *typep, CORE_ADDR *valp) argument
/freebsd-10-stable/contrib/sendmail/libsm/
H A Dsyslogio.c162 ** valp -- information content being set to
173 sm_syslogsetinfo(fp, what, valp)
176 void *valp;
181 fp->f_ival = *((int *)(valp));
195 ** valp -- location to placed queried information
202 ** Fills in 'valp' with data.
206 sm_sysloggetinfo(fp, what, valp)
209 void *valp;
214 *((int *)(valp)) = fp->f_ival;
H A Dfindfp.c272 ** valp -- structure to obtain info from
283 sm_io_setinfo(fp, what, valp)
286 void *valp;
288 SM_FILE_T *v = (SM_FILE_T *) valp;
312 fp->f_timeout = *((int *)valp);
323 return (*fp->f_setinfo)(fp, what, valp);
343 ** valp -- structure to place obtained info into
347 ** - when valp==NULL and request expects otherwise
356 sm_io_getinfo(fp, what, valp)
359 void *valp;
[all...]
H A Dsmstdio.c242 ** valp -- memory location of info to set
251 sm_stdiosetinfo(fp, what, valp)
254 void *valp;
271 ** valp -- memory location to place info
280 sm_stdiogetinfo(fp, what, valp)
283 void *valp;
H A Dstrio.c395 ** valp -- location to data for doing set
403 sm_strsetinfo(fp, what, valp)
406 void *valp;
411 return sm_strsetmode(fp, (int *) valp);
426 ** valp -- location to return information in
434 sm_strgetinfo(fp, what, valp)
437 void *valp;
442 return sm_strgetmode(fp, (int *) valp);
H A Dstdio.c295 ** valp -- location of data used for setting
303 sm_stdsetinfo(fp, what, valp)
306 void *valp;
311 return sm_stdsetmode(fp, (const int *)valp);
325 ** valp -- location to place found info
328 ** Success: may or may not place info in 'valp' depending
335 sm_stdgetinfo(fp, what, valp)
338 void *valp;
343 return sm_stdgetmode(fp, (int *)valp);
/freebsd-10-stable/crypto/openssh/
H A Dsshbuf-getput-basic.c45 sshbuf_get_u64(struct sshbuf *buf, u_int64_t *valp) argument
52 if (valp != NULL)
53 *valp = PEEK_U64(p);
58 sshbuf_get_u32(struct sshbuf *buf, u_int32_t *valp) argument
65 if (valp != NULL)
66 *valp = PEEK_U32(p);
71 sshbuf_get_u16(struct sshbuf *buf, u_int16_t *valp) argument
78 if (valp != NULL)
79 *valp = PEEK_U16(p);
84 sshbuf_get_u8(struct sshbuf *buf, u_char *valp) argument
97 sshbuf_get_string(struct sshbuf *buf, u_char **valp, size_t *lenp) argument
124 sshbuf_get_string_direct(struct sshbuf *buf, const u_char **valp, size_t *lenp) argument
150 sshbuf_peek_string_direct(const struct sshbuf *buf, const u_char **valp, size_t *lenp) argument
181 sshbuf_get_cstring(struct sshbuf *buf, char **valp, size_t *lenp) argument
431 sshbuf_get_bignum2_bytes_direct(struct sshbuf *buf, const u_char **valp, size_t *lenp) argument
[all...]
H A Dsshbuf.h171 int sshbuf_get_u64(struct sshbuf *buf, u_int64_t *valp);
172 int sshbuf_get_u32(struct sshbuf *buf, u_int32_t *valp);
173 int sshbuf_get_u16(struct sshbuf *buf, u_int16_t *valp);
174 int sshbuf_get_u8(struct sshbuf *buf, u_char *valp);
183 * Caller must free *valp.
185 int sshbuf_get_string(struct sshbuf *buf, u_char **valp, size_t *lenp);
186 int sshbuf_get_cstring(struct sshbuf *buf, char **valp, size_t *lenp);
197 int sshbuf_get_string_direct(struct sshbuf *buf, const u_char **valp,
204 int sshbuf_peek_string_direct(const struct sshbuf *buf, const u_char **valp,
213 const u_char **valp, size_
[all...]
H A Dpacket.h179 int sshpkt_get(struct ssh *ssh, void *valp, size_t len);
180 int sshpkt_get_u8(struct ssh *ssh, u_char *valp);
181 int sshpkt_get_u32(struct ssh *ssh, u_int32_t *valp);
182 int sshpkt_get_u64(struct ssh *ssh, u_int64_t *valp);
183 int sshpkt_get_string(struct ssh *ssh, u_char **valp, size_t *lenp);
184 int sshpkt_get_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp);
185 int sshpkt_get_cstring(struct ssh *ssh, char **valp, size_t *lenp);
/freebsd-10-stable/contrib/bsnmp/snmpd/
H A Dexport.c58 ssize_t req_size, u_char **valp)
63 ctx->scratch->ptr1 = *valp;
65 if ((*valp = malloc(value->v.octetstring.len + 1)) == NULL) {
66 *valp = ctx->scratch->ptr1;
70 memcpy(*valp, value->v.octetstring.octets, value->v.octetstring.len);
71 (*valp)[value->v.octetstring.len] = '\0';
89 string_rollback(struct snmp_context *ctx, u_char **valp) argument
91 free(*valp);
92 *valp = ctx->scratch->ptr1;
158 ip_save(struct snmp_value *value, struct snmp_context *ctx, u_char *valp) argument
57 string_save(struct snmp_value *value, struct snmp_context *ctx, ssize_t req_size, u_char **valp) argument
175 ip_rollback(struct snmp_context *ctx, u_char *valp) argument
195 ip_get(struct snmp_value *value, u_char *valp) argument
[all...]
/freebsd-10-stable/lib/libdwarf/
H A Ddwarf_attrval.c83 dwarf_attrval_flag(Dwarf_Die die, uint64_t attr, Dwarf_Bool *valp, Dwarf_Error *err) argument
91 if (die == NULL || valp == NULL) {
96 *valp = 0;
105 *valp = (Dwarf_Bool) av->u[0].u64;
161 dwarf_attrval_signed(Dwarf_Die die, uint64_t attr, Dwarf_Signed *valp, Dwarf_Error *err) argument
169 if (die == NULL || valp == NULL) {
174 *valp = 0;
183 *valp = av->u[0].s64;
198 dwarf_attrval_unsigned(Dwarf_Die die, uint64_t attr, Dwarf_Unsigned *valp, Dwarf_Error *err) argument
206 if (die == NULL || valp
[all...]
/freebsd-10-stable/sys/contrib/ia64/libuwx/src/
H A Duwx_context.c57 int uwx_get_reg(struct uwx_env *env, int regid, uint64_t *valp) argument
73 *valp = env->context.special[regid];
79 *valp = env->context.special[regid];
84 *valp = env->context.gr[regid - UWX_REG_GR(4)];
98 n = (*env->copyin)(UWX_COPYIN_RSTACK, (char *)valp,
104 *valp = 0;
108 *valp = env->context.br[regid - UWX_REG_BR(1)];
111 valp[0] = env->context.fr[regid - UWX_REG_FR(2)].part0;
112 valp[1] = env->context.fr[regid - UWX_REG_FR(2)].part1;
116 valp[
[all...]
H A Duwx_bstream.c107 int uwx_get_uleb128(struct uwx_bstream *bstream, uint64_t *valp) argument
128 *valp = val;
133 int uwx_get_uleb128_alt(struct uwx_bstream *bstream, uint64_t *valp)
178 *valp = val;
H A Duwx.h154 uint64_t *valp); /* register value (out) */
361 int set_fr(int regid, uint64_t *valp) { argument
362 return uwx_set_fr(env, regid, valp);
390 int get_reg(int regid, uint64_t *valp) { argument
391 return uwx_get_reg(env, regid, valp);
/freebsd-10-stable/sys/arm/arm/
H A Ddb_interface.c104 db_access_und_sp(struct db_variable *vp, db_expr_t *valp, int rw) argument
108 *valp = get_stackptr(PSR_UND32_MODE);
115 db_access_abt_sp(struct db_variable *vp, db_expr_t *valp, int rw) argument
119 *valp = get_stackptr(PSR_ABT32_MODE);
126 db_access_irq_sp(struct db_variable *vp, db_expr_t *valp, int rw) argument
130 *valp = get_stackptr(PSR_IRQ32_MODE);
136 int db_frame(struct db_variable *vp, db_expr_t *valp, int rw) argument
145 *valp = *reg;
147 *reg = *valp;
/freebsd-10-stable/sys/fs/nfs/
H A Dnfsclstate.h341 uint8_t *valp; local
345 valp = (uint8_t *)&ndi->nfsdi_data[ndi->nfsdi_addrcnt];
346 valp += pos;
347 return ((int)*valp);
356 uint8_t *valp; local
360 valp = (uint8_t *)&ndi->nfsdi_data[ndi->nfsdi_addrcnt];
361 valp += pos;
362 *valp = val;
/freebsd-10-stable/sys/ddb/
H A Ddb_main.c152 db_expr_t *valp)
160 if (valp != NULL)
161 *valp = (db_expr_t)lval.value;
166 if (valp != NULL)
167 *valp = (db_expr_t)((const Elf_Sym *)sym)->st_value;
151 X_db_symbol_values(db_symtab_t *symtab, c_db_sym_t sym, const char **namep, db_expr_t *valp) argument
/freebsd-10-stable/contrib/telnet/telnetd/
H A Dsys_term.c199 * spcset(func, valp, valpp)
202 * sets *valp to the current value of that character, and
211 spcset(int func, cc_t *valp, cc_t **valpp) argument
215 *valp = termbuf.tc.t_eofc;
219 *valp = termbuf.sg.sg_erase;
223 *valp = termbuf.sg.sg_kill;
227 *valp = termbuf.tc.t_intrc;
231 *valp = termbuf.tc.t_quitc;
235 *valp = termbuf.tc.t_startc;
239 *valp
289 spcset(int func, cc_t *valp, cc_t **valpp) argument
[all...]
/freebsd-10-stable/usr.bin/unifdef/
H A Dunifdef.c950 eval_unary(const struct ops *ops, long *valp, const char **cpp) argument
962 lt = eval_unary(ops, valp, &cp);
966 *valp = !*valp;
967 lt = *valp ? LT_TRUE : LT_FALSE;
972 lt = eval_table(eval_ops, valp, &cp);
980 *valp = strtol(cp, &ep, 0);
983 lt = *valp ? LT_TRUE : LT_FALSE;
1004 *valp = (value[sym] != NULL);
1005 lt = *valp
1039 eval_table(const struct ops *ops, long *valp, const char **cpp) argument
[all...]
/freebsd-10-stable/contrib/nvi/vi/
H A Dv_init.c116 v_optchange(SCR *sp, int offset, char *str, u_long *valp) argument
126 return (vs_crel(sp, *valp));
/freebsd-10-stable/contrib/amd/libamu/
H A Dmtab.c158 * valp (argument won't be touched if no value is set, for example due to an
167 hasmntvalerr(mntent_t *mnt, char *opt, int *valp) argument
200 *valp = (int) i; /* set good value */
/freebsd-10-stable/sys/geom/eli/
H A Dg_eli_ctl.c488 intmax_t *valp; local
517 valp = gctl_get_paraml(req, "keyno", sizeof(*valp));
518 if (valp == NULL) {
522 if (*valp != -1)
523 nkey = *valp;
531 valp = gctl_get_paraml(req, "iterations", sizeof(*valp));
532 if (valp == NULL) {
537 if (*valp !
597 intmax_t *valp; local
[all...]
/freebsd-10-stable/sys/dev/aic7xxx/
H A Daic79xx_osm.h174 #define ahd_outsb(ahd, port, valp, count) \
177 (port & 0xFF), valp, count)
179 #define ahd_insb(ahd, port, valp, count) \
182 (port & 0xFF), valp, count)

Completed in 244 milliseconds

1234