Home
last modified time | relevance | path

Searched refs:slot (Results 1 – 11 of 11) sorted by relevance

/PHP-7.2/ext/session/
H A Dmod_mm.c115 uint32_t hv, slot; in ps_sd_new() local
129 slot = hv & data->hash_max; in ps_sd_new()
138 sd->next = data->hash[slot]; in ps_sd_new()
139 data->hash[slot] = sd; in ps_sd_new()
156 uint32_t slot; in ps_sd_destroy() local
160 if (data->hash[slot] == sd) { in ps_sd_destroy()
161 data->hash[slot] = sd->next; in ps_sd_destroy()
181 uint32_t hv, slot; in ps_sd_lookup() local
185 slot = hv & data->hash_max; in ps_sd_lookup()
199 ret->next = data->hash[slot]; in ps_sd_lookup()
[all …]
/PHP-7.2/Zend/
H A Dzend_execute.h346 slot[0] = (ce); \
347 slot[1] = (ptr); \
350 #define CACHED_PTR_EX(slot) \ argument
351 (slot)[0]
353 #define CACHE_PTR_EX(slot, ptr) do { \ argument
354 (slot)[0] = (ptr); \
357 #define CACHED_POLYMORPHIC_PTR_EX(slot, ce) \ argument
358 (EXPECTED((slot)[0] == (ce)) ? (slot)[1] : NULL)
360 #define CACHE_POLYMORPHIC_PTR_EX(slot, ce, ptr) do { \ argument
361 (slot)[0] = (ce); \
[all …]
H A Dzend_object_handlers.c978 zval *slot = OBJ_PROP(zobj, property_offset); in zend_std_unset_property() local
980 if (Z_TYPE_P(slot) != IS_UNDEF) { in zend_std_unset_property()
981 zval_ptr_dtor(slot); in zend_std_unset_property()
982 ZVAL_UNDEF(slot); in zend_std_unset_property()
H A Dzend_API.c1230 zval *slot = OBJ_PROP(object, property_info->offset); in object_properties_init_ex() local
1231 ZVAL_COPY_VALUE(slot, prop); in object_properties_init_ex()
1232 ZVAL_INDIRECT(prop, slot); in object_properties_init_ex()
1271 zval *slot = OBJ_PROP(object, property_info->offset); in object_properties_load() local
1272 zval_ptr_dtor(slot); in object_properties_load()
1273 ZVAL_COPY_VALUE(slot, prop); in object_properties_load()
1274 zval_add_ref(slot); in object_properties_load()
1276 ZVAL_INDIRECT(&tmp, slot); in object_properties_load()
/PHP-7.2/ext/gd/libgd/
H A Dgdft.c824 FT_GlyphSlot slot; local
890 slot = face->glyph; /* shortcut */
1097 if (FT_Get_Glyph(slot, &image)) {
1112 glyph_bbox.xMax += slot->metrics.horiAdvance;
1137 penf.x += slot->metrics.horiAdvance;
1155 if (FT_Get_Glyph(slot, &image)) {
/PHP-7.2/ext/pcre/pcrelib/
H A Dpcre_compile.c6773 pcre_uchar *slot; in compile_branch() local
6966 slot = cd->name_table; in compile_branch()
7403 slot = cd->name_table; in compile_branch()
7414 recno = GET2(slot, 0); in compile_branch()
7455 for (; slot < cslot; slot += cd->name_entry_size) in compile_branch()
7458 recno = GET2(slot, 0); in compile_branch()
8966 pcre_uchar *slot = cd->name_table; in add_name() local
8981 memmove(slot + cd->name_entry_size, slot, in add_name()
8988 slot += cd->name_entry_size; in add_name()
8991 PUT2(slot, 0, groupno); in add_name()
[all …]
H A Dpcre_study.c393 pcre_uchar *slot = (pcre_uchar *)re + in find_minlength() local
398 ce = cs = (pcre_uchar *)PRIV(find_bracket)(startcode, utf, GET2(slot, 0)); in find_minlength()
427 slot += re->name_entry_size; in find_minlength()
H A Dpcre_exec.c1348 pcre_uchar *slot = md->name_table + GET2(ecode, 1) * md->name_entry_size; in match() local
1351 unsigned int recno = GET2(slot, 0); in match()
1354 slot += md->name_entry_size; in match()
1367 pcre_uchar *slot = md->name_table + GET2(ecode, 1) * md->name_entry_size; in match() local
1370 offset = GET2(slot, 0) << 1; in match()
1373 slot += md->name_entry_size; in match()
2709 pcre_uchar *slot = md->name_table + GET2(ecode, 1) * md->name_entry_size; in match() local
2720 offset = GET2(slot, 0) << 1; in match()
2726 slot += md->name_entry_size; in match()
H A Dpcre_jit_compile.c797 pcre_uchar *slot; in check_opcode_types() local
845 slot += common->name_entry_size; in check_opcode_types()
870 slot = bracketend(cc); in check_opcode_types()
871 if (slot > assert_back_end) in check_opcode_types()
872 assert_back_end = slot; in check_opcode_types()
6742 offset = GET2(slot, 0) << 1; in compile_dnref_search()
6745 slot += common->name_entry_size; in compile_dnref_search()
6748 offset = GET2(slot, 0) << 1; in compile_dnref_search()
7815 pcre_uchar *slot; in compile_bracket_matchingpath() local
8112 slot += common->name_entry_size; in compile_bracket_matchingpath()
[all …]
/PHP-7.2/ext/sockets/tests/
H A Dsocket_strerror.phpt81 string(12) "Invalid slot"
/PHP-7.2/ext/pcre/pcrelib/doc/
H A Dpcre.txt8837 match is returned, the first slot is set to the offset of the earliest
8840 If there are at least three slots in the offsets vector, the third slot
9597 easier to slot in PCRE as a replacement library. Other POSIX options

Completed in 143 milliseconds