Home
last modified time | relevance | path

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

/PHP-7.1/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.1/Zend/
H A Dzend_execute.h344 slot[0] = (ce); \
345 slot[1] = (ptr); \
348 #define CACHED_PTR_EX(slot) \ argument
349 (slot)[0]
351 #define CACHE_PTR_EX(slot, ptr) do { \ argument
352 (slot)[0] = (ptr); \
355 #define CACHED_POLYMORPHIC_PTR_EX(slot, ce) \ argument
356 (EXPECTED((slot)[0] == (ce)) ? (slot)[1] : NULL)
358 #define CACHE_POLYMORPHIC_PTR_EX(slot, ce, ptr) do { \ argument
359 (slot)[0] = (ce); \
[all …]
H A Dzend_object_handlers.c987 zval *slot = OBJ_PROP(zobj, property_offset); in zend_std_unset_property() local
989 if (Z_TYPE_P(slot) != IS_UNDEF) { in zend_std_unset_property()
990 zval_ptr_dtor(slot); in zend_std_unset_property()
991 ZVAL_UNDEF(slot); in zend_std_unset_property()
H A Dzend_API.c1200 zval *slot = OBJ_PROP(object, property_info->offset); in object_properties_init_ex() local
1201 ZVAL_COPY_VALUE(slot, prop); in object_properties_init_ex()
1202 ZVAL_INDIRECT(prop, slot); in object_properties_init_ex()
1241 zval *slot = OBJ_PROP(object, property_info->offset); in object_properties_load() local
1242 zval_ptr_dtor(slot); in object_properties_load()
1243 ZVAL_COPY_VALUE(slot, prop); in object_properties_load()
1244 zval_add_ref(slot); in object_properties_load()
1246 ZVAL_INDIRECT(&tmp, slot); in object_properties_load()
/PHP-7.1/ext/gd/libgd/
H A Dgdft.c817 FT_GlyphSlot slot; local
883 slot = face->glyph; /* shortcut */
1090 if (FT_Get_Glyph(slot, &image)) {
1105 glyph_bbox.xMax += slot->metrics.horiAdvance;
1130 penf.x += slot->metrics.horiAdvance;
1148 if (FT_Get_Glyph(slot, &image)) {
/PHP-7.1/ext/pcre/pcrelib/
H A Dpcre_compile.c6691 pcre_uchar *slot; in compile_branch() local
6884 slot = cd->name_table; in compile_branch()
7320 slot = cd->name_table; in compile_branch()
7331 recno = GET2(slot, 0); in compile_branch()
7372 for (; slot < cslot; slot += cd->name_entry_size) in compile_branch()
7375 recno = GET2(slot, 0); in compile_branch()
8915 pcre_uchar *slot = cd->name_table; in add_name() local
8930 memmove(slot + cd->name_entry_size, slot, in add_name()
8937 slot += cd->name_entry_size; in add_name()
8940 PUT2(slot, 0, groupno); in add_name()
[all …]
H A Dpcre_study.c391 pcre_uchar *slot = (pcre_uchar *)re + in find_minlength() local
396 ce = cs = (pcre_uchar *)PRIV(find_bracket)(startcode, utf, GET2(slot, 0)); in find_minlength()
425 slot += re->name_entry_size; in find_minlength()
H A Dpcre_exec.c1346 pcre_uchar *slot = md->name_table + GET2(ecode, 1) * md->name_entry_size; in match() local
1349 unsigned int recno = GET2(slot, 0); in match()
1352 slot += md->name_entry_size; in match()
1365 pcre_uchar *slot = md->name_table + GET2(ecode, 1) * md->name_entry_size; in match() local
1368 offset = GET2(slot, 0) << 1; in match()
1371 slot += md->name_entry_size; in match()
2707 pcre_uchar *slot = md->name_table + GET2(ecode, 1) * md->name_entry_size; in match() local
2718 offset = GET2(slot, 0) << 1; in match()
2724 slot += md->name_entry_size; in match()
H A Dpcre_jit_compile.c782 pcre_uchar *slot; in check_opcode_types() local
828 common->optimized_cbracket[GET2(slot, 0)] = 0; in check_opcode_types()
829 slot += common->name_entry_size; in check_opcode_types()
5973 offset = GET2(slot, 0) << 1; in compile_dnref_search()
5976 slot += common->name_entry_size; in compile_dnref_search()
5979 offset = GET2(slot, 0) << 1; in compile_dnref_search()
6993 pcre_uchar *slot; in compile_bracket_matchingpath() local
7290 slot += common->name_entry_size; in compile_bracket_matchingpath()
7296 slot += common->name_entry_size; in compile_bracket_matchingpath()
7336 if ((int)GET2(slot, 0) == i) in compile_bracket_matchingpath()
[all …]
/PHP-7.1/ext/sockets/tests/
H A Dsocket_strerror.phpt81 string(12) "Invalid slot"
/PHP-7.1/ext/pcre/pcrelib/doc/
H A Dpcre.txt8790 match is returned, the first slot is set to the offset of the earliest
8793 If there are at least three slots in the offsets vector, the third slot
9550 easier to slot in PCRE as a replacement library. Other POSIX options

Completed in 185 milliseconds