Home | History | Annotate | Download | only in rand

Lines Matching defs:out

35  *    The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
185 FILE *out = NULL;
214 out = fdopen(fd, "wb");
238 out = vms_fopen(file,"rb+",VMS_OPEN_ATTRS);
239 if (out == NULL)
240 out = vms_fopen(file,"wb",VMS_OPEN_ATTRS);
242 if (out == NULL)
243 out = fopen(file,"wb");
245 if (out == NULL) goto err;
257 i=fwrite(buf,1,i,out);
267 fclose(out);