Searched refs:str1 (Results 1 - 25 of 101) sorted by relevance

12345

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/
H A Do_str.c63 int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n) argument
66 while (*str1 && *str2 && n)
68 int res = toupper(*str1) - toupper(*str2);
70 str1++;
76 if (*str1)
85 return strncasecmp(str1, str2, n);
88 int OPENSSL_strcasecmp(const char *str1, const char *str2) argument
91 return OPENSSL_strncasecmp(str1, str2, (size_t)-1);
93 return strcasecmp(str1, str2);
H A Do_str.h64 int OPENSSL_strcasecmp(const char *str1, const char *str2);
65 int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/
H A Do_str.c63 int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n) argument
66 while (*str1 && *str2 && n)
68 int res = toupper(*str1) - toupper(*str2);
70 str1++;
76 if (*str1)
85 return strncasecmp(str1, str2, n);
88 int OPENSSL_strcasecmp(const char *str1, const char *str2) argument
91 return OPENSSL_strncasecmp(str1, str2, (size_t)-1);
93 return strcasecmp(str1, str2);
H A Do_str.h64 int OPENSSL_strcasecmp(const char *str1, const char *str2);
65 int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/pkcs7/
H A Dexample.h57 int get_signed_seq2string(PKCS7_SIGNER_INFO *si, char **str1, char **str2);
H A Dexample.c75 int add_signed_seq2string(PKCS7_SIGNER_INFO *si, char *str1, char *str2) argument
91 ASN1_OCTET_STRING_set(os1,(unsigned char*)str1,strlen(str1));
92 ASN1_OCTET_STRING_set(os2,(unsigned char*)str1,strlen(str1));
115 int get_signed_seq2string(PKCS7_SIGNER_INFO *si, char **str1, char **str2) argument
148 *str1=malloc(os1->length+1);
150 memcpy(*str1,os1->data,os1->length);
152 (*str1)[os1->length]='\0';
238 X509_ATTRIBUTE *add_seq2string(PKCS7_SIGNER_INFO *si, char *str1, cha argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/pkcs7/
H A Dexample.h57 int get_signed_seq2string(PKCS7_SIGNER_INFO *si, char **str1, char **str2);
H A Dexample.c75 int add_signed_seq2string(PKCS7_SIGNER_INFO *si, char *str1, char *str2) argument
91 ASN1_OCTET_STRING_set(os1,(unsigned char*)str1,strlen(str1));
92 ASN1_OCTET_STRING_set(os2,(unsigned char*)str1,strlen(str1));
115 int get_signed_seq2string(PKCS7_SIGNER_INFO *si, char **str1, char **str2) argument
148 *str1=malloc(os1->length+1);
150 memcpy(*str1,os1->data,os1->length);
152 (*str1)[os1->length]='\0';
238 X509_ATTRIBUTE *add_seq2string(PKCS7_SIGNER_INFO *si, char *str1, cha argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/tunala/
H A Dcb.c22 const char *str1, *str2; local
29 str1 = (w & SSL_ST_CONNECT ? "SSL_connect" : (w & SSL_ST_ACCEPT ?
34 fprintf(fp_cb_ssl_info, "(%s) %s\n", str1, str2);
37 fprintf(fp_cb_ssl_info, "(%s) failed in %s\n", str1, str2);
44 fprintf(fp_cb_ssl_info, "%s:error in %s\n", str1, str2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dxmlstring.in.h64 xmlStrcmp (const xmlChar *str1,
67 xmlStrncmp (const xmlChar *str1,
71 xmlStrcasecmp (const xmlChar *str1,
74 xmlStrncasecmp (const xmlChar *str1,
78 xmlStrEqual (const xmlChar *str1,
94 xmlStrncatNew (const xmlChar *str1,
H A Dxmlstring.c123 * @str1: the first xmlChar *
132 xmlStrcmp(const xmlChar *str1, const xmlChar *str2) { argument
135 if (str1 == str2) return(0);
136 if (str1 == NULL) return(-1);
139 tmp = *str1++ - *str2;
147 * @str1: the first xmlChar *
157 xmlStrEqual(const xmlChar *str1, const xmlChar *str2) { argument
158 if (str1 == str2) return(1);
159 if (str1 == NULL) return(0);
162 if (*str1
206 xmlStrncmp(const xmlChar *str1, const xmlChar *str2, int len) argument
271 xmlStrcasecmp(const xmlChar *str1, const xmlChar *str2) argument
296 xmlStrncasecmp(const xmlChar *str1, const xmlChar *str2, int len) argument
483 xmlStrncatNew(const xmlChar *str1, const xmlChar *str2, int len) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/include/libxml/
H A Dxmlstring.h64 xmlStrcmp (const xmlChar *str1,
67 xmlStrncmp (const xmlChar *str1,
71 xmlStrcasecmp (const xmlChar *str1,
74 xmlStrncasecmp (const xmlChar *str1,
78 xmlStrEqual (const xmlChar *str1,
94 xmlStrncatNew (const xmlChar *str1,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dxmlstring.in.h64 xmlStrcmp (const xmlChar *str1,
67 xmlStrncmp (const xmlChar *str1,
71 xmlStrcasecmp (const xmlChar *str1,
74 xmlStrncasecmp (const xmlChar *str1,
78 xmlStrEqual (const xmlChar *str1,
94 xmlStrncatNew (const xmlChar *str1,
H A Dxmlstring.c123 * @str1: the first xmlChar *
132 xmlStrcmp(const xmlChar *str1, const xmlChar *str2) { argument
135 if (str1 == str2) return(0);
136 if (str1 == NULL) return(-1);
139 tmp = *str1++ - *str2;
147 * @str1: the first xmlChar *
157 xmlStrEqual(const xmlChar *str1, const xmlChar *str2) { argument
158 if (str1 == str2) return(1);
159 if (str1 == NULL) return(0);
162 if (*str1
206 xmlStrncmp(const xmlChar *str1, const xmlChar *str2, int len) argument
271 xmlStrcasecmp(const xmlChar *str1, const xmlChar *str2) argument
296 xmlStrncasecmp(const xmlChar *str1, const xmlChar *str2, int len) argument
483 xmlStrncatNew(const xmlChar *str1, const xmlChar *str2, int len) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/
H A Dtestupnpdescgen.c84 const char * str1 = "Prefix123String"; variable
89 printf("str1:'%s' str2:'%s'\n", str1, str2);
90 printf("str1:%p str2:%p str2-str1:%ld\n", str1, str2, (long)(str2-str1));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/
H A Dtestupnpdescgen.c108 const char * str1 = "Prefix123String"; variable
113 printf("str1:'%s' str2:'%s'\n", str1, str2);
114 printf("str1:%p str2:%p str2-str1:%ld\n", str1, str2, (long)(str2-str1));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/
H A Dtestupnpdescgen.c83 const char * str1 = "Prefix123String"; variable
88 printf("str1:'%s' str2:'%s'\n", str1, str2);
89 printf("str1:%p str2:%p str2-str1:%ld\n", str1, str2, (long)(str2-str1));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dgenre.c97 int compare(id3_ucs4_t const *str1, id3_ucs4_t const *str2) argument
101 if (str1 == str2)
106 c1 = translate(*str1++);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dgenre.c97 int compare(id3_ucs4_t const *str1, id3_ucs4_t const *str2) argument
101 if (str1 == str2)
106 c1 = translate(*str1++);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/tunala/
H A Dcb.c22 const char *str1, *str2; local
29 str1 = (w & SSL_ST_CONNECT ? "SSL_connect" : (w & SSL_ST_ACCEPT ?
34 fprintf(fp_cb_ssl_info, "(%s) %s\n", str1, str2);
37 fprintf(fp_cb_ssl_info, "(%s) failed in %s\n", str1, str2);
44 fprintf(fp_cb_ssl_info, "%s:error in %s\n", str1, str2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/udev/extras/scsi_id/
H A Dscsi_id.c263 char *str1; local
318 str1 = strsep(&buf, "=");
319 if (str1 && strcasecmp(str1, "VENDOR") == 0) {
320 str1 = get_value(&buf);
321 if (!str1) {
325 vendor_in = str1;
327 str1 = strsep(&buf, "=");
328 if (str1 && strcasecmp(str1, "MODE
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Dxmlstring.c123 * @str1: the first xmlChar *
132 xmlStrcmp(const xmlChar *str1, const xmlChar *str2) { argument
135 if (str1 == str2) return(0);
136 if (str1 == NULL) return(-1);
139 tmp = *str1++ - *str2;
147 * @str1: the first xmlChar *
157 xmlStrEqual(const xmlChar *str1, const xmlChar *str2) { argument
158 if (str1 == str2) return(1);
159 if (str1 == NULL) return(0);
162 if (*str1
206 xmlStrncmp(const xmlChar *str1, const xmlChar *str2, int len) argument
271 xmlStrcasecmp(const xmlChar *str1, const xmlChar *str2) argument
296 xmlStrncasecmp(const xmlChar *str1, const xmlChar *str2, int len) argument
483 xmlStrncatNew(const xmlChar *str1, const xmlChar *str2, int len) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/iseries/
H A DMakefile13 cmd_dt_strings = $(OBJCOPY) --rename-section .rodata.str1.8=.dt_strings \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/dsa/
H A Ddsatest.c131 static const unsigned char str1[]="12345678901234567890"; variable
211 DSA_sign(0, str1, 20, sig, &siglen, dsa);
212 if (DSA_verify(0, str1, 20, sig, siglen, dsa) == 1)
217 DSA_sign(0, str1, 20, sig, &siglen, dsa);
218 if (DSA_verify(0, str1, 20, sig, siglen, dsa) == 1)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/test/
H A Ddsatest.c131 static const unsigned char str1[]="12345678901234567890"; variable
211 DSA_sign(0, str1, 20, sig, &siglen, dsa);
212 if (DSA_verify(0, str1, 20, sig, siglen, dsa) == 1)
217 DSA_sign(0, str1, 20, sig, &siglen, dsa);
218 if (DSA_verify(0, str1, 20, sig, siglen, dsa) == 1)

Completed in 192 milliseconds

12345