positions         245 ext/opcache/zend_shared_alloc.c 	ZSMMG(shared_memory_state).positions = (int *)zend_shared_alloc(sizeof(int) * ZSMMG(shared_segments_count));
positions         246 ext/opcache/zend_shared_alloc.c 	if (!ZSMMG(shared_memory_state).positions) {
positions         472 ext/opcache/zend_shared_alloc.c 		ZSMMG(shared_memory_state).positions[i] = ZSMMG(shared_segments)[i]->pos;
positions         482 ext/opcache/zend_shared_alloc.c 		ZSMMG(shared_segments)[i]->pos = ZSMMG(shared_memory_state).positions[i];
positions          94 ext/opcache/zend_shared_alloc.h 	int *positions;   /* current positions for each segment */
positions        1130 ext/standard/string.c 		char **positions = emalloc(allocated * sizeof(char *));
positions        1132 ext/standard/string.c 		positions[found++] = p1;
positions        1136 ext/standard/string.c 				positions = erealloc(positions, allocated*sizeof(char *));
positions        1138 ext/standard/string.c 			positions[found++] = p1 = p2 + ZSTR_LEN(delim);
positions        1145 ext/standard/string.c 			ZVAL_STRINGL(&tmp, positions[i], (positions[i+1] - ZSTR_LEN(delim)) - positions[i]);
positions        1148 ext/standard/string.c 		efree(positions);