Searched refs:resp (Results 1 - 2 of 2) sorted by relevance

/xnu-2782.1.97/osfmk/prng/YarrowCoreLib/src/
H A Dcomp.c149 int resp; local
165 resp = compress(outbuf,&outsize,inbuf,insize);
166 if(resp==Z_MEM_ERROR) {return COMP_ERR_LOW_MEMORY;}
167 if(resp==Z_BUF_ERROR) {return COMP_ERR_LIB;}
H A Dprng.c229 comp_error_status resp; local
287 resp = comp_init((p->comp_state)+i);
288 if(resp!=COMP_SUCCESS) {retval = PRNG_ERR_COMPRESSION; goto cleanup_init;}
503 comp_error_status resp;
522 resp = comp_add_data((p->comp_state)+poolnum,inbuf,inbuflen);
523 if(resp!=COMP_SUCCESS) {return PRNG_ERR_COMPRESSION;}
544 comp_error_status resp;
553 resp = comp_get_ratio((p->comp_state)+i,&ratio);
554 if(resp!=COMP_SUCCESS) {return PRNG_ERR_COMPRESSION;}
567 resp
[all...]

Completed in 20 milliseconds