Lines Matching refs:tmpbuf
700 unsigned char *tmpbuf;
703 tmpbuf = OPENSSL_malloc(inl);
706 if (tmpbuf == NULL && inl > 0)
710 if (tmpbuf != NULL)
711 memcpy(tmpbuf, in, inl);
717 if (tmpbuf != NULL)
718 memcpy(out, tmpbuf, inl);
719 OPENSSL_free(tmpbuf);
734 unsigned char *tmpbuf = OPENSSL_malloc(inl);
737 if (tmpbuf == NULL && inl > 0)
741 if (tmpbuf != NULL)
742 memcpy(tmpbuf, in, inl);
748 if (tmpbuf != NULL && out != NULL)
749 memcpy(out, tmpbuf, inl);
750 OPENSSL_free(tmpbuf);