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

  /src/crypto/external/apache2/openssl/dist/test/
cmp_asn_test.c 19 ASN1_OCTET_STRING *src_string; member in struct:test_fixture
36 ASN1_OCTET_STRING_free(fixture->src_string);
37 if (fixture->tgt_string != fixture->src_string)
84 fixture->src_string)))
87 return TEST_int_eq(0, ASN1_OCTET_STRING_cmp(fixture->tgt_string, fixture->src_string));
96 || !TEST_ptr(fixture->src_string = ASN1_OCTET_STRING_new())
97 || !TEST_true(ASN1_OCTET_STRING_set(fixture->src_string, rand_data,
110 if (!TEST_ptr(fixture->src_string = ASN1_OCTET_STRING_new())
111 || !(fixture->tgt_string = fixture->src_string)
112 || !TEST_true(ASN1_OCTET_STRING_set(fixture->src_string, rand_data
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/
cmp_asn_test.c 19 ASN1_OCTET_STRING *src_string; member in struct:test_fixture
36 ASN1_OCTET_STRING_free(fixture->src_string);
37 if (fixture->tgt_string != fixture->src_string)
84 fixture->src_string)))
88 fixture->src_string));
97 || !TEST_ptr(fixture->src_string = ASN1_OCTET_STRING_new())
98 || !TEST_true(ASN1_OCTET_STRING_set(fixture->src_string, rand_data,
111 if (!TEST_ptr(fixture->src_string = ASN1_OCTET_STRING_new())
112 || !(fixture->tgt_string = fixture->src_string)
113 || !TEST_true(ASN1_OCTET_STRING_set(fixture->src_string, rand_data
    [all...]
  /src/external/bsd/file/dist/src/
vasprintf.c 140 const char * src_string; /* current position into input string */ member in struct:__anon6670
185 len = strcspn(s->src_string, "%"); /* reaches the next '%' or end of input string */
192 memcpy(s->dest_string, s->src_string, len);
193 s->src_string += len;
308 #define SRCTXT (s->src_string)
571 if (s->src_string == NULL)
572 s->src_string = "(null)";
586 if (*(s->src_string) == 0) {
608 while(*(s->src_string) != 0) { /* up to end of source string */
631 s.src_string = format_string
    [all...]

Completed in 17 milliseconds