HomeSort by: relevance | last modified time | path
    Searched defs:tempbuf (Results 1 - 11 of 11) sorted by relevancy

  /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/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/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/external/gpl2/rcs/dist/src/
rcsfnms.c 693 static struct buf tempbuf; local
728 bufscpy(&tempbuf, base);
729 workname = p = tempbuf.string;
  /src/external/ibm-public/postfix/dist/src/dns/
dns_lookup.c 751 char *tempbuf = temp; local
853 tempbuf = ltemp;
854 data_len = dst - (unsigned char *) tempbuf;
869 tempbuf = (char *) pos;
897 tempbuf = (char *) soa_buf;
902 fixed->ttl, pref, weight, port, tempbuf, data_len);
  /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/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/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);

Completed in 34 milliseconds