Searched refs:buf2 (Results 1 - 25 of 78) sorted by relevance

1234

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A Dtool_homedir.c42 char buf1[1024], buf2[1024]; local
54 /* buf2 == variable if not expanded */
55 rc = ExpandEnvironmentStrings (variable, buf2, sizeof(buf2));
56 if(rc > 0 && rc < sizeof(buf2) &&
57 !strchr(buf2,'%')) /* no vars still unexpanded */
58 env = buf2;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/maurice/
H A Dexample2.c32 char *buf2; local
56 buf2 = malloc(EVP_PKEY_size(pubKey));
66 RSA_private_decrypt(len, buf, buf2, privKey->pkey.rsa,RSA_PKCS1_PADDING);
68 printf("%s\n", buf2);
73 free(buf2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/err/
H A Derr_prn.c71 char buf2[4096]; local
80 BIO_snprintf(buf2, sizeof(buf2), "%lu:%s:%s:%d:%s\n", es, buf,
82 cb(buf2, strlen(buf2), u);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/err/
H A Derr_prn.c71 char buf2[4096]; local
80 BIO_snprintf(buf2, sizeof(buf2), "%lu:%s:%s:%d:%s\n", es, buf,
82 cb(buf2, strlen(buf2), u);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/maurice/
H A Dexample2.c32 char *buf2; local
56 buf2 = malloc(EVP_PKEY_size(pubKey));
66 RSA_private_decrypt(len, buf, buf2, privKey->pkey.rsa,RSA_PKCS1_PADDING);
68 printf("%s\n", buf2);
73 free(buf2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/tunala/
H A Dcb.c64 char buf2[256]; /* Used for the issuer name */ local
75 buf1[0] = buf2[0] = '\0';
78 /* Fill buf2 */
79 X509_NAME_oneline(X509_get_issuer_name(ctx->current_cert), buf2, 256);
108 fprintf(fp_cb_ssl_verify, "--> issuer = %s\n", buf2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/tunala/
H A Dcb.c64 char buf2[256]; /* Used for the issuer name */ local
75 buf1[0] = buf2[0] = '\0';
78 /* Fill buf2 */
79 X509_NAME_oneline(X509_get_issuer_name(ctx->current_cert), buf2, 256);
108 fprintf(fp_cb_ssl_verify, "--> issuer = %s\n", buf2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/vhook/
H A Dppm.c202 char *buf2; member in struct:__anon755
310 av_free( ci->buf2 );
311 ci->buf2 = av_malloc(size);
313 err = ci->buf2 == NULL;
318 avpicture_fill(&picture2, ci->buf2, PIX_FMT_RGB24, out_width, out_height);
368 av_free( ci->buf2 );
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dsnprintf.c894 char buf2[1024]; local
954 sprintf (buf2, fp_fmt[x], fp_nums[y]);
955 if (strcmp (buf1, buf2)) {
957 fp_fmt[x], buf1, buf2);
972 sprintf (buf2, int_fmt[x], int_nums[y]);
973 if (strcmp (buf1, buf2)) {
975 int_fmt[x], buf1, buf2);
990 sprintf (buf2, str_fmt[x], str_vals[y]);
991 if (strcmp (buf1, buf2)) {
993 str_fmt[x], buf1, buf2);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/lib/
H A Dclear_user.S26 #define buf2 r17 define
124 adds buf2=8,buf // setup second base pointer
149 st8 [buf2]=r0,16
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dlocalcharset.c153 char buf2[50+1]; local
173 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
176 l2 = strlen (buf2);
197 strcpy (res_ptr + res_size - (l2 + 1), buf2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Dlocalcharset.c154 char buf2[50+1]; local
174 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
177 l2 = strlen (buf2);
198 strcpy (res_ptr + res_size - (l2 + 1), buf2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/dsa/
H A Ddsa_gen.c93 unsigned char buf[SHA_DIGEST_LENGTH],buf2[SHA_DIGEST_LENGTH]; local
155 memcpy(buf2,seed,SHA_DIGEST_LENGTH);
165 EVP_Digest(buf,SHA_DIGEST_LENGTH,buf2,NULL,HASH, NULL);
167 md[i]^=buf2[i];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/dsa/
H A Ddsa_gen.c107 unsigned char buf[SHA_DIGEST_LENGTH],buf2[SHA_DIGEST_LENGTH]; local
166 memcpy(buf2,seed,SHA_DIGEST_LENGTH);
176 EVP_Digest(buf,SHA_DIGEST_LENGTH,buf2,NULL,HASH, NULL);
178 md[i]^=buf2[i];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dlocalcharset.c153 char buf2[50+1]; local
173 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
176 l2 = strlen (buf2);
197 strcpy (res_ptr + res_size - (l2 + 1), buf2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dlocalcharset.c153 char buf2[50+1]; local
173 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
176 l2 = strlen (buf2);
197 strcpy (res_ptr + res_size - (l2 + 1), buf2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/libcharset/lib/
H A Dlocalcharset.c160 char buf2[50+1]; local
180 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
183 l2 = strlen (buf2);
204 strcpy (res_ptr + res_size - (l2 + 1), buf2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Draw.c537 uint8_t *buf, *buf2, *end; local
547 buf2 = buf;
549 for(frames = 0; buf2 < end; frames++) {
550 init_get_bits(&gbc, buf2, 54);
553 if(buf2 + hdr.frame_size > end ||
554 av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, buf2 + 2, hdr.frame_size - 2))
558 buf2 += hdr.frame_size;
592 uint8_t *buf2; local
601 for(; buf < end; buf= buf2+1) {
602 buf2
[all...]
H A Dyuv4mpeg.c96 char buf2[Y4M_LINE_MAX+1]; local
105 if (yuv4_generate_header(s, buf2) < 0) {
109 put_buffer(pb, buf2, strlen(buf2));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/
H A Dv4l1-compat.c298 struct v4l2_buffer buf2; local
895 memset(&buf2,0,sizeof(buf2));
920 buf2.index = mm->frame;
921 buf2.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
922 err = drv(inode, file, VIDIOC_QUERYBUF, &buf2);
927 err = drv(inode, file, VIDIOC_QBUF, &buf2);
941 memset(&buf2,0,sizeof(buf2));
942 buf2
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/fips/dsa/
H A Dfips_dsa_gen.c117 unsigned char buf[SHA_DIGEST_LENGTH],buf2[SHA_DIGEST_LENGTH]; local
187 memcpy(buf2,seed,SHA_DIGEST_LENGTH);
197 EVP_Digest(buf,SHA_DIGEST_LENGTH,buf2,NULL,HASH, NULL);
199 md[i]^=buf2[i];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/asn1/
H A Dasn1_lib.c416 char buf1[DECIMAL_SIZE(address)+1],buf2[DECIMAL_SIZE(offset)+1]; local
419 BIO_snprintf(buf2,sizeof buf2,"%d",offset);
420 ERR_add_error_data(4,"address=",buf1," offset=",buf2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/asn1/
H A Dasn1_lib.c445 char buf1[DECIMAL_SIZE(address)+1],buf2[DECIMAL_SIZE(offset)+1]; local
448 BIO_snprintf(buf2,sizeof buf2,"%d",offset);
449 ERR_add_error_data(4,"address=",buf1," offset=",buf2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dcrc32.c456 unsigned char buf2[SIZE + 4]; local
465 random_garbage(buf2, i);
467 buf3[j] = buf1[j] ^ buf2[j];
470 crc2 = test_step(INIT2, buf2, i);
471 /* Now check that CRC(buf1 ^ buf2) = CRC(buf1) ^ CRC(buf2) */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/rc2/
H A Drc2test.c146 unsigned char buf[8],buf2[8]; local
167 RC2_ecb_encrypt(buf,buf2,&key,RC2_DECRYPT);
168 if (memcmp(&(RC2plain[n][0]),buf2,8) != 0)

Completed in 232 milliseconds

1234