Home
last modified time | relevance | path

Searched refs:map (Results 26 – 50 of 51) sorted by relevance

123

/PHP-7.4/ext/sockets/
H A Dsockets.c2830 HANDLE map; local
2855map = CreateFileMapping(INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, sizeof(WSAPROTOCOL_INFO), Z…
2856 if (NULL != map) {
2857 LPVOID view = MapViewOfFile(map, FILE_MAP_WRITE, 0, 0, 0);
2861 zend_hash_add_ptr(&(SOCKETS_G(wsa_info)), seg_name, map);
2886 HANDLE map; local
2892 map = OpenFileMapping(FILE_MAP_READ, FALSE, id);
2893 if (map) {
2894 LPVOID view = MapViewOfFile(map, FILE_MAP_READ, 0, 0, 0);
2903 CloseHandle(map);
/PHP-7.4/ext/pdo/tests/
H A Dpdo_018.phpt144 // map whitespace (from early TDS versions) to empty string so the test doesn't diff
151 // map NULL to empty string so the test doesn't diff
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_cfg.c116 uint32_t *block_map = cfg->map; in zend_mark_reachable_blocks()
201 uint32_t *block_map = cfg->map; in zend_mark_reachable_blocks()
282 cfg->map = block_map = zend_arena_calloc(arena, op_array->last, sizeof(uint32_t)); in zend_build_cfg()
H A Dzend_dump.c1034 cfg->map[op_array->try_catch_array[i].try_op]); in zend_dump_op_array()
1037 cfg->map[op_array->try_catch_array[i].catch_op]); in zend_dump_op_array()
1043 cfg->map[op_array->try_catch_array[i].finally_op]); in zend_dump_op_array()
1049 cfg->map[op_array->try_catch_array[i].finally_end]); in zend_dump_op_array()
H A Dssa_integrity.c333 if (cfg->map[j] != i) { in ssa_verify_integrity()
H A Ddfa_pass.c207 ssa->cfg.map[target] = b - blocks; in zend_ssa_remove_nops()
931 take_successor_ex(ssa, block_num, block, ssa->cfg.map[target]); in zend_dfa_optimize_jmps()
960 take_successor_ex(ssa, block_num, block, ssa->cfg.map[target]); in zend_dfa_optimize_jmps()
H A Dsccp.c2002 target = ssa->cfg.map[ZEND_OFFSET_TO_OPLINE_NUM(op_array, opline, Z_LVAL_P(jmp_zv))]; in sccp_mark_feasible_successors()
2004 target = ssa->cfg.map[ZEND_OFFSET_TO_OPLINE_NUM(op_array, opline, opline->extended_value)]; in sccp_mark_feasible_successors()
2020 target = ssa->cfg.map[ZEND_OFFSET_TO_OPLINE_NUM(op_array, opline, Z_LVAL_P(jmp_zv))]; in sccp_mark_feasible_successors()
2022 target = ssa->cfg.map[ZEND_OFFSET_TO_OPLINE_NUM(op_array, opline, opline->extended_value)]; in sccp_mark_feasible_successors()
/PHP-7.4/ext/soap/
H A Dphp_encoding.c604 if (type && type->map && Z_TYPE(type->map->to_xml) != IS_UNDEF) { in to_xml_user()
607 if (call_user_function(NULL, NULL, &type->map->to_xml, &return_value, 1, data) == FAILURE) { in to_xml_user()
632 if (type && type->map && Z_TYPE(type->map->to_zval) != IS_UNDEF) { in to_zval_user()
644 if (call_user_function(NULL, NULL, &type->map->to_zval, ret, 1, &data) == FAILURE) { in to_zval_user()
3602 soapMappingPtr map = (soapMappingPtr)data; in delete_mapping() local
3604 zval_ptr_dtor(&map->to_xml); in delete_mapping()
3605 zval_ptr_dtor(&map->to_zval); in delete_mapping()
3606 efree(map); in delete_mapping()
3618 if (t->details.map) { in delete_encoder()
3619 delete_mapping(t->details.map); in delete_encoder()
[all …]
H A Dsoap.c1072 new_enc->details.map = emalloc(sizeof(soapMapping)); in soap_create_typemap()
1073 memset(new_enc->details.map, 0, sizeof(soapMapping)); in soap_create_typemap()
1075 ZVAL_COPY(&new_enc->details.map->to_xml, to_xml); in soap_create_typemap()
1077 } else if (enc->details.map && Z_TYPE(enc->details.map->to_xml) != IS_UNDEF) { in soap_create_typemap()
1078 ZVAL_COPY(&new_enc->details.map->to_xml, &enc->details.map->to_xml); in soap_create_typemap()
1081 ZVAL_COPY(&new_enc->details.map->to_zval, to_zval); in soap_create_typemap()
1083 } else if (enc->details.map && Z_TYPE(enc->details.map->to_zval) != IS_UNDEF) { in soap_create_typemap()
1084 ZVAL_COPY(&new_enc->details.map->to_zval, &enc->details.map->to_zval); in soap_create_typemap()
/PHP-7.4/ext/ldap/
H A Dldap.c3831 static zend_string* php_ldap_do_escape(const zend_bool *map, const char *value, size_t valuelen, ze… in php_ldap_do_escape() argument
3839 len += (map[(unsigned char) value[i]]) ? 3 : 1; in php_ldap_do_escape()
3854 if (map[v] || ((flags & PHP_LDAP_ESCAPE_DN) && ((i == 0) || (i + 1 == valuelen)) && (v == ' '))) { in php_ldap_do_escape()
3868 static void php_ldap_escape_map_set_chars(zend_bool *map, const char *chars, const size_t charslen,… in php_ldap_escape_map_set_chars() argument
3872 map[(unsigned char) chars[i++]] = escape; in php_ldap_escape_map_set_chars()
3882 zend_bool map[256] = {0}, havecharlist = 0; in PHP_FUNCTION() local
3894 php_ldap_escape_map_set_chars(map, "\\*()\0", sizeof("\\*()\0") - 1, 1); in PHP_FUNCTION()
3899 php_ldap_escape_map_set_chars(map, "\\,=+<>;\"#\r", sizeof("\\,=+<>;\"#\r") - 1, 1); in PHP_FUNCTION()
3904 map[i] = 1; in PHP_FUNCTION()
3909 php_ldap_escape_map_set_chars(map, ignores, ignoreslen, 0); in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/fileinfo/libmagic/
H A Dfile.h377 void *map; /* internal resources used by entry */ member
/PHP-7.4/ext/pdo_odbc/tests/
H A Dlong_columns.phpt35 …ll have to open MS Access, create a database, then load that file in this Window to map it to a DSN
/PHP-7.4/ext/pdo/
H A Dpdo_sql_parser.re409 /* map number to name */
/PHP-7.4/ext/standard/html_tables/mappings/
H A D8859-5.TXT28 # ISO/IEC 8859-5:1999 characters map into Unicode.
H A D8859-1.TXT28 # ISO/IEC 8859-1:1998 characters map into Unicode.
H A D8859-15.TXT29 # ISO/IEC 8859-15:1999 characters map into Unicode.
H A DKOI8-R.TXT28 # KOI8-R characters map into Unicode. The underlying document is the
/PHP-7.4/ext/standard/tests/strings/
H A Dhtml_entity_decode_html5.phpt5 $map = array(
1347 "&map;",
2133 foreach ($map as $str) {
3481 &map; => ↦ e286a6
H A Dget_html_translation_table_basic5.phpt1030 [↦] => &map;
H A Dhtmlentities_html5.phpt652 &map; U+021A6
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます2128 # >>18 use apple-driver-map
2151 0 name apple-driver-map
2173 # display apple partition map. Normally called after Apple driver map
6049 >>3 ubyte >0x9f (map)
13474 # Summary: Warcraft 3 map
16507 # SRF map
19338 # Summary: Garmin map
19347 >>0 use garmin-map
19348 0 name garmin-map
19562 # or OSM Street map
[all …]
H A Dmagic2128 # >>18 use apple-driver-map
2151 0 name apple-driver-map
2173 # display apple partition map. Normally called after Apple driver map
6049 >>3 ubyte >0x9f (map)
13474 # Summary: Warcraft 3 map
16507 # SRF map
19338 # Summary: Garmin map
19347 >>0 use garmin-map
19348 0 name garmin-map
19562 # or OSM Street map
[all …]
/PHP-7.4/ext/standard/html_tables/
H A Dents_html5.txt1342 map 021A6
/PHP-7.4/ext/standard/
H A Dstring.c3565 const __m128i map = _mm_set_epi8( local
3572 _mm_storeu_si128((__m128i *)p, _mm_shuffle_epi8(str, map));
/PHP-7.4/
H A Dphp.ini-development1859 ; processes have to map shared memory into the same address space. This

Completed in 252 milliseconds

123