Home
last modified time | relevance | path

Searched refs:map (Results 1 – 25 of 61) sorted by path

123

/PHP-5.5/
H A DNEWS5172 - Fixed bug #48902 (Timezone database fallback map is outdated). (Derick)
7525 . Load only once the local color map from a GIF data (Pierre)
H A DUPGRADING402 - Added ability of resolving alias created by Phar::map
/PHP-5.5/Zend/
H A Dzend_stream.c81 if (stream->mmap.map) { in zend_stream_unmap()
82 munmap(stream->mmap.map, stream->mmap.len + ZEND_MMAP_AHEAD); in zend_stream_unmap()
90 stream->mmap.map = 0; in zend_stream_unmap()
241 file_handle->handle.stream.mmap.map = *buf;
254 file_handle->handle.stream.mmap.map = 0;
271 file_handle->handle.stream.mmap.map = 0;
H A Dzend_stream.h47 void *map; member
/PHP-5.5/ext/com_dotnet/
H A DREADME38 we only map a few native types to COM and vice-versa, leaving the more complex
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch108 ml->map = idx == 0 ? map : NULL;
190 - if (map->len)
191 - (void)munmap(map->p, map->len);
195 - free(map);
208 + efree(map);
477 - free(map);
481 return map;
641 - if (read(fd, map->p, map->len) != (ssize_t)map->len) {
697 map->magic[0] = CAST(struct magic *, map->p) + 1;
700 map->magic[i + 1] = map->magic[i] + map->nmagic[i];
[all …]
/PHP-5.5/ext/fileinfo/libmagic/
H A Dapprentice.c371 ml->map = idx == 0 ? map : NULL; in add_mlist()
507 efree(map); in apprentice_unmap()
531 if (ml->map) in mlist_free()
1237 &map->magic[j], &map->nmagic[j]) == -1) { in apprentice_load()
1252 efree(map); in apprentice_load()
1255 return map; in apprentice_load()
2649 if ((map->p = CAST(void *, emalloc(map->len))) == NULL) { in apprentice_map()
2702 map->magic[0] = CAST(struct magic *, map->p) + 1; in apprentice_map()
2710 map->magic[i + 1] = map->magic[i] + map->nmagic[i]; in apprentice_map()
2721 byteswap(map->magic[i], map->nmagic[i]); in apprentice_map()
[all …]
H A Dfile.h353 void *map; /* internal resources used by entry */ member
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic1538 >4 belong x \b, map block count %d
5265 >0 belong 3 map of inodes on tape,
5268 >0 belong 6 map of inodes deleted,
5284 >0 belong 3 map of inodes on tape,
5287 >0 belong 6 map of inodes deleted,
5303 >0 belong 3 map of inodes on tape,
5306 >0 belong 6 map of inodes deleted,
5339 >0 leshort 3 map of inodes on tape.
8350 # Summary: Warcraft 3 map
12128 # partition map
[all …]
/PHP-5.5/ext/filter/
H A Dsanitizing_filters.c165 if ((*map)[str[i]]) { in filter_map_apply()
308 filter_map map; in php_filter_email() local
310 filter_map_init(&map); in php_filter_email()
312 filter_map_apply(value, &map); in php_filter_email()
322 filter_map map; in php_filter_url() local
324 filter_map_init(&map); in php_filter_url()
326 filter_map_apply(value, &map); in php_filter_url()
335 filter_map map; in php_filter_number_int() local
337 filter_map_init(&map); in php_filter_number_int()
348 filter_map map; in php_filter_number_float() local
[all …]
/PHP-5.5/ext/gd/
H A Dgdcache.c156 cacheTest( void *map, void *key ) in cacheTest() argument
158 return (((key_value_t *)map)->key == *(int *)key); in cacheTest()
164 key_value_t *map; in cacheFetch() local
166 map = (key_value_t *)malloc(sizeof(key_value_t)); in cacheFetch()
167 if (map == NULL) { in cacheFetch()
170 map->key = *(int *)key; in cacheFetch()
171 map->value = 3; in cacheFetch()
174 return (void *)map; in cacheFetch()
178 cacheRelease( void *map) in cacheRelease() argument
180 free( (char *)map ); in cacheRelease()
/PHP-5.5/ext/gd/libgd/
H A Dgdcache.c159 cacheTest (void *map, void *key) in cacheTest() argument
161 return (((key_value_t *) map)->key == *(int *) key); in cacheTest()
167 key_value_t *map; in cacheFetch() local
169 map = (key_value_t *) gdMalloc (sizeof (key_value_t)); in cacheFetch()
170 map->key = *(int *) key; in cacheFetch()
171 map->value = 3; in cacheFetch()
174 return (void *) map; in cacheFetch()
178 cacheRelease (void *map) in cacheRelease() argument
180 gdFree ((char *) map); in cacheRelease()
/PHP-5.5/ext/ldap/
H A Dldap.mak33 MAP_FILE = $(FINAL_DIR)\$(MODULE_NAME).map
168 -@del "$(FINAL_DIR)\$(MODULE_NAME).map"
/PHP-5.5/ext/mbstring/libmbfl/filters/
H A Dmbfilter_sjis_mobile.c248 mbfilter_conv_map_tbl(int c, int *w, const unsigned short map[][3], int n) in mbfilter_conv_map_tbl()
253 if (map[i][0] <= c && c <= map[i][1]) { in mbfilter_conv_map_tbl()
254 *w = c - map[i][0] + map[i][2]; in mbfilter_conv_map_tbl()
263 mbfilter_conv_r_map_tbl(int c, int *w, const unsigned short map[][3], int n) in mbfilter_conv_r_map_tbl()
268 if (map[i][2] <= c && c <= map[i][2] - map[i][0] + map[i][1]) { in mbfilter_conv_r_map_tbl()
269 *w = c + map[i][0] - map[i][2]; in mbfilter_conv_r_map_tbl()
H A Dmbfilter_sjis_mobile.h67 int mbfilter_conv_map_tbl(int c, int *w, const unsigned short map[][3], int n);
68 int mbfilter_conv_r_map_tbl(int c, int *w, const unsigned short map[][3], int n);
/PHP-5.5/ext/mbstring/libmbfl/tests/conv_encoding.tests/
H A Dgen_exp.c21 map->n = 0; in mappings_init()
22 map->nalloc = 0; in mappings_init()
23 map->entries = 0; in mappings_init()
28 if (map->entries) in mappings_destroy()
34 if (map->n >= map->nalloc) { in mappings_grow()
48 map->nalloc = n; in mappings_grow()
68 size_t n = map->n - i, a = sizeof(*map->entries) * n; in mappings_add()
71 memmove(&map->entries[i + 1], &map->entries[i], a); in mappings_add()
73 ++map->n; in mappings_add()
89 memmove(&map->entries[i + 2], &map->entries[i + 1], a); in mappings_add()
[all …]
/PHP-5.5/ext/mbstring/oniguruma/
H A DHISTORY1363 sub-anchor of optimization map info was wrong
1888 char-class(\S, [^\s] etc...) optimize map-info was wrong.
H A Doniguruma.h690 unsigned char map[ONIG_CHAR_TABLE_SIZE]; /* used as BM skip or char-map */ member
H A Dregcomp.c1898 GroupNumRemap* map; in disable_noname_group_capture() local
1903 map[i].new_val = 0; in disable_noname_group_capture()
4352 if (map->map[c] == 0) { in add_char_opt_map_info()
4353 map->map[c] = 1; in add_char_opt_map_info()
4428 if (add->map[i]) in alt_merge_opt_map_info()
4429 to->map[i] = 1; in alt_merge_opt_map_info()
4431 if (to->map[i]) in alt_merge_opt_map_info()
4518 select_opt_map_info(&to->map, &add->map); in concat_left_node_opt_info()
4530 alt_merge_opt_map_info(env->enc, &to->map, &add->map); in alt_merge_node_opt_info()
4717 copy_opt_map_info(&opt->map, &nopt.map); in optimize_node_left()
[all …]
H A Dregenc.c447 const OnigPairCaseFoldCodes map[], in onigenc_apply_all_case_fold_with_map() argument
458 code = map[i].to; in onigenc_apply_all_case_fold_with_map()
459 r = (*f)(map[i].from, &code, 1, arg); in onigenc_apply_all_case_fold_with_map()
462 code = map[i].from; in onigenc_apply_all_case_fold_with_map()
463 r = (*f)(map[i].to, &code, 1, arg); in onigenc_apply_all_case_fold_with_map()
475 const OnigPairCaseFoldCodes map[], in onigenc_get_case_fold_codes_by_str_with_map() argument
536 if (*p == map[i].from) { in onigenc_get_case_fold_codes_by_str_with_map()
539 items[0].code[0] = map[i].to; in onigenc_get_case_fold_codes_by_str_with_map()
542 else if (*p == map[i].to) { in onigenc_get_case_fold_codes_by_str_with_map()
545 items[0].code[0] = map[i].from; in onigenc_get_case_fold_codes_by_str_with_map()
H A Dregenc.h117 …apply_all_case_fold_with_map P_((int map_size, const OnigPairCaseFoldCodes map[], int ess_tsett_fl…
118 …e_fold_codes_by_str_with_map P_((int map_size, const OnigPairCaseFoldCodes map[], int ess_tsett_fl…
H A Dregexec.c2904 skip = reg->map[*se]; in bm_search_notrev()
2951 s += reg->map[*s]; in bm_search()
3020 map_search(OnigEncoding enc, UChar map[], in map_search() argument
3026 if (map[*s]) return (UChar* )s; in map_search()
3034 map_search_backward(OnigEncoding enc, UChar map[], in map_search_backward() argument
3041 if (map[*s]) return (UChar* )s; in map_search_backward()
3154 p = map_search(reg->enc, reg->map, p, range); in forward_search_range()
3284 p = map_search_backward(reg->enc, reg->map, range, adjrange, p); in backward_search_range()
H A Dregparse.c533 i_renumber_name(UChar* key ARG_UNUSED, NameEntry* e, GroupNumRemap* map) in i_renumber_name() argument
539 e->back_refs[i] = map[e->back_refs[i]].new_val; in i_renumber_name()
543 e->back_ref1 = map[e->back_ref1].new_val; in i_renumber_name()
550 onig_renumber_name_table(regex_t* reg, GroupNumRemap* map) in onig_renumber_name_table() argument
555 onig_st_foreach(t, i_renumber_name, (HashDataType )map); in onig_renumber_name_table()
H A Dregparse.h321 extern int onig_renumber_name_table P_((regex_t* reg, GroupNumRemap* map));
/PHP-5.5/ext/mbstring/tests/
H A Dbug30549.phpt11 function test($enc, $map) {
14 foreach($map as $fromc => $toc) {

Completed in 128 milliseconds

123