Searched refs:outval (Results 1 - 10 of 10) sorted by relevance

/netbsd-6-1-5-RELEASE/lib/libc/yp/
H A Dyp_first.c51 yp_first(indomain, inmap, outkey, outkeylen, outval, outvallen)
56 char **outval; variable
65 outval == NULL || outvallen == NULL)
67 *outkey = *outval = NULL;
104 if ((*outval = malloc((size_t)(*outvallen + 1))) == NULL)
107 (void)memcpy(*outval, yprkv.valdat.dptr,
109 (*outval)[*outvallen] = '\0';
119 if (*outval) {
120 free(*outval); variable
121 *outval
[all...]
H A Dyp_match.c178 yp_match(indomain, inmap, inkey, inkeylen, outval, outvallen)
183 char **outval;
191 if (outval == NULL || outvallen == NULL)
193 *outval = NULL;
212 if ((*outval = malloc((size_t)(*outvallen + 1))) == NULL)
214 (void)memcpy(*outval, yprv.valdat.dptr, (size_t)*outvallen);
215 (*outval)[*outvallen] = '\0';
241 if ((*outval = malloc((size_t)(*outvallen + 1))) == NULL)
243 (void)memcpy(*outval, yprv.valdat.dptr, (size_t)*outvallen);
244 (*outval)[*outvalle
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/ypserv/common/
H A Dyplib_host.h33 const char *inkey, int inkeylen, char **outval,
36 char **outkey, int *outkeylen, char **outval,
40 int *outkeylen, char **outval, int *outvallen);
H A Dyplib_host.c128 int inkeylen, char **outval, int *outvallen)
134 *outval = NULL;
151 *outval = (char *)malloc(*outvallen+1);
152 memcpy(*outval, yprv.valdat.dptr, *outvallen);
153 (*outval)[*outvallen] = '\0';
161 int *outkeylen, char **outval, int *outvallen)
167 *outkey = *outval = NULL;
185 *outval = (char *)malloc(*outvallen+1);
186 memcpy(*outval, yprkv.valdat.dptr, *outvallen);
187 (*outval)[*outvalle
127 yp_match_host(CLIENT *client, char *indomain, char *inmap, const char *inkey, int inkeylen, char **outval, int *outvallen) argument
160 yp_first_host(CLIENT *client, char *indomain, char *inmap, char **outkey, int *outkeylen, char **outval, int *outvallen) argument
194 yp_next_host(CLIENT *client, char *indomain, char *inmap, char *inkey, int inkeylen, char **outkey, int *outkeylen, char **outval, int *outvallen) argument
[all...]
/netbsd-6-1-5-RELEASE/distrib/utils/libhack/
H A Dyplib.c173 yp_match(indomain, inmap, inkey, inkeylen, outval, outvallen)
178 char **outval;
181 *outval = NULL;
188 yp_first(indomain, inmap, outkey, outkeylen, outval, outvallen)
193 char **outval;
197 *outkey = *outval = NULL;
204 yp_next(indomain, inmap, inkey, inkeylen, outkey, outkeylen, outval, outvallen)
211 char **outval;
214 *outkey = *outval = NULL;
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/amd/
H A Dinfo_nis.c405 char *outkey, *outval; local
412 i = yp_first(indomain, inmap, &outkey, &outkeylen, &outval, &outvallen);
420 outval,
428 * outval must be freed *before* calling yp_next again, outkey can be
432 XFREE(outval);
441 &outval,
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/ntpd/
H A Drefclock_ripencc.c1292 short outval; local
1295 optr = (unsigned char*)&outval + 1;
1298 return outval;
1307 unsigned short outval; local
1310 optr = (unsigned char*)&outval + 1;
1313 return outval;
1321 long outval; local
1324 optr = (unsigned char*)&outval + 3;
1329 return outval;
1337 unsigned long outval; local
1354 float outval; local
1370 double outval; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dvalarith.c684 struct value *outval = NULL;
747 outval = value_string (ptr, count * inval2len, char_type);
792 outval = value_string (ptr, inval1len + inval2len, char_type);
811 return (outval);
681 struct value *outval = NULL; local
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/arm/
H A Darm.c6907 rtx outval = operands[1];
6944 if (reg_overlap_mentioned_p (base_plus, outval))
6946 /* Updating base_plus might destroy outval, see if we can
6948 if (!reg_overlap_mentioned_p (scratch, outval))
6959 this should only be necessary if outval is a subreg
6964 emit_insn (gen_movhi (scratch_hi, outval));
6965 outval = scratch_hi;
7003 if (reg_overlap_mentioned_p (base_plus, outval))
7005 /* Updating base_plus might destroy outval, see if we
7007 if (!reg_overlap_mentioned_p (scratch, outval))
6895 rtx outval = operands[1]; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/arm/
H A Darm.c10052 rtx outval = operands[1];
10089 if (reg_overlap_mentioned_p (base_plus, outval))
10091 /* Updating base_plus might destroy outval, see if we can
10093 if (!reg_overlap_mentioned_p (scratch, outval))
10104 this should only be necessary if outval is a subreg
10109 emit_insn (gen_movhi (scratch_hi, outval));
10110 outval = scratch_hi;
10148 if (reg_overlap_mentioned_p (base_plus, outval))
10150 /* Updating base_plus might destroy outval, see if we
10152 if (!reg_overlap_mentioned_p (scratch, outval))
10038 rtx outval = operands[1]; local
[all...]

Completed in 242 milliseconds