strm              614 ompi/mca/pml/ob1/pml_ob1_recvfrag.c         void *strm = mca_common_cuda_get_dtoh_stream();
strm              615 ompi/mca/pml/ob1/pml_ob1_recvfrag.c         opal_cuda_set_copy_function_async(&sendreq->req_send.req_base.req_convertor, strm);
strm              866 ompi/mca/pml/ob1/pml_ob1_recvreq.c         void *strm = mca_common_cuda_get_htod_stream();
strm              867 ompi/mca/pml/ob1/pml_ob1_recvreq.c         opal_cuda_set_copy_function_async(&recvreq->req_recv.req_base.req_convertor, strm);
strm               58 opal/mca/compress/zlib/compress_zlib.c     z_stream strm;
strm               73 opal/mca/compress/zlib/compress_zlib.c     memset (&strm, 0, sizeof (strm));
strm               74 opal/mca/compress/zlib/compress_zlib.c     deflateInit (&strm, 9);
strm               77 opal/mca/compress/zlib/compress_zlib.c     len = deflateBound(&strm, inlen);
strm               81 opal/mca/compress/zlib/compress_zlib.c     strm.next_in = inbytes;
strm               82 opal/mca/compress/zlib/compress_zlib.c     strm.avail_in = inlen;
strm               86 opal/mca/compress/zlib/compress_zlib.c     strm.avail_out = len;
strm               87 opal/mca/compress/zlib/compress_zlib.c     strm.next_out = tmp;
strm               89 opal/mca/compress/zlib/compress_zlib.c     deflate (&strm, Z_FINISH);
strm               90 opal/mca/compress/zlib/compress_zlib.c     deflateEnd (&strm);
strm               93 opal/mca/compress/zlib/compress_zlib.c     *olen = len - strm.avail_out;
strm              103 opal/mca/compress/zlib/compress_zlib.c     z_stream strm;
strm              115 opal/mca/compress/zlib/compress_zlib.c     memset (&strm, 0, sizeof (strm));
strm              116 opal/mca/compress/zlib/compress_zlib.c     if (Z_OK != inflateInit(&strm)) {
strm              120 opal/mca/compress/zlib/compress_zlib.c     strm.avail_in = len;
strm              121 opal/mca/compress/zlib/compress_zlib.c     strm.next_in = inbytes;
strm              122 opal/mca/compress/zlib/compress_zlib.c     strm.avail_out = olen;
strm              123 opal/mca/compress/zlib/compress_zlib.c     strm.next_out = dest;
strm              125 opal/mca/compress/zlib/compress_zlib.c     if (Z_STREAM_END != inflate (&strm, Z_FINISH)) {
strm              126 opal/mca/compress/zlib/compress_zlib.c         opal_output(0, "\tDECOMPRESS FAILED: %s", strm.msg);
strm              128 opal/mca/compress/zlib/compress_zlib.c     inflateEnd (&strm);
strm               56 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     z_stream strm;
strm               66 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     memset (&strm, 0, sizeof (strm));
strm               67 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     deflateInit (&strm, 9);
strm               70 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     len = deflateBound(&strm, inlen);
strm               75 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     strm.next_in = (uint8_t*)instring;
strm               76 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     strm.avail_in = strlen(instring);
strm               80 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     strm.avail_out = len;
strm               81 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     strm.next_out = tmp;
strm               83 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     deflate (&strm, Z_FINISH);
strm               84 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     deflateEnd (&strm);
strm               89 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     outlen = len - strm.avail_out + sizeof(uint32_t);
strm              115 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     z_stream strm;
strm              135 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     memset (&strm, 0, sizeof (strm));
strm              136 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     if (Z_OK != inflateInit(&strm)) {
strm              140 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     strm.avail_in = len;
strm              141 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     strm.next_in = (uint8_t*)(inbytes + sizeof(uint32_t));
strm              142 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     strm.avail_out = len2;
strm              143 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     strm.next_out = (uint8_t*)dest;
strm              145 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     rc = inflate (&strm, Z_FINISH);
strm              146 opal/mca/pmix/pmix4x/pmix/src/mca/pcompress/zlib/compress_zlib.c     inflateEnd (&strm);