Searched refs:pstr (Results 1 - 25 of 43) sorted by relevance

12

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/tree-ssa/
H A D20030807-3.c6 cpp_parse_escape (pstr, limit, wide)
7 const unsigned char **pstr;
15 while (*pstr < limit)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/tree-ssa/
H A D20030807-3.c6 cpp_parse_escape (pstr, limit, wide)
7 const unsigned char **pstr;
15 while (*pstr < limit)
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/lib/
H A Dregex_internal.c21 re_string_t *pstr,
40 re_string_allocate (re_string_t *pstr, const char *str, Idx len, Idx init_len,
50 re_string_construct_common (str, len, pstr, trans, icase, dfa);
52 ret = re_string_realloc_buffers (pstr, init_buf_len);
56 pstr->word_char = dfa->word_char;
57 pstr->word_ops_used = dfa->word_ops_used;
58 pstr->mbs = pstr->mbs_allocated ? pstr->mbs : (unsigned char *) str;
59 pstr
39 re_string_allocate(re_string_t *pstr, const char *str, Idx len, Idx init_len, REG_TRANSLATE_TYPE trans, bool icase, const re_dfa_t *dfa) argument
67 re_string_construct(re_string_t *pstr, const char *str, Idx len, REG_TRANSLATE_TYPE trans, bool icase, const re_dfa_t *dfa) argument
130 re_string_realloc_buffers(re_string_t *pstr, Idx new_buf_len) argument
163 re_string_construct_common(const char *str, Idx len, re_string_t *pstr, REG_TRANSLATE_TYPE trans, bool icase, const re_dfa_t *dfa) argument
195 build_wcs_buffer(re_string_t *pstr) argument
263 build_wcs_upper_buffer(re_string_t *pstr) argument
479 re_string_skip_chars(re_string_t *pstr, Idx new_raw_idx, wint_t *last_wc) argument
514 build_upper_buffer(re_string_t *pstr) argument
537 re_string_translate_buffer(re_string_t *pstr) argument
558 re_string_reconstruct(re_string_t *pstr, Idx idx, int eflags) argument
738 re_string_peek_byte_case(const re_string_t *pstr, Idx idx) argument
775 re_string_fetch_byte_case(re_string_t *pstr) argument
813 re_string_destruct(re_string_t *pstr) argument
[all...]
H A Dregex_internal.h423 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)
861 re_string_char_size_at(const re_string_t *pstr, Idx idx) argument
874 re_string_wchar_at(const re_string_t *pstr, Idx idx) argument
883 re_string_elem_size_at(const re_string_t *pstr, Idx idx) argument
[all...]
H A Dregexec.c4075 re_string_t *pstr = &mctx->input;
4078 ret = re_string_realloc_buffers (pstr, pstr->bufs_len * 2);
4089 pstr->bufs_len + 1);
4096 if (pstr->icase)
4099 if (pstr->mb_cur_max > 1)
4101 ret = build_wcs_upper_buffer (pstr);
4107 build_upper_buffer (pstr);
4112 if (pstr->mb_cur_max > 1)
4113 build_wcs_buffer (pstr);
4071 re_string_t *pstr = &mctx->input; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20031215-1.c6 typedef struct {int c, l; char ch[3];} pstr; typedef in typeref:struct:__anon5485
7 const pstr ao = {2, 2, "OK"};
8 const pstr * const a = &ao;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20031215-1.c6 typedef struct {int c, l; char ch[3];} pstr; typedef in typeref:struct:__anon3754
7 const pstr ao = {2, 2, "OK"};
8 const pstr * const a = &ao;
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/
H A Dstrtofr.c217 /* Parse a string and fill pstr.
228 parse_string (mpfr_t x, struct parsed_string *pstr, argument
241 pstr->mantissa = NULL;
247 pstr->negative = (*str == '-');
298 (pstr->negative) ? MPFR_SET_NEG (x) : MPFR_SET_POS (x);
322 pstr->base = base;
325 pstr->alloc = (size_t) strlen (str) + 1;
326 pstr->mantissa = (unsigned char*) (*__gmp_allocate_func) (pstr->alloc);
330 mant = pstr
439 parsed_string_to_mpfr(mpfr_t x, struct parsed_string *pstr, mpfr_rnd_t rnd) argument
778 free_parsed_string(struct parsed_string *pstr) argument
788 struct parsed_string pstr; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/ec/
H A Dec_ameth.c86 ASN1_STRING *pstr = NULL; local
87 pstr = ASN1_STRING_new();
88 if (!pstr)
90 pstr->length = i2d_ECParameters(ec_key, &pstr->data);
91 if (pstr->length <= 0)
93 ASN1_STRING_free(pstr);
97 *ppval = pstr;
144 ASN1_STRING *pstr = pval; local
147 pm = pstr
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/dh/
H A Ddh_ameth.c77 ASN1_STRING *pstr; local
93 pstr = pval;
94 pm = pstr->data;
95 pmlen = pstr->length;
190 ASN1_STRING *pstr; local
208 pstr = pval;
209 pm = pstr->data;
210 pmlen = pstr->length;
/netbsd-6-1-5-RELEASE/bin/pax/
H A Dpat_rep.c261 pt->pstr = str;
299 (void)fprintf(stderr, "%s\n", pt->pstr);
368 if ((pt->pstr = strdup(arcn->name)) == NULL) {
383 pt->plen = strlen(pt->pstr);
389 if (*(pt->pstr + len) == '/') {
390 *(pt->pstr + len) = '\0';
472 (strncmp(pt->pstr, arcn->name, pt->plen) == 0))
474 } else if (fn_match(pt->pstr, arcn->name, &pt->pend,
H A Dpax.h85 char *pstr; /* pattern to match, user supplied */ member in struct:pattern
88 int plen; /* length of pstr */
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/dsa/
H A Ddsa_ameth.c75 ASN1_STRING *pstr; local
88 pstr = pval;
89 pm = pstr->data;
90 pmlen = pstr->length;
196 ASN1_STRING *pstr; local
254 pstr = pval;
255 pm = pstr->data;
256 pmlen = pstr->length;
/netbsd-6-1-5-RELEASE/sbin/ifconfig/
H A Dmedia.c55 static struct pstr mediamode = PSTR_INITIALIZER1(&mediamode, "mediamode",
62 static struct pstr unmediaopt = PSTR_INITIALIZER1(&unmediaopt, "-mediaopt",
65 static struct pstr mediaopt = PSTR_INITIALIZER1(&mediaopt, "mediaopt",
68 static struct pstr media = PSTR_INITIALIZER1(&media, "media", setmedia, "media",
H A Dparse.h209 struct pstr { struct
266 struct pstr *pstr_create(const char *, parser_exec_t, const char *,
H A Daf_atalk.c77 struct pstr parse_range = PSTR_INITIALIZER(&range, "range", NULL, "range",
H A Dcarp.c89 struct pstr pass = PSTR_INITIALIZER(&pass, "pass", setcarp_passwd,
H A Dieee80211.c114 extern struct pstr parse_bssid, parse_ssid, parse_nwkey;
180 struct pstr parse_ssid = PSTR_INITIALIZER(&parse_pass, "ssid", setifssid,
188 struct pstr parse_nwkey = PSTR_INITIALIZER1(&parse_nwkey, "nwkey", setifnwkey,
191 struct pstr parse_bssid = PSTR_INITIALIZER1(&parse_bssid, "bssid", setifbssid,
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/x509v3/
H A Dv3_cpols.c135 char *pstr;
159 pstr = cnf->name;
160 if(!strcmp(pstr,"ia5org")) {
163 } else if(*pstr == '@') {
165 polsect = X509V3_get_section(ctx, pstr + 1);
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/powerpc/
H A Ddb_disasm.c621 char * pstr; local
628 pstr += len; \
630 #define APP_PSTR(fmt, arg) ADD_LEN(snprintf(pstr, slen, (fmt), (arg)))
631 #define APP_PSTRS(fmt) ADD_LEN(snprintf(pstr, slen, (fmt)))
633 pstr = disasm_str;
880 db_symstr(pstr, slen, LI, DB_STGY_ANY);
881 ADD_LEN(strlen(pstr));
911 db_symstr(pstr, slen, BD, DB_STGY_ANY);
912 ADD_LEN(strlen(pstr));
/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/atf-c/detail/
H A Dfs.c553 const char *pstr = atf_fs_path_cstring(p); local
555 if (lstat(pstr, &st->m_sb) == -1) {
557 "lstat(2) failed", pstr);
573 err = unknown_type_error(pstr, type);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/atf-c/detail/
H A Dfs.c554 const char *pstr = atf_fs_path_cstring(p); local
556 if (lstat(pstr, &st->m_sb) == -1) {
558 "lstat(2) failed", pstr);
574 err = unknown_type_error(pstr, type);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/testsuite/frv-elf/
H A DMakefile.in130 uuencode: em-pstr.u em-e0.u em-e47.u em-pchr.u
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/testsuite/m32r-elf/
H A DMakefile.in128 uuencode: em-pstr.u em-e0.u em-e47.u em-pchr.u
/netbsd-6-1-5-RELEASE/sbin/iscsictl/
H A Discsic_parse.c667 * pstr the result string
675 cl_get_string(char ident, char *pstr, int argc, char **argv) argument
681 *pstr = '\0';
691 get_str(pstr, sp, argv[i], "String");

Completed in 499 milliseconds

12