Home | History | Annotate | Download | only in src

Lines Matching refs:pc_

24   DCHECK(pc_ <= buffer_.length());
25 if (pc_ + 3 >= buffer_.length()) {
28 *reinterpret_cast<uint32_t*>(buffer_.start() + pc_) = word;
29 pc_ += 4;
34 DCHECK(pc_ <= buffer_.length());
35 if (pc_ + 1 >= buffer_.length()) {
38 *reinterpret_cast<uint16_t*>(buffer_.start() + pc_) = word;
39 pc_ += 2;
44 DCHECK(pc_ <= buffer_.length());
45 if (pc_ == buffer_.length()) {
48 *reinterpret_cast<unsigned char*>(buffer_.start() + pc_) = word;
49 pc_ += 1;
54 DCHECK(pc_ <= buffer_.length());
55 if (pc_ + 3 >= buffer_.length()) {
58 *reinterpret_cast<uint32_t*>(buffer_.start() + pc_) = word;
59 pc_ += 4;