Lines Matching defs:tmp
580 unsigned char *tmp;
584 tmp = mpi_get_buffer(a, &n, NULL);
585 if (!tmp)
589 twocompl(tmp, n);
590 if (!(*tmp & 0x80)) {
595 } else if (n && (*tmp & 0x80)) {
606 kfree(tmp);
616 memcpy(s, tmp, n-!!extra);
618 kfree(tmp);
632 unsigned char *tmp;
634 tmp = mpi_get_buffer(a, &n, NULL);
635 if (!tmp)
637 memcpy(buffer, tmp, n);
638 kfree(tmp);
653 unsigned char *tmp;
659 tmp = mpi_get_buffer(a, &n, NULL);
660 if (!tmp)
662 memcpy(s+2, tmp, n);
663 kfree(tmp);
668 unsigned char *tmp;
672 tmp = mpi_get_buffer(a, &n, NULL);
673 if (!tmp)
677 twocompl(tmp, n);
678 if (!(*tmp & 0x80)) {
683 } else if (n && (*tmp & 0x80)) {
689 kfree(tmp);
704 memcpy(s, tmp, n-!!extra);
706 kfree(tmp);
710 unsigned char *tmp;
715 tmp = mpi_get_buffer(a, &n, NULL);
716 if (!tmp)
718 if (!n || (*tmp & 0x80))
722 kfree(tmp);
736 unsigned int c = tmp[i];
747 kfree(tmp);