| /src/crypto/external/bsd/openssl.old/dist/crypto/rand/ |
| rand_egd.c | 65 unsigned char tempbuf[255]; 67 if (bytes > (int)sizeof(tempbuf)) 112 tempbuf[0] = 1; 113 tempbuf[1] = bytes; 114 if (fwrite(tempbuf, sizeof(char), 2, fp) != 2 || fflush(fp) == EOF) 116 if (fread(tempbuf, sizeof(char), 1, fp) != 1 || tempbuf[0] == 0) 118 numbytes = tempbuf[0]; 123 buf = tempbuf; 131 RAND_add(tempbuf, i, i) [all...] |
| /src/sys/arch/hpcmips/stand/pbsdboot/ |
| preference.c | 182 char tempbuf[1024]; local 226 tempbuf[i] = c; 244 tempbuf[i] = '\0'; 245 length = MultiByteToWideChar(CP_ACP,0,tempbuf,-1,identif,0); 246 MultiByteToWideChar(CP_ACP,0,tempbuf,-1,identif,length); 262 tempbuf[i] = c; 270 tempbuf[i] = '\0'; 271 length = MultiByteToWideChar(CP_ACP,0,tempbuf,-1,unidata,0); 272 MultiByteToWideChar(CP_ACP,0,tempbuf,-1,unidata,length); 469 char tempbuf[1024] local [all...] |
| main.c | 698 TCHAR tempbuf[PATHBUFLEN]; local 716 wsprintf(tempbuf, TEXT("%d"), boot_times[i]); 718 0, (LPARAM)tempbuf); 722 wsprintf(tempbuf,TEXT("%d"),pref.boot_time); 723 SetDlgItemText(hWnd,IDC_BOOT_TIME,tempbuf); 726 wsprintf(tempbuf, TEXT("%d"), boot_times[0]); 728 0, (LPARAM)tempbuf); 792 GetDlgItemText(hWnd,IDC_BOOT_TIME,tempbuf,PATHBUFLEN); 793 pref.boot_time = _wtoi(tempbuf);
|
| /src/crypto/external/apache2/openssl/dist/crypto/rand/ |
| rand_egd.c | 112 unsigned char tempbuf[255]; local 117 if (bytes <= 0 || bytes > (int)sizeof(tempbuf)) 185 tempbuf[0] = 1; 186 tempbuf[1] = bytes; 187 if (fwrite(tempbuf, sizeof(char), 2, fp) != 2 || fflush(fp) == EOF) 189 if (fread(tempbuf, sizeof(char), 1, fp) != 1 || tempbuf[0] == 0) 191 numbytes = tempbuf[0]; 193 if (numbytes <= 0 || numbytes > bytes || numbytes > (int)sizeof(tempbuf)) 199 buf = tempbuf; [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/rand/ |
| rand_egd.c | 114 unsigned char tempbuf[255]; local 116 if (bytes > (int)sizeof(tempbuf)) 177 tempbuf[0] = 1; 178 tempbuf[1] = bytes; 179 if (fwrite(tempbuf, sizeof(char), 2, fp) != 2 || fflush(fp) == EOF) 181 if (fread(tempbuf, sizeof(char), 1, fp) != 1 || tempbuf[0] == 0) 183 numbytes = tempbuf[0]; 188 buf = tempbuf; 196 RAND_add(tempbuf, i, i) [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| go-lang.c | 379 auto_obstack tempbuf; 386 obstack_grow_str (&tempbuf, "(*"); 387 obstack_grow_str (&tempbuf, method_type_package_name); 388 obstack_grow_str (&tempbuf, "."); 389 obstack_grow_str (&tempbuf, method_type_object_name); 391 obstack_grow_str (&tempbuf, ")"); 392 obstack_grow_str (&tempbuf, "."); 393 obstack_grow_str (&tempbuf, object_name); 397 obstack_grow_str (&tempbuf, package_name); 398 obstack_grow_str (&tempbuf, ".") [all...] |
| p-exp.y | 1079 static char *tempbuf; 1273 /* Build the gdb internal form of the input string in tempbuf, 1290 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); 1306 tempbuf[tempbufindex++] = c; 1309 tempbuf[tempbufindex++] = *tokptr++; 1317 tempbuf[tempbufindex] = '\0'; /* See note above. */ 1318 yylval.sval.ptr = tempbuf; 1506 tempbuf = (char *) realloc (tempbuf, namelen + 1) [all...] |
| f-exp.y | 1351 static char *tempbuf; /* Current buffer contents */ 1376 if (tempbuf == NULL) 1377 tempbuf = (char *) malloc (tempbufsize); 1379 tempbuf = (char *) realloc (tempbuf, tempbufsize); 1406 tempbuf[tempbufindex++] = *tokptr; 1413 tempbuf[tempbufindex] = '\0'; 1414 yylval.sval.ptr = tempbuf;
|
| d-exp.y | 859 static struct obstack tempbuf; 875 /* Build the gdb internal form of the input string in tempbuf. Note 887 obstack_free (&tempbuf, NULL); 888 obstack_init (&tempbuf); 902 *host_chars += c_parse_escape (&tokptr, &tempbuf); 908 obstack_1grow (&tempbuf, c); 933 value->ptr = (char *) obstack_base (&tempbuf); 934 value->length = obstack_object_size (&tempbuf);
|
| go-exp.y | 824 static struct obstack tempbuf; 840 /* Build the gdb internal form of the input string in tempbuf. Note 852 obstack_free (&tempbuf, NULL); 853 obstack_init (&tempbuf); 867 *host_chars += c_parse_escape (&tokptr, &tempbuf); 873 obstack_1grow (&tempbuf, c); 892 value->ptr = (char *) obstack_base (&tempbuf); 893 value->length = obstack_object_size (&tempbuf);
|
| c-exp.y | 2157 static struct obstack tempbuf; 2339 /* Build the gdb internal form of the input string in tempbuf. Note 2351 obstack_free (&tempbuf, NULL); 2352 obstack_init (&tempbuf); 2394 *host_chars += c_parse_escape (&tokptr, &tempbuf); 2400 obstack_1grow (&tempbuf, c); 2419 value->ptr = (char *) obstack_base (&tempbuf); 2420 value->length = obstack_object_size (&tempbuf);
|
| /src/external/gpl3/gdb/dist/gdb/ |
| go-lang.c | 379 auto_obstack tempbuf; 386 obstack_grow_str (&tempbuf, "(*"); 387 obstack_grow_str (&tempbuf, method_type_package_name); 388 obstack_grow_str (&tempbuf, "."); 389 obstack_grow_str (&tempbuf, method_type_object_name); 391 obstack_grow_str (&tempbuf, ")"); 392 obstack_grow_str (&tempbuf, "."); 393 obstack_grow_str (&tempbuf, object_name); 397 obstack_grow_str (&tempbuf, package_name); 398 obstack_grow_str (&tempbuf, ".") [all...] |
| p-exp.y | 1079 static char *tempbuf; 1273 /* Build the gdb internal form of the input string in tempbuf, 1290 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); 1306 tempbuf[tempbufindex++] = c; 1309 tempbuf[tempbufindex++] = *tokptr++; 1317 tempbuf[tempbufindex] = '\0'; /* See note above. */ 1318 yylval.sval.ptr = tempbuf; 1506 tempbuf = (char *) realloc (tempbuf, namelen + 1) [all...] |
| f-exp.y | 1351 static char *tempbuf; /* Current buffer contents */ 1376 if (tempbuf == NULL) 1377 tempbuf = (char *) malloc (tempbufsize); 1379 tempbuf = (char *) realloc (tempbuf, tempbufsize); 1406 tempbuf[tempbufindex++] = *tokptr; 1413 tempbuf[tempbufindex] = '\0'; 1414 yylval.sval.ptr = tempbuf;
|
| d-exp.y | 859 static struct obstack tempbuf; 875 /* Build the gdb internal form of the input string in tempbuf. Note 887 obstack_free (&tempbuf, NULL); 888 obstack_init (&tempbuf); 902 *host_chars += c_parse_escape (&tokptr, &tempbuf); 908 obstack_1grow (&tempbuf, c); 933 value->ptr = (char *) obstack_base (&tempbuf); 934 value->length = obstack_object_size (&tempbuf);
|
| go-exp.y | 824 static struct obstack tempbuf; 840 /* Build the gdb internal form of the input string in tempbuf. Note 852 obstack_free (&tempbuf, NULL); 853 obstack_init (&tempbuf); 867 *host_chars += c_parse_escape (&tokptr, &tempbuf); 873 obstack_1grow (&tempbuf, c); 892 value->ptr = (char *) obstack_base (&tempbuf); 893 value->length = obstack_object_size (&tempbuf);
|
| c-exp.y | 2157 static struct obstack tempbuf; 2339 /* Build the gdb internal form of the input string in tempbuf. Note 2351 obstack_free (&tempbuf, NULL); 2352 obstack_init (&tempbuf); 2394 *host_chars += c_parse_escape (&tokptr, &tempbuf); 2400 obstack_1grow (&tempbuf, c); 2419 value->ptr = (char *) obstack_base (&tempbuf); 2420 value->length = obstack_object_size (&tempbuf);
|
| /src/external/gpl3/binutils.old/dist/libsframe/ |
| sframe.c | 893 char *tempbuf = NULL; local 928 tempbuf = (char *) malloc (sf_size * sizeof (char)); 929 if (tempbuf == NULL) 931 memcpy (tempbuf, sf_buf, sf_size); 934 sframe_header *ihp = (sframe_header *) tempbuf; 937 if (flip_sframe (tempbuf, sf_size, 0)) 939 free (tempbuf); 942 frame_buf = tempbuf; 946 dctx->sfd_buf = tempbuf; 995 if (foreign_endian && tempbuf != NULL [all...] |
| /src/external/gpl3/gdb.old/dist/libsframe/ |
| sframe.c | 861 char *tempbuf = NULL; local 896 tempbuf = (char *) malloc (sf_size * sizeof (char)); 897 if (tempbuf == NULL) 899 memcpy (tempbuf, sf_buf, sf_size); 902 sframe_header *ihp = (sframe_header *) tempbuf; 905 if (flip_sframe (tempbuf, sf_size, 0)) 907 free (tempbuf); 910 frame_buf = tempbuf; 914 dctx->sfd_buf = tempbuf; 963 if (foreign_endian && tempbuf != NULL [all...] |
| /src/external/gpl3/gdb/dist/libsframe/ |
| sframe.c | 893 char *tempbuf = NULL; local 928 tempbuf = (char *) malloc (sf_size * sizeof (char)); 929 if (tempbuf == NULL) 931 memcpy (tempbuf, sf_buf, sf_size); 934 sframe_header *ihp = (sframe_header *) tempbuf; 937 if (flip_sframe (tempbuf, sf_size, 0)) 939 free (tempbuf); 942 frame_buf = tempbuf; 946 dctx->sfd_buf = tempbuf; 997 if (foreign_endian && tempbuf != NULL [all...] |
| /src/external/ibm-public/postfix/dist/src/dns/ |
| dns_lookup.c | 751 char *tempbuf = temp; local 854 tempbuf = ltemp; 855 data_len = dst - (unsigned char *) tempbuf; 870 tempbuf = (char *) pos; 898 tempbuf = (char *) soa_buf; 903 fixed->ttl, pref, weight, port, tempbuf, data_len);
|
| /src/external/gpl2/rcs/dist/src/ |
| rcsfnms.c | 693 static struct buf tempbuf; local 728 bufscpy(&tempbuf, base); 729 workname = p = tempbuf.string;
|
| /src/external/gpl3/binutils/dist/libsframe/ |
| sframe.c | 1410 char *tempbuf = NULL; local 1445 tempbuf = (char *) malloc (sf_size * sizeof (char)); 1446 if (tempbuf == NULL) 1448 memcpy (tempbuf, sf_buf, sf_size); 1451 if (flip_header (tempbuf, sfp->sfp_version)) 1457 if (flip_sframe (tempbuf, sf_size, 0)) 1463 frame_buf = tempbuf; 1467 dctx->sfd_buf = tempbuf; 1520 if (foreign_endian && tempbuf != NULL) 1521 free (tempbuf); [all...] |
| /src/sys/netinet/ |
| sctp_output.c | 2914 char tempbuf[2048]; local 3007 phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, plen); 3061 if (plen > sizeof(tempbuf)) { 3062 plen = sizeof(tempbuf); 3064 phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, plen);
|