Lines Matching defs:out
41 // Note: We don't check to see if cur is out of range here,
85 // Note: We don't check to see if cur is out of range here,
116 uint8_t out = value & 0x7f;
119 *dest++ = out | 0x80;
120 out = value & 0x7f;
123 *dest++ = out;
129 uint8_t out = value & 0x7f;
131 *dest++ = out | 0x80;
133 out = value & 0x7f;
136 *dest++ = out;
151 uint8_t out = value & 0x7f;
154 data_.push_back(out | 0x80);
155 out = value & 0x7f;
158 data_.push_back(out);
170 uint8_t out = value & 0x7f;
172 data_.push_back(out | 0x80);
174 out = value & 0x7f;
177 data_.push_back(out);