first_char       9361 ext/pcre/pcrelib/pcre_compile.c re->first_char = 0;
first_char       9588 ext/pcre/pcrelib/pcre_compile.c       re->first_char = firstchar & 0xff;
first_char       9590 ext/pcre/pcrelib/pcre_compile.c       re->first_char = firstchar & 0xffff;
first_char       9592 ext/pcre/pcrelib/pcre_compile.c       re->first_char = firstchar;
first_char       9600 ext/pcre/pcrelib/pcre_compile.c           if (re->first_char < 128)
first_char       9602 ext/pcre/pcrelib/pcre_compile.c             if (cd->fcc[re->first_char] != re->first_char)
first_char       9605 ext/pcre/pcrelib/pcre_compile.c           else if (UCD_OTHERCASE(re->first_char) != re->first_char)
first_char       9610 ext/pcre/pcrelib/pcre_compile.c         if (MAX_255(re->first_char)
first_char       9611 ext/pcre/pcrelib/pcre_compile.c             && cd->fcc[re->first_char] != re->first_char)
first_char       9670 ext/pcre/pcrelib/pcre_compile.c   pcre_uchar ch = re->first_char;
first_char       6369 ext/pcre/pcrelib/pcre_exec.c pcre_uchar first_char = 0;
first_char       6701 ext/pcre/pcrelib/pcre_exec.c     first_char = first_char2 = (pcre_uchar)(re->first_char);
first_char       6704 ext/pcre/pcrelib/pcre_exec.c       first_char2 = TABLE_GET(first_char, md->fcc, first_char);
first_char       6706 ext/pcre/pcrelib/pcre_exec.c       if (utf && first_char > 127)
first_char       6707 ext/pcre/pcrelib/pcre_exec.c         first_char2 = UCD_OTHERCASE(first_char);
first_char       6783 ext/pcre/pcrelib/pcre_exec.c       if (first_char != first_char2)
first_char       6785 ext/pcre/pcrelib/pcre_exec.c           (smc = UCHAR21TEST(start_match)) != first_char && smc != first_char2)
first_char       6788 ext/pcre/pcrelib/pcre_exec.c         while (start_match < end_subject && UCHAR21TEST(start_match) != first_char)
first_char        137 ext/pcre/pcrelib/pcre_fullinfo.c     ((re->flags & PCRE_FIRSTSET) != 0)? (int)re->first_char :
first_char        143 ext/pcre/pcrelib/pcre_fullinfo.c       (re->flags & PCRE_FIRSTSET) != 0 ? re->first_char : 0;
first_char       2332 ext/pcre/pcrelib/pcre_internal.h   pcre_uint16 first_char;         /* Starting character */
first_char       2358 ext/pcre/pcrelib/pcre_internal.h   pcre_uint32 first_char;         /* Starting character */
first_char       3817 ext/pcre/pcrelib/pcre_jit_compile.c static SLJIT_INLINE void fast_forward_first_char(compiler_common *common, pcre_uchar first_char, BOOL caseless, BOOL firstline)
first_char       3836 ext/pcre/pcrelib/pcre_jit_compile.c oc = first_char;
first_char       3839 ext/pcre/pcrelib/pcre_jit_compile.c   oc = TABLE_GET(first_char, common->fcc, first_char);
first_char       3841 ext/pcre/pcrelib/pcre_jit_compile.c   if (first_char > 127 && common->utf)
first_char       3842 ext/pcre/pcrelib/pcre_jit_compile.c     oc = UCD_OTHERCASE(first_char);
first_char       3845 ext/pcre/pcrelib/pcre_jit_compile.c if (first_char == oc)
first_char       3846 ext/pcre/pcrelib/pcre_jit_compile.c   found = CMP(SLJIT_EQUAL, TMP1, 0, SLJIT_IMM, first_char);
first_char       3849 ext/pcre/pcrelib/pcre_jit_compile.c   bit = first_char ^ oc;
first_char       3853 ext/pcre/pcrelib/pcre_jit_compile.c     found = CMP(SLJIT_EQUAL, TMP2, 0, SLJIT_IMM, first_char | bit);
first_char       3857 ext/pcre/pcrelib/pcre_jit_compile.c     OP2(SLJIT_SUB | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, first_char);
first_char       10058 ext/pcre/pcrelib/pcre_jit_compile.c       fast_forward_first_char(common, (pcre_uchar)re->first_char, (re->flags & PCRE_FCH_CASELESS) != 0, (re->options & PCRE_FIRSTLINE) != 0);