Home
last modified time | relevance | path

Searched refs:p (Results 1 – 25 of 671) sorted by relevance

12345678910>>...27

/PHP-5.4/ext/mbstring/oniguruma/
H A Dregerror.c44 char *p; in onig_error_code_to_format() local
190 UChar *p; in to_ascii() local
194 p = s; in to_ascii()
212 p += enc_len(enc, p); in to_ascii()
261 p = s;
267 p += len;
270 p += 3;
279 *p++ = *q++;
329 p = pat;
332 *s++ = *p++;
[all …]
H A Dregenc.c58 p += enc_len(enc, p); in onigenc_get_right_adjust_char_head()
60 return p; in onigenc_get_right_adjust_char_head()
71 p += enc_len(enc, p); in onigenc_get_right_adjust_char_head_with_prev()
76 return p; in onigenc_get_right_adjust_char_head_with_prev()
143 p += ONIGENC_MBC_ENC_LEN(enc, p); in onigenc_strlen_null()
168 p += ONIGENC_MBC_ENC_LEN(enc, p); in onigenc_str_bytelen_null()
894 p += enc_len(enc, p); in onigenc_with_ascii_strncmp()
974 c = m17n_codepoint(enc, p, p + enc_len(enc, *p)); in onigenc_mbc_to_lower()
991 c = m17n_codepoint(enc, p, p + len); in onigenc_is_mbc_ambiguous()
1010 while (!m17n_islead(enc, *p) && p > start) p--; in onigenc_get_left_adjust_char_head()
[all …]
H A Dregint.h302 (p) += 2;\
310 (p) += 4;\
322 (p) += 8;\
327 #define SERIALIZE_SHORT(i,p) SERIALIZE_2BYTE_INT(i,p) argument
330 #define SERIALIZE_SHORT(i,p) SERIALIZE_4BYTE_INT(i,p) argument
333 #define SERIALIZE_SHORT(i,p) SERIALIZE_8BYTE_INT(i,p) argument
339 #define SERIALIZE_INT(i,p) SERIALIZE_2BYTE_INT(i,p) argument
452 UChar* p; member
503 xmemmove((buf)->p + (to), (buf)->p + (from), (n));\
509 xmemmove((buf)->p + (to), (buf)->p + (from), (n));\
[all …]
/PHP-5.4/ext/pcre/pcrelib/
H A Dpcre_valid_utf8.c110 register PCRE_PUCHAR p; in PRIV() local
114 for (p = string; *p != 0; p++); in PRIV()
115 length = (int)(p - string); in PRIV()
118 for (p = string; length-- > 0; p++) in PRIV()
122 c = *p; in PRIV()
127 *erroroffset = (int)(p - string); in PRIV()
133 *erroroffset = (int)(p - string); in PRIV()
147 if (((d = *(++p)) & 0xc0) != 0x80) in PRIV()
149 *erroroffset = (int)(p - string) - 1; in PRIV()
164 *erroroffset = (int)(p - string) - 1; in PRIV()
[all …]
H A Dpcre_maketables.c80 unsigned char *yield, *p; in pcre_maketables() local
90 p = yield; in pcre_maketables()
94 for (i = 0; i < 256; i++) *p++ = tolower(i); in pcre_maketables()
113 memset(p, 0, cbit_length); in pcre_maketables()
116 if (isdigit(i)) p[cbit_digit + i/8] |= 1 << (i&7); in pcre_maketables()
117 if (isupper(i)) p[cbit_upper + i/8] |= 1 << (i&7); in pcre_maketables()
118 if (islower(i)) p[cbit_lower + i/8] |= 1 << (i&7); in pcre_maketables()
119 if (isalnum(i)) p[cbit_word + i/8] |= 1 << (i&7); in pcre_maketables()
120 if (i == '_') p[cbit_word + i/8] |= 1 << (i&7); in pcre_maketables()
128 p += cbit_length; in pcre_maketables()
[all …]
/PHP-5.4/ext/mbstring/oniguruma/enc/
H A Dutf32_be.c42 if (*(p+3) == 0x0a && *(p+2) == 0 && *(p+1) == 0 && *p == 0) in utf32be_is_mbc_newline()
45 if ((*(p+3) == 0x0d || *(p+3) == 0x85) in utf32be_is_mbc_newline()
46 && *(p+2) == 0 && *(p+1) == 0 && *p == 0x00) in utf32be_is_mbc_newline()
48 if (*(p+2) == 0x20 && (*(p+3) == 0x29 || *(p+3) == 0x28) in utf32be_is_mbc_newline()
49 && *(p+1) == 0 && *p == 0) in utf32be_is_mbc_newline()
59 return (OnigCodePoint )(((p[0] * 256 + p[1]) * 256 + p[2]) * 256 + p[3]); in utf32be_mbc_to_code()
86 if (*(p+2) == 0 && *(p+1) == 0 && *p == 0) { in utf32be_mbc_to_normalize()
87 p += 3; in utf32be_mbc_to_normalize()
124 if (*(p+2) == 0 && *(p+1) == 0 && *p == 0) { in utf32be_is_mbc_ambiguous()
127 p += 3; in utf32be_is_mbc_ambiguous()
[all …]
H A Dutf32_le.c42 if (*p == 0x0a && *(p+1) == 0 && *(p+2) == 0 && *(p+3) == 0) in utf32le_is_mbc_newline()
45 if ((*p == 0x0d || *p == 0x85) && *(p+1) == 0x00 in utf32le_is_mbc_newline()
46 && (p+2) == 0x00 && *(p+3) == 0x00) in utf32le_is_mbc_newline()
48 if (*(p+1) == 0x20 && (*p == 0x29 || *p == 0x28) in utf32le_is_mbc_newline()
49 && *(p+2) == 0x00 && *(p+3) == 0x00) in utf32le_is_mbc_newline()
59 return (OnigCodePoint )(((p[3] * 256 + p[2]) * 256 + p[1]) * 256 + p[0]); in utf32le_mbc_to_code()
71 UChar* p = buf; in utf32le_code_to_mbc() local
86 if (*(p+1) == 0 && *(p+2) == 0 && *(p+3) == 0) { in utf32le_mbc_to_normalize()
108 *lower++ = *p++; in utf32le_mbc_to_normalize()
123 if (*(p+1) == 0 && *(p+2) == 0 && *(p+3) == 0) { in utf32le_is_mbc_ambiguous()
[all …]
H A Dutf16_be.c64 if (*(p+1) == 0x0a && *p == 0x00) in utf16be_is_mbc_newline()
67 if ((*(p+1) == 0x0d || *(p+1) == 0x85) && *p == 0x00) in utf16be_is_mbc_newline()
69 if (*p == 0x20 && (*(p+1) == 0x29 || *(p+1) == 0x28)) in utf16be_is_mbc_newline()
83 + ((((p[1] & 0x3f) << 2) + (p[2] - 0xdc)) << 8) in utf16be_mbc_to_code()
84 + p[3]; in utf16be_mbc_to_code()
87 code = p[0] * 256 + p[1]; in utf16be_mbc_to_code()
127 if (*p == 0) { in utf16be_mbc_to_normalize()
128 p++; in utf16be_mbc_to_normalize()
164 if (*p == 0) { in utf16be_is_mbc_ambiguous()
167 p++; in utf16be_is_mbc_ambiguous()
[all …]
H A Dutf16_le.c69 if (p + 1 < end) { in utf16le_is_mbc_newline()
70 if (*p == 0x0a && *(p+1) == 0x00) in utf16le_is_mbc_newline()
73 if ((*p == 0x0d || *p == 0x85) && *(p+1) == 0x00) in utf16le_is_mbc_newline()
75 if (*(p+1) == 0x20 && (*p == 0x29 || *p == 0x28)) in utf16le_is_mbc_newline()
86 UChar c0 = *p; in utf16le_mbc_to_code()
87 UChar c1 = *(p+1); in utf16le_mbc_to_code()
92 + p[2]; in utf16le_mbc_to_code()
103 UChar* p = buf; in utf16le_code_to_mbc() local
139 *lower = *p; in utf16le_mbc_to_normalize()
149 *lower++ = *p++; in utf16le_mbc_to_normalize()
[all …]
H A Deuc_jp.c71 c = *p++; in eucjp_mbc_to_code()
108 UChar *p = buf; in eucjp_code_to_mbc() local
118 return p - buf; in eucjp_code_to_mbc()
133 *lower = *p; in eucjp_mbc_to_normalize()
144 *lower++ = *p++; in eucjp_mbc_to_normalize()
179 const UChar *p; in eucjp_left_adjust_char_head() local
183 p = s; in eucjp_left_adjust_char_head()
185 while (!eucjp_islead(*p) && p > start) p--; in eucjp_left_adjust_char_head()
187 if (p + len > s) return (UChar* )p; in eucjp_left_adjust_char_head()
188 p += len; in eucjp_left_adjust_char_head()
[all …]
H A Dsjis.c102 c = *p++; in sjis_mbc_to_code()
108 c = *p++; in sjis_mbc_to_code()
117 UChar *p = buf; in sjis_code_to_mbc() local
126 return p - buf; in sjis_code_to_mbc()
152 *lower++ = *p++; in sjis_mbc_to_normalize()
185 const UChar *p; in sjis_left_adjust_char_head() local
189 p = s; in sjis_left_adjust_char_head()
194 p++; in sjis_left_adjust_char_head()
200 if (p + len > s) return (UChar* )p; in sjis_left_adjust_char_head()
201 p += len; in sjis_left_adjust_char_head()
[all …]
H A Dutf8.c71 if (p < end) { in utf8_is_mbc_newline()
77 if (*(p+1) == 0x85 && *p == 0xc2) /* U+0085 */ in utf8_is_mbc_newline()
80 if ((*(p+2) == 0xa8 || *(p+2) == 0xa9) in utf8_is_mbc_newline()
81 && *(p+1) == 0x80 && *p == 0xe2) /* U+2028, U+2029 */ in utf8_is_mbc_newline()
98 c = *p++; in utf8_mbc_to_code()
103 c = *p++; in utf8_mbc_to_code()
203 *p = 0xfe; in utf8_code_to_mbc()
207 *p = 0xff; in utf8_code_to_mbc()
257 *lower++ = *p++; in utf8_mbc_to_normalize()
3697 p = s; in utf8_left_adjust_char_head()
[all …]
/PHP-5.4/Zend/
H A Dzend_hash.c243 p = p->pNext; in _zend_hash_add_or_update()
320 p = p->pNext; in _zend_hash_quick_add_or_update()
410 p = p->pNext; in _zend_hash_index_update_or_next_insert()
541 p = p->pNext; in zend_hash_del_key_or_index()
931 p = p->pNext; in zend_hash_find()
957 p = p->pNext; in zend_hash_quick_find()
980 p = p->pNext; in zend_hash_exists()
1005 p = p->pNext; in zend_hash_quick_exists()
1027 p = p->pNext; in zend_hash_index_find()
1047 p = p->pNext; in zend_hash_index_exists()
[all …]
H A Dzend_string.c87 Bucket *p; in zend_new_interned_string_int() local
105 p = p->pNext; in zend_new_interned_string_int()
121 p->arKey = (char*)(p+1); in zend_new_interned_string_int()
127 p->h = h; in zend_new_interned_string_int()
128 p->pData = &p->pDataPtr; in zend_new_interned_string_int()
129 p->pDataPtr = p; in zend_new_interned_string_int()
134 p->pNext->pLast = p; in zend_new_interned_string_int()
143 p->pListLast->pListNext = p; in zend_new_interned_string_int()
204 p->pListLast->pListNext = p->pListNext; in zend_interned_strings_restore_int()
209 p->pListNext->pListLast = p->pListLast; in zend_interned_strings_restore_int()
[all …]
/PHP-5.4/ext/pcre/pcrelib/testdata/
H A Dtestinput7773p{Any}+\p{Any} \p{Any}+\P{Any} \p{Any}+\p{L&} \p{Any}+\p{L} \p{Any}+\p{Lu} \p{Any}+\p{Han} \p{Any}…
775p{L&}+\p{Any} \p{L&}+\p{L&} \P{L&}+\p{L&} \p{L&}+\p{L} \p{L&}+\p{Lu} \p{L&}+\p{Han} \p{L&}+\p{Xan}…
777p{N}+\p{Any} \p{N}+\p{L&} \p{N}+\p{L} \p{N}+\P{L} \p{N}+\P{N} \p{N}+\p{Lu} \p{N}+\p{Han} \p{N}+\p{…
779p{Lu}+\p{Any} \p{Lu}+\p{L&} \p{Lu}+\p{L} \p{Lu}+\p{Lu} \P{Lu}+\p{Lu} \p{Lu}+\p{Nd} \p{Lu}+\P{Nd} \
781p{Han}+\p{Lu} \p{Han}+\p{L&} \p{Han}+\p{L} \p{Han}+\p{Lu} \p{Han}+\p{Arabic} \p{Arabic}+\p{Arabic}…
783p{Xan}+\p{Any} \p{Xan}+\p{L&} \P{Xan}+\p{L&} \p{Xan}+\p{L} \p{Xan}+\p{Lu} \p{Xan}+\p{Han} \p{Xan}+…
785p{Xsp}+\p{Any} \p{Xsp}+\p{L&} \p{Xsp}+\p{L} \p{Xsp}+\p{Lu} \p{Xsp}+\p{Han} \p{Xsp}+\p{Xan} \p{Xsp}…
787p{Xwd}+\p{Any} \p{Xwd}+\p{L&} \p{Xwd}+\p{L} \p{Xwd}+\p{Lu} \p{Xwd}+\p{Han} \p{Xwd}+\p{Xan} \p{Xwd}…
789p{Xuc}+\p{Any} \p{Xuc}+\p{L&} \p{Xuc}+\p{L} \p{Xuc}+\p{Lu} \p{Xuc}+\p{Han} \p{Xuc}+\p{Xan} \p{Xuc}…
795 /\p{L}+\p{Xan} \p{N}+\p{Xan} \p{C}+\p{Xan} \P{L}+\p{Xan} \p{N}+\p{Xan} \P{C}+\p{Xan} \p{L}+\P{Xan}/…
[all …]
H A Dtestoutput71656p{Any}+\p{Any} \p{Any}+\P{Any} \p{Any}+\p{L&} \p{Any}+\p{L} \p{Any}+\p{Lu} \p{Any}+\p{Han} \p{Any}…
1685p{L&}+\p{Any} \p{L&}+\p{L&} \P{L&}+\p{L&} \p{L&}+\p{L} \p{L&}+\p{Lu} \p{L&}+\p{Han} \p{L&}+\p{Xan}…
1716p{N}+\p{Any} \p{N}+\p{L&} \p{N}+\p{L} \p{N}+\P{L} \p{N}+\P{N} \p{N}+\p{Lu} \p{N}+\p{Han} \p{N}+\p{…
1747p{Lu}+\p{Any} \p{Lu}+\p{L&} \p{Lu}+\p{L} \p{Lu}+\p{Lu} \P{Lu}+\p{Lu} \p{Lu}+\p{Nd} \p{Lu}+\P{Nd} \
1780p{Han}+\p{Lu} \p{Han}+\p{L&} \p{Han}+\p{L} \p{Han}+\p{Lu} \p{Han}+\p{Arabic} \p{Arabic}+\p{Arabic}…
1809p{Xan}+\p{Any} \p{Xan}+\p{L&} \P{Xan}+\p{L&} \p{Xan}+\p{L} \p{Xan}+\p{Lu} \p{Xan}+\p{Han} \p{Xan}+…
1840p{Xsp}+\p{Any} \p{Xsp}+\p{L&} \p{Xsp}+\p{L} \p{Xsp}+\p{Lu} \p{Xsp}+\p{Han} \p{Xsp}+\p{Xan} \p{Xsp}…
1869p{Xwd}+\p{Any} \p{Xwd}+\p{L&} \p{Xwd}+\p{L} \p{Xwd}+\p{Lu} \p{Xwd}+\p{Han} \p{Xwd}+\p{Xan} \p{Xwd}…
1898p{Xuc}+\p{Any} \p{Xuc}+\p{L&} \p{Xuc}+\p{L} \p{Xuc}+\p{Lu} \p{Xuc}+\p{Han} \p{Xuc}+\p{Xan} \p{Xuc}…
1959 /\p{L}+\p{Xan} \p{N}+\p{Xan} \p{C}+\p{Xan} \P{L}+\p{Xan} \p{N}+\p{Xan} \P{C}+\p{Xan} \p{L}+\P{Xan}/…
[all …]
/PHP-5.4/ext/ereg/regex/
H A Dregcomp.c45 #define MORE() (p->next < p->end)
46 #define MORE2() (p->next+1 < p->end)
139 p->end = p->next + len;
519 (void) dupl(p, p->pbegin[i]+1, p->pend[i]);
597 if (p->next + 5 < p->end && strncmp(p->next, "[:<:]]", 6) == 0) {
602 if (p->next + 5 < p->end && strncmp(p->next, "[:>:]]", 6) == 0) {
653 ordinary(p, firstch(p, cs));
1236 for (p = cs->multis; *p != '\0'; p += strlen(p) + 1)
1364 assert(p->ssize >= p->slen + len);
1393 if (p->slen >= p->ssize)
[all …]
H A Dregcomp.ih7 static void p_ere(register struct parse *p, int stop);
8 static void p_ere_exp(register struct parse *p);
9 static void p_str(register struct parse *p);
12 static int p_count(register struct parse *p);
13 static void p_bracket(register struct parse *p);
17 static unsigned char p_b_symbol(register struct parse *p);
20 static void bothcases(register struct parse *p, int ch);
22 static void nonnewline(register struct parse *p);
24 static int seterr(register struct parse *p, int e);
25 static cset *allocset(register struct parse *p);
[all …]
/PHP-5.4/ext/mysqli/tests/
H A Dmysqli_real_escape_string_sjis.phpt30 if ('?p??\\\\?p??' !== ($tmp = mysqli_real_escape_string($link, '?p??\\?p??')))
33 if ('?p??\"?p??' !== ($tmp = mysqli_real_escape_string($link, '?p??"?p??')))
36 if ("?p??\'?p??" !== ($tmp = mysqli_real_escape_string($link, "?p??'?p??")))
39 if ("?p??\\n?p??" !== ($tmp = mysqli_real_escape_string($link, "?p??\n?p??")))
42 if ("?p??\\r?p??" !== ($tmp = mysqli_real_escape_string($link, "?p??\r?p??")))
45 if ("?p??\\0?p??" !== ($tmp = mysqli_real_escape_string($link, "?p??" . chr(0) . "?p??")))
46 printf("[009] Expecting %s, got %s\n", "?p??\\0?p??", $tmp);
48 var_dump(mysqli_query($link, "INSERT INTO test(id, label) VALUES (100, '?p')"));
/PHP-5.4/ext/fileinfo/libmagic/
H A Dsoftmagic.c793 p->fld = ~p->fld \
880 p->s[sizeof(p->s) - 1] = '\0'; in mconvert()
905 p->h = (short)((p->hs[0]<<8)|(p->hs[1])); in mconvert()
912 ((p->hl[0]<<24)|(p->hl[1]<<16)|(p->hl[2]<<8)|(p->hl[3])); in mconvert()
927 p->h = (short)((p->hs[1]<<8)|(p->hs[0])); in mconvert()
934 ((p->hl[3]<<24)|(p->hl[2]<<16)|(p->hl[1]<<8)|(p->hl[0])); in mconvert()
952 ((p->hl[1]<<24)|(p->hl[0]<<16)|(p->hl[3]<<8)|(p->hl[2])); in mconvert()
959 p->l = ((uint32_t)p->hl[0]<<24)|((uint32_t)p->hl[1]<<16)| in mconvert()
964 p->l = ((uint32_t)p->hl[3]<<24)|((uint32_t)p->hl[2]<<16)| in mconvert()
972 p->q = ((uint64_t)p->hq[0]<<56)|((uint64_t)p->hq[1]<<48)| in mconvert()
[all …]
/PHP-5.4/tests/lang/
H A Dengine_assignExecutionOrder_008.phpt33 echo $a[$i->p=f()][++$i->p];
37 echo $a[$i->p->q=f()][++$i->p->q];
41 echo $a[$i->p[0]=f()][++$i->p[0]];
44 echo "\n" . '$i->p[0]->p=f(): ';
45 echo $a[$i->p[0]->p=f()][++$i->p[0]->p];
49 static $p;
53 echo $a[C::$p=f()][++C::$p];
57 echo $a[C::$p[0]=f()][++C::$p[0]];
61 echo $a[C::$p->q=f()][++C::$p->q];
69 $i->p=f():
[all …]
/PHP-5.4/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.c330 p++; in php_mysqlnd_greet_read()
362 p++; in php_mysqlnd_greet_read()
370 p++; in php_mysqlnd_greet_read()
457 mnd_pefree(p, p->header.persistent); in php_mysqlnd_greet_free_mem()
569 mnd_pefree(p, p->header.persistent); in php_mysqlnd_auth_free_mem()
691 mnd_pefree(p, p->header.persistent); in php_mysqlnd_auth_response_free_mem()
732 mnd_pefree(p, p->header.persistent); in php_mysqlnd_change_auth_response_free_mem()
820 mnd_pefree(p, p->header.persistent); in php_mysqlnd_ok_free_mem()
975 mnd_pefree(p, p->header.persistent); in php_mysqlnd_cmd_free_mem()
1097 mnd_pefree(p, p->header.persistent); in php_mysqlnd_rset_header_free_mem()
[all …]
/PHP-5.4/ext/standard/
H A Duuencode.c71 char *p, *s, *e, *ee; in php_uuencode() local
87 *p++ = PHP_UU_ENC(len); in php_uuencode()
91 *p++ = PHP_UU_ENC_C2(s); in php_uuencode()
99 *p++ = '\n'; in php_uuencode()
110 *p++ = PHP_UU_ENC_C2(s); in php_uuencode()
116 *p++ = '\n'; in php_uuencode()
119 *p++ = PHP_UU_ENC('\0'); in php_uuencode()
120 *p++ = '\n'; in php_uuencode()
121 *p = '\0'; in php_uuencode()
123 return (p - *dest); in php_uuencode()
[all …]
/PHP-5.4/ext/simplexml/tests/
H A D034.phpt11 <p>Blah 1</p>
12 <p>Blah 2</p>
13 <p>Blah 3</p>
18 $p = $foo->bar->p;
19 echo count($p);
20 $p = (array)$foo->bar->p;
21 echo count($p);
H A D035.phpt9 <p>Blah 1</p>
10 <p>Blah 2</p>
11 <p>Blah 3</p>
16 $p = $foo->bar->p;
17 echo $p."\n";
18 echo $p->__toString()."\n";
19 echo $p."\n";

Completed in 184 milliseconds

12345678910>>...27