Lines Matching refs:pSequence
41 pSequence = aSequence.getArray(); in ByteGrabber()
120 pSequence = aSequence.getConstArray(); in operator >>()
122 ( (pSequence[0] & 0xFF) in operator >>()
123 | (pSequence[1] & 0xFF) << 8); in operator >>()
136 pSequence = aSequence.getConstArray(); in operator >>()
138 ( (pSequence[0] & 0xFF) in operator >>()
139 | ( pSequence[1] & 0xFF ) << 8 in operator >>()
140 | ( pSequence[2] & 0xFF ) << 16 in operator >>()
141 | ( pSequence[3] & 0xFF ) << 24 ); in operator >>()
164 pSequence = aSequence.getConstArray(); in operator >>()
166 ( (pSequence[0] & 0xFF) in operator >>()
167 | (pSequence[1] & 0xFF) << 8); in operator >>()
179 pSequence = aSequence.getConstArray(); in operator >>()
181 ( (pSequence[0] & 0xFF) in operator >>()
182 | ( pSequence[1] & 0xFF ) << 8 in operator >>()
183 | ( pSequence[2] & 0xFF ) << 16 in operator >>()
184 | ( pSequence[3] & 0xFF ) << 24 ); in operator >>()