| /src/external/gpl2/xcvs/dist/lib/ |
| regex_internal.c | 24 re_string_t *pstr, 43 re_string_allocate (re_string_t *pstr, const char *str, Idx len, Idx init_len, 53 re_string_construct_common (str, len, pstr, trans, icase, dfa); 55 ret = re_string_realloc_buffers (pstr, init_buf_len); 59 pstr->word_char = dfa->word_char; 60 pstr->word_ops_used = dfa->word_ops_used; 61 pstr->mbs = pstr->mbs_allocated ? pstr->mbs : (unsigned char *) str; 62 pstr->valid_len = (pstr->mbs_allocated || dfa->mb_cur_max > 1) ? 0 : len [all...] |
| regex_internal.h | 423 static reg_errcode_t re_string_realloc_buffers (re_string_t *pstr, 427 static void build_wcs_buffer (re_string_t *pstr) internal_function; 428 static reg_errcode_t build_wcs_upper_buffer (re_string_t *pstr) 431 static void build_upper_buffer (re_string_t *pstr) internal_function; 432 static void re_string_translate_buffer (re_string_t *pstr) internal_function; 437 #define re_string_peek_byte(pstr, offset) \ 438 ((pstr)->mbs[(pstr)->cur_idx + offset]) 439 #define re_string_fetch_byte(pstr) \ 440 ((pstr)->mbs[(pstr)->cur_idx++] [all...] |
| /src/external/lgpl3/mpfr/dist/src/ |
| strtofr.c | 218 /* Parse a string and fill pstr. 229 parse_string (mpfr_ptr x, struct parsed_string *pstr, 242 pstr->mantissa = NULL; 251 pstr->negative = (*str == '-'); 302 (pstr->negative) ? MPFR_SET_NEG (x) : MPFR_SET_POS (x); 326 pstr->base = base; 329 pstr->alloc = (size_t) strlen (str) + 1; 330 pstr->mantissa = (unsigned char*) mpfr_allocate_func (pstr->alloc); 334 mant = pstr->mantissa 948 struct parsed_string pstr; local [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/implementations/include/prov/ |
| hmac_drbg.h | 28 const unsigned char *pstr, size_t pstr_len);
|
| /src/distrib/common/bootimage/ |
| diskproto2sunlabel.awk | 43 n = split(parts, pstr, /[ \t]+/) 45 validpart[pstr[i]] = 1
|
| /src/crypto/external/bsd/openssl/dist/crypto/http/ |
| http_lib.c | 25 static void init_pstring(char **pstr) 27 if (pstr != NULL) { 28 *pstr = NULL; 45 static void free_pstring(char **pstr) 47 if (pstr != NULL) { 48 OPENSSL_free(*pstr); 49 *pstr = NULL;
|
| /src/crypto/external/apache2/openssl/dist/crypto/http/ |
| http_lib.c | 25 static void init_pstring(char **pstr) 27 if (pstr != NULL) { 28 *pstr = NULL; 45 static void free_pstring(char **pstr) 47 if (pstr != NULL) { 48 OPENSSL_free(*pstr); 49 *pstr = NULL;
|
| /src/crypto/external/apache2/openssl/dist/crypto/dsa/ |
| dsa_backend.c | 128 const ASN1_STRING *pstr; local 146 pstr = pval; 147 pm = pstr->data; 148 pmlen = pstr->length;
|
| /src/crypto/external/bsd/openssl/dist/crypto/dsa/ |
| dsa_backend.c | 130 const ASN1_STRING *pstr; local 148 pstr = pval; 149 pm = pstr->data; 150 pmlen = pstr->length;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| stap-probe.c | 87 pstr (int val) function 127 fs.ps = pstr;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| stap-probe.c | 87 pstr (int val) function 127 fs.ps = pstr;
|
| /src/crypto/external/apache2/openssl/dist/crypto/dh/ |
| dh_backend.c | 187 const ASN1_STRING *pstr; local 203 pstr = pval; 204 pm = pstr->data; 205 pmlen = pstr->length;
|
| /src/crypto/external/bsd/openssl/dist/crypto/dh/ |
| dh_backend.c | 194 const ASN1_STRING *pstr; local 210 pstr = pval; 211 pm = pstr->data; 212 pmlen = pstr->length;
|
| /src/external/gpl3/gcc/dist/libquadmath/printf/ |
| quadmath-printf.c | 30 read_int (const char **pstr) 32 unsigned int retval = (unsigned char) **pstr - '0'; 34 while (isdigit ((unsigned char) *++(*pstr))) 37 retval += (unsigned char) **pstr - '0';
|
| /src/external/gpl3/gcc.old/dist/libquadmath/printf/ |
| quadmath-printf.c | 30 read_int (const char **pstr) 32 unsigned int retval = (unsigned char) **pstr - '0'; 34 while (isdigit ((unsigned char) *++(*pstr))) 37 retval += (unsigned char) **pstr - '0';
|
| /src/external/bsd/unbound/dist/testcode/ |
| testpkts.c | 1294 char* qstr, *pstr, *s, *qcmpstr, *pcmpstr; local 1308 pstr = sldns_wire2str_pkt(pb, plen); 1309 if(!qstr || !pstr) error("cannot pkt2string"); 1314 s = strstr(pstr, ";; QUESTION SECTION"); 1318 free(pstr); 1325 free(pstr); 1351 free(pstr); 1361 char* qstr, *pstr, *s, *qcmpstr, *pcmpstr; local 1375 pstr = sldns_wire2str_pkt(pb, plen); 1376 if(!qstr || !pstr) error("cannot pkt2string") 1445 char* qstr, *pstr; local [all...] |
| /src/bin/pax/ |
| pat_rep.c | 262 pt->pstr = str; 300 (void)fprintf(stderr, "%s\n", pt->pstr); 369 if ((pt->pstr = strdup(arcn->name)) == NULL) { 384 pt->plen = strlen(pt->pstr); 390 if (*(pt->pstr + len) == '/') { 391 *(pt->pstr + len) = '\0'; 473 (strncmp(pt->pstr, arcn->name, pt->plen) == 0)) 475 } else if (fn_match(pt->pstr, arcn->name, &pt->pend,
|
| /src/crypto/external/apache2/openssl/dist/crypto/ec/ |
| ec_ameth.c | 52 ASN1_STRING *pstr = NULL; local 53 pstr = ASN1_STRING_new(); 54 if (pstr == NULL) 56 pstr->length = i2d_ECParameters(ec_key, &pstr->data); 57 if (pstr->length <= 0) { 58 ASN1_STRING_free(pstr); 62 *ppval = pstr;
|
| /src/crypto/external/bsd/openssl/dist/crypto/ec/ |
| ec_ameth.c | 52 ASN1_STRING *pstr = NULL; local 53 pstr = ASN1_STRING_new(); 54 if (pstr == NULL) 56 pstr->length = i2d_ECParameters(ec_key, &pstr->data); 57 if (pstr->length <= 0) { 58 ASN1_STRING_free(pstr); 62 *ppval = pstr;
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/dsa/ |
| dsa_ameth.c | 26 const ASN1_STRING *pstr; local 37 pstr = pval; 38 pm = pstr->data; 39 pmlen = pstr->length; 143 const ASN1_STRING *pstr; local 161 pstr = pval; 162 pm = pstr->data; 163 pmlen = pstr->length;
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/ |
| encode_key2any.c | 444 void **pstr, int *pstrtype) 465 *pstr = params; 548 void **pstr, int *pstrtype) 566 *pstr = params; 571 void **pstr, int *pstrtype) 578 return encode_dsa_params(dsa, nid, pstr, pstrtype); 580 *pstr = NULL; 643 void **pstr, int *pstrtype) 660 *pstr = params; 669 void **pstr, int *pstrtype [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/ec/ |
| ec_ameth.c | 49 ASN1_STRING *pstr = NULL; local 50 pstr = ASN1_STRING_new(); 51 if (pstr == NULL) 63 pstr->length = i2d_ECParameters((EC_KEY *)ec_key, &pstr->data); 64 if (pstr->length <= 0) { 65 ASN1_STRING_free(pstr); 69 *ppval = pstr; 115 const ASN1_STRING *pstr = pval; local 116 const unsigned char *pm = pstr->data [all...] |
| /src/sys/dev/i2c/ |
| i2c.c | 454 prop_string_t pstr; local 474 while ((pstr = prop_object_iterator_next(iter)) != NULL) { 475 if (prop_string_equals_string(pstr, cf->cf_name)) { 491 prop_string_t pstr; local 504 pstr = prop_dictionary_get(device_properties(sc->sc_dev), 506 if (pstr == NULL) { 508 } else if (prop_string_equals_string(pstr, 511 } else if (prop_string_equals_string(pstr, 514 } else if (prop_string_equals_string(pstr, 520 prop_string_value(pstr), [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/implementations/rands/ |
| drbg_hmac.c | 113 * pstr = personalization data (Can be NULL) of length pstr_len. 120 const unsigned char *pstr, size_t pstr_len) 132 return drbg_hmac_update(hmac, ent, ent_len, nonce, nonce_len, pstr, 138 const unsigned char *pstr, size_t pstr_len) 141 nonce, nonce_len, pstr, pstr_len); 146 const unsigned char *pstr, 160 pstr, pstr_len);
|
| /src/external/gpl3/binutils/dist/opcodes/ |
| nds32-asm.c | 1890 struct nds32_asm_insn *pinsn, char **pstr, int64_t *value) 1892 char *end = *pstr; 1916 *pstr = end; 1925 char **pstr, int64_t *value) 1927 char *end = *pstr; 1958 *pstr = end; 1966 char **pstr, int64_t *value) 1970 r = pdesc->parse_operand (pdesc, pinsn, pstr, value); 1984 char **pstr, int64_t *value) 1988 r = pdesc->parse_operand (pdesc, pinsn, pstr, value) [all...] |