To draw a flowchart symbol for "Storage", similar to the one mentioned in "display" shape for flowchart with tikz , you can use the following code.
\documentclass{article}
\usepackage[margin=0.5in]{geometry}
\usepackage{pgfplots}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows}
\tikzstyle{process} = [rectangle, minimum width=3cm, minimum height=1cm, text centered, text
width=3cm, draw=orange, fill=orange!20]
\tikzstyle{arrow} = [thick,->,>=stealth]
\makeatletter
\pgfdeclareshape{display}
{
\inheritsavedanchors[from=rectangle] % this is nearly a rectangle
\inheritanchorborder[from=rectangle]
\inheritanchor[from=rectangle]{north}
\inheritanchor[from=rectangle]{west}
\inheritanchor[from=rectangle]{east}
\inheritanchor[from=rectangle]{south}
\inheritanchor[from=rectangle]{center}
\inheritbackgroundpath[from=rectangle]
\backgroundpath{
% points
\southwest \pgf@xa=\pgf@x \pgf@ya=\pgf@y
\northeast \pgf@xb=\pgf@x \pgf@yb=\pgf@y
% dimensions
\pgfmathsetlength{\pgfutil@tempdima}{\pgf@xb-\pgf@xa}
\pgfmathsetlength{\pgfutil@tempdimb}{\pgf@yb-\pgf@ya}
% path
\pgfpathmoveto{\pgfpointadd{\pgfqpoint{\pgf@xa}{\pgf@ya}}{\pgfqpoint{-0.2\pgfutil@tempdima}
{0pt}}}
\pgfpatharc{-90}{90}{0.2\pgfutil@tempdima and 0.5\pgfutil@tempdimb}
\pgfpathlineto{\pgfpointadd{\pgfqpoint{\pgf@xa}{\pgf@yb}}{\pgfqpoint{0.8\pgfutil@tempdima}
{0pt}}}
\pgfpathlineto{\pgfpointadd{\pgfqpoint{\pgf@xb}{\pgf@yb}}{\pgfqpoint{-0.2\pgfutil@tempdima}
{0pt}}}
\pgfpatharc{90}{-90}{0.2\pgfutil@tempdima and 0.5\pgfutil@tempdimb}
\pgfpathlineto{\pgfpointadd{\pgfqpoint{\pgf@xb}{\pgf@ya}}{\pgfqpoint{-0.2\pgfutil@tempdima}
{0pt}}}
\pgfpathlineto{\pgfpointadd{\pgfqpoint{\pgf@xa}{\pgf@ya}}{\pgfqpoint{0.8\pgfutil@tempdima}
{0pt}}}
\pgfpathclose
}
}
\makeatother
\tikzstyle{disp} = [display, draw, fill = cyan!20,
text width = 5em, align=center, minimum height = 3.5em]
\pgfplotsset{width=10cm, compat=1.9}
\begin{document}
\begin{tikzpicture}[node distance=2cm]
\node (disp) [disp] {Storage};
\node (pro2b) [process, right of = disp, xshift=2cm] {Process 2b};
\draw [arrow] (disp) -- (pro2b);
\end{tikzpicture}
\end{document}

\tikz\node[cylinder, aspect=.5, minimum height=5mm, cylinder uses custom fill, cylinder body fill=blue!30, draw] {};? – Kpym May 11 '18 at 14:28