Home
last modified time | relevance | path

Searched refs:tempbuf (Results 1 – 11 of 11) sorted by relevance

/mirbsd/src/lib/libssl/src/crypto/engine/
Dhw_ncipher.c478 char tempbuf[1024]; in get_context() local
481 rmsg.buf = tempbuf; in get_context()
482 rmsg.size = sizeof(tempbuf); in get_context()
770 char tempbuf[1024]; in hwcrhk_load_privkey() local
776 rmsg.buf = tempbuf; in hwcrhk_load_privkey()
777 rmsg.size = sizeof(tempbuf); in hwcrhk_load_privkey()
910 char tempbuf[1024]; in hwcrhk_mod_exp() local
919 rmsg.buf = tempbuf; in hwcrhk_mod_exp()
920 rmsg.size = sizeof(tempbuf); in hwcrhk_mod_exp()
966 char tempbuf[1024]; in hwcrhk_rsa_mod_exp() local
[all …]
/mirbsd/src/lib/libssl/src/crypto/rand/
Drand_egd.c143 unsigned char egdbuf[2], tempbuf[255], *retrievebuf; in RAND_query_egd_bytes() local
246 retrievebuf = tempbuf; in RAND_query_egd_bytes()
276 RAND_seed(tempbuf, egdbuf[0]); in RAND_query_egd_bytes()
/mirbsd/src/gnu/usr.bin/binutils/gdb/
Dp-exp.y1079 static char *tempbuf; in yylex() local
1284 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
1300 tempbuf[tempbufindex++] = c; in yylex()
1303 tempbuf[tempbufindex++] = *tokptr++; in yylex()
1311 tempbuf[tempbufindex] = '\0'; /* See note above */ in yylex()
1312 yylval.sval.ptr = tempbuf; in yylex()
1508 tempbuf = (char *) realloc (tempbuf, namelen + 1); in yylex()
1509 strncpy (tempbuf, tokstart, namelen); tempbuf [namelen] = 0; in yylex()
1510 yylval.sval.ptr = tempbuf; in yylex()
Df-exp.y847 static char *tempbuf; /* Current buffer contents */ variable
873 if (tempbuf == NULL)
874 tempbuf = (char *) malloc (tempbufsize);
876 tempbuf = (char *) realloc (tempbuf, tempbufsize);
903 tempbuf[tempbufindex++] = *tokptr; in match_string_literal()
910 tempbuf[tempbufindex] = '\0'; in match_string_literal()
911 yylval.sval.ptr = tempbuf; in match_string_literal()
Dobjc-exp.y1260 static char *tempbuf; in yylex() local
1480 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
1482 tempbuf[tempbufindex++] = *tokptr++; in yylex()
1488 tempbuf[tempbufindex] = '\0'; in yylex()
1489 yylval.sval.ptr = tempbuf; in yylex()
1523 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
1538 tempbuf[tempbufindex++] = c; in yylex()
1541 tempbuf[tempbufindex++] = *tokptr++; in yylex()
1549 tempbuf[tempbufindex] = '\0'; /* See note above. */ in yylex()
1550 yylval.sval.ptr = tempbuf; in yylex()
Djv-exp.y874 static char *tempbuf; in yylex() local
1071 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
1086 tempbuf[tempbufindex++] = c; in yylex()
1089 tempbuf[tempbufindex++] = *tokptr++; in yylex()
1097 tempbuf[tempbufindex] = '\0'; /* See note above */ in yylex()
1098 yylval.sval.ptr = tempbuf; in yylex()
Dc-exp.y1315 static char *tempbuf; in yylex() local
1553 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
1568 tempbuf[tempbufindex++] = c; in yylex()
1583 tempbuf[tempbufindex++] = c; in yylex()
1591 tempbuf[tempbufindex] = '\0'; /* See note above */ in yylex()
1592 yylval.sval.ptr = tempbuf; in yylex()
Dui-out.c601 struct ui_stream *tempbuf; in ui_out_stream_new() local
603 tempbuf = XMALLOC (struct ui_stream); in ui_out_stream_new()
604 tempbuf->uiout = uiout; in ui_out_stream_new()
605 tempbuf->stream = mem_fileopen (); in ui_out_stream_new()
606 return tempbuf; in ui_out_stream_new()
Dada-lex.l348 tempbuf = xrealloc (tempbuf, tempbufsize);
/mirbsd/src/lib/libkeynote/
Denvironment.c826 char **buf, **tempbuf, *ptr; in kn_read_asserts() local
885 tempbuf = (char **) realloc(buf, 2 * bufsize * in kn_read_asserts()
887 if (tempbuf == (char **) NULL) in kn_read_asserts()
896 buf = tempbuf; in kn_read_asserts()
/mirbsd/src/gnu/usr.bin/rcs/src/
Drcsfnms.c700 static struct buf tempbuf; local
735 bufscpy(&tempbuf, base);
736 workname = p = tempbuf.string;