writesize 307 ext/shmop/shmop.c int writesize; writesize 330 ext/shmop/shmop.c writesize = (ZSTR_LEN(data) < shmop->size - offset) ? ZSTR_LEN(data) : shmop->size - offset; writesize 331 ext/shmop/shmop.c memcpy(shmop->addr + offset, ZSTR_VAL(data), writesize); writesize 333 ext/shmop/shmop.c RETURN_LONG(writesize);