Lines Matching refs:p

152 	char *p = (char*)mem;  in bzero_aligned()
153 char *end = p + size; in bzero_aligned()
156 while (p < end) { in bzero_aligned()
157 _mm256_store_si256((__m256i*)p, ymm0); in bzero_aligned()
158 _mm256_store_si256((__m256i*)(p+32), ymm0); in bzero_aligned()
159 p += 64; in bzero_aligned()
162 char *p = (char*)mem; in bzero_aligned()
163 char *end = p + size; in bzero_aligned()
166 while (p < end) { in bzero_aligned()
167 _mm_store_si128((__m128i*)p, xmm0); in bzero_aligned()
168 _mm_store_si128((__m128i*)(p+16), xmm0); in bzero_aligned()
169 _mm_store_si128((__m128i*)(p+32), xmm0); in bzero_aligned()
170 _mm_store_si128((__m128i*)(p+48), xmm0); in bzero_aligned()
171 p += 64; in bzero_aligned()
192 const char *p; in is_stream_path() local
194 for (p = filename; in is_stream_path()
195 (*p >= 'a' && *p <= 'z') || in is_stream_path()
196 (*p >= 'A' && *p <= 'Z') || in is_stream_path()
197 (*p >= '0' && *p <= '9') || in is_stream_path()
198 *p == '+' || *p == '-' || *p == '.'; in is_stream_path()
199 p++); in is_stream_path()
200 return ((p != filename) && (p[0] == ':') && (p[1] == '/') && (p[2] == '/')); in is_stream_path()
644 Bucket *p, *q; in accel_copy_permanent_strings() local
657 ZEND_HASH_MAP_FOREACH_BUCKET(CG(function_table), p) { in accel_copy_permanent_strings()
658 if (p->key) { in accel_copy_permanent_strings()
659 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
661 if (Z_FUNC(p->val)->common.function_name) { in accel_copy_permanent_strings()
662 Z_FUNC(p->val)->common.function_name = new_interned_string(Z_FUNC(p->val)->common.function_name); in accel_copy_permanent_strings()
664 if (Z_FUNC(p->val)->common.arg_info && in accel_copy_permanent_strings()
665 (Z_FUNC(p->val)->common.fn_flags & (ZEND_ACC_HAS_RETURN_TYPE|ZEND_ACC_HAS_TYPE_HINTS))) { in accel_copy_permanent_strings()
667 uint32_t num_args = Z_FUNC(p->val)->common.num_args + 1; in accel_copy_permanent_strings()
668 zend_arg_info *arg_info = Z_FUNC(p->val)->common.arg_info - 1; in accel_copy_permanent_strings()
670 if (Z_FUNC(p->val)->common.fn_flags & ZEND_ACC_VARIADIC) { in accel_copy_permanent_strings()
680 ZEND_HASH_MAP_FOREACH_BUCKET(CG(class_table), p) { in accel_copy_permanent_strings()
683 ce = (zend_class_entry*)Z_PTR(p->val); in accel_copy_permanent_strings()
685 if (p->key) { in accel_copy_permanent_strings()
686 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
731 ZEND_HASH_MAP_FOREACH_BUCKET(EG(zend_constants), p) { in accel_copy_permanent_strings()
734 if (p->key) { in accel_copy_permanent_strings()
735 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
737 c = (zend_constant*)Z_PTR(p->val); in accel_copy_permanent_strings()
747 ZEND_HASH_MAP_FOREACH_BUCKET(CG(auto_globals), p) { in accel_copy_permanent_strings()
750 auto_global = (zend_auto_global*)Z_PTR(p->val); in accel_copy_permanent_strings()
754 if (p->key) { in accel_copy_permanent_strings()
755 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
759 ZEND_HASH_MAP_FOREACH_BUCKET(&module_registry, p) { in accel_copy_permanent_strings()
760 if (p->key) { in accel_copy_permanent_strings()
761 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
765 ZEND_HASH_MAP_FOREACH_BUCKET(EG(ini_directives), p) { in accel_copy_permanent_strings()
766 zend_ini_entry *entry = (zend_ini_entry*)Z_PTR(p->val); in accel_copy_permanent_strings()
768 if (p->key) { in accel_copy_permanent_strings()
769 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
783 ZEND_HASH_MAP_FOREACH_BUCKET(ht, p) { in accel_copy_permanent_strings()
784 if (p->key) { in accel_copy_permanent_strings()
785 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
790 ZEND_HASH_MAP_FOREACH_BUCKET(ht, p) { in accel_copy_permanent_strings()
791 if (p->key) { in accel_copy_permanent_strings()
792 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
797 ZEND_HASH_MAP_FOREACH_BUCKET(ht, p) { in accel_copy_permanent_strings()
798 if (p->key) { in accel_copy_permanent_strings()
799 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
2614 Bucket *p; in accel_reset_pcre_cache() local
2620 ZEND_HASH_MAP_FOREACH_BUCKET(&PCRE_G(pcre_cache), p) { in accel_reset_pcre_cache()
2622 if (zend_accel_in_shm(p->key)) { in accel_reset_pcre_cache()
2623 p->key = NULL; in accel_reset_pcre_cache()
2624 zend_hash_del_bucket(&PCRE_G(pcre_cache), p); in accel_reset_pcre_cache()
3548 zend_persistent_script **p = ZCSG(saved_scripts); local
3549 while (*p) {
3550 zend_accel_hash_update(&ZCSG(hash), (*p)->script.filename, 0, *p);
3551 p++;
3570 Bucket *p; local
3577 ZEND_HASH_MAP_REVERSE_FOREACH_BUCKET(src, p) {
3578 zend_function *function = Z_PTR(p->val);
3595 _zend_hash_append_ptr(dst, p->key, function);
3597 orig_dtor(&p->val);
3599 zend_hash_del_bucket(src, p);
3609 Bucket *p; local
3616 ZEND_HASH_MAP_FOREACH_BUCKET_FROM(src, p, EG(persistent_classes_count)) {
3617 zend_class_entry *ce = Z_PTR(p->val);
3633 _zend_hash_append(dst, p->key, &p->val);
3635 orig_dtor(&p->val);
3637 zend_hash_del_bucket(src, p);
3669 zend_class_entry *ce, *p; local
3675 p = ce->parent;
3676 if (p->type == ZEND_USER_CLASS) {
3679 if (p == Z_PTR(b2->val)) {
3692 p = ce->interfaces[i];
3693 if (p->type == ZEND_USER_CLASS) {
3696 if (p == Z_PTR(b2->val)) {
4304 Bucket *p = script->function_table.arData; local
4305 Bucket *end = p + script->function_table.nNumUsed;
4309 for (; p != end; p++) {
4310 _zend_hash_append_ptr_ex(CG(function_table), p->key, Z_PTR(p->val), 1);
4315 Bucket *p = script->class_table.arData; local
4316 Bucket *end = p + script->class_table.nNumUsed;
4320 for (; p != end; p++) {
4321 _zend_hash_append_ex(CG(class_table), p->key, &p->val, 1);