positions         237 ext/opcache/zend_shared_alloc.c 	ZSMMG(shared_memory_state).positions = (int *)zend_shared_alloc(sizeof(int) * ZSMMG(shared_segments_count));
positions         238 ext/opcache/zend_shared_alloc.c 	if (!ZSMMG(shared_memory_state).positions) {
positions         457 ext/opcache/zend_shared_alloc.c 		ZSMMG(shared_memory_state).positions[i] = ZSMMG(shared_segments)[i]->pos;
positions         467 ext/opcache/zend_shared_alloc.c 		ZSMMG(shared_segments)[i]->pos = ZSMMG(shared_memory_state).positions[i];
positions          93 ext/opcache/zend_shared_alloc.h 	int *positions;   /* current positions for each segment */
positions        1065 ext/standard/string.c 		char **positions = emalloc(allocated * sizeof(char *));
positions        1067 ext/standard/string.c 		positions[found++] = p1;
positions        1071 ext/standard/string.c 				positions = erealloc(positions, allocated*sizeof(char *));
positions        1073 ext/standard/string.c 			positions[found++] = p1 = p2 + Z_STRLEN_P(delim);
positions        1079 ext/standard/string.c 			add_next_index_stringl(return_value, positions[i],
positions        1080 ext/standard/string.c 					(positions[i+1] - Z_STRLEN_P(delim)) - positions[i],
positions        1084 ext/standard/string.c 		efree(positions);