Searched defs:outmax (Results 1 - 5 of 5) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/efiemu/
H A Dpnvram.c62 unescape (char *in, char *out, char *outmax, int *len) argument
66 for (ptr = in; *ptr && dptr < outmax; )
79 if (dptr == outmax)
/osnet-11/usr/src/lib/libsasl/lib/
H A Dsaslutil.c115 * outmax -- max size of output buffer
123 char *_out, unsigned outmax, unsigned *outlen)
144 if (outmax <= olen)
179 * outmax -- max size of output buffer
190 char *out, unsigned outmax, unsigned *outlen)
218 if(++len >= outmax) return SASL_BUFOVER;
221 if(++len >= outmax) return SASL_BUFOVER;
224 if(++len >= outmax) return SASL_BUFOVER;
122 sasl_encode64(const char *_in, unsigned inlen, char *_out, unsigned outmax, unsigned *outlen) argument
189 sasl_decode64(const char *in, unsigned inlen, char *out, unsigned outmax, unsigned *outlen) argument
H A Dauxprop.c509 * outmax -- maximum length of output buffer including NUL terminator
514 char *outbuf, unsigned outmax, unsigned *outlen)
529 if(!outmax) return (needed + 1); /* Because of unsigned funkiness */
530 if(needed > (outmax - 1)) return (needed - (outmax - 1));
513 prop_format(struct propctx *ctx, const char *sep, int seplen, char *outbuf, unsigned outmax, unsigned *outlen) argument
/osnet-11/usr/src/lib/libcmd/common/
H A Djoin.c220 int* outmax; local
225 outmax = outptr + NFIELD;
247 if (outptr >= outmax)
252 outmax = jp->outlist + nfield;
278 if (outptr >= outmax)
283 outmax = jp->outlist + nfield;
/osnet-11/usr/src/lib/libscf/common/
H A Dlowlevel.c7979 * outmax - Size of the buffer at output.
7990 scf_encode32(const char *input, size_t inlen, char *output, size_t outmax, argument
8005 if (olen > outmax)
8108 if (olen < outmax)
8139 * outmax - Size of the buffer at outbuf.
8150 scf_decode32(const char *in, size_t inlen, char *outbuf, size_t outmax, argument
8153 char *bufend = outbuf + outmax;

Completed in 60 milliseconds