Lines Matching refs:currentvalpos
706 size_t vallen = 0, currentvalpos;
722 currentvalpos = 0;
723 memcpy(val + currentvalpos, (unsigned char *)label, llen);
724 currentvalpos += llen;
725 memcpy(val + currentvalpos, s->s3.client_random, SSL3_RANDOM_SIZE);
726 currentvalpos += SSL3_RANDOM_SIZE;
727 memcpy(val + currentvalpos, s->s3.server_random, SSL3_RANDOM_SIZE);
728 currentvalpos += SSL3_RANDOM_SIZE;
731 val[currentvalpos] = (contextlen >> 8) & 0xff;
732 currentvalpos++;
733 val[currentvalpos] = contextlen & 0xff;
734 currentvalpos++;
736 memcpy(val + currentvalpos, context, contextlen);