Lines Matching defs:out
44 // Note: We don't check to see if cur is out of range here,
58 uint32_t* out) {
86 // Note: We don't check to see if cur is out of range here,
95 *out = static_cast<uint32_t>(result);
131 // Note: We don't check to see if cur is out of range here,
145 int32_t* out) {
181 // Note: We don't check to see if cur is out of range here,
190 *out = static_cast<uint32_t>(result);
213 uint8_t out = value & 0x7f;
216 *dest++ = out | 0x80;
217 out = value & 0x7f;
220 *dest++ = out;
227 uint8_t out = value & 0x7f;
230 dest->push_back(out | 0x80);
231 out = value & 0x7f;
234 dest->push_back(out);
252 uint8_t out = value & 0x7f;
254 *dest++ = out | 0x80;
256 out = value & 0x7f;
259 *dest++ = out;
267 uint8_t out = value & 0x7f;
269 dest->push_back(out | 0x80);
271 out = value & 0x7f;
274 dest->push_back(out);