Home | History | Annotate | Download | only in runtime

Lines Matching defs:out

44           // Note: We don't check to see if cur is out of range here,
88 // Note: We don't check to see if cur is out of range here,
119 uint8_t out = value & 0x7f;
122 *dest++ = out | 0x80;
123 out = value & 0x7f;
126 *dest++ = out;
133 uint8_t out = value & 0x7f;
136 dest->push_back(out | 0x80);
137 out = value & 0x7f;
140 dest->push_back(out);
158 uint8_t out = value & 0x7f;
160 *dest++ = out | 0x80;
162 out = value & 0x7f;
165 *dest++ = out;
173 uint8_t out = value & 0x7f;
175 dest->push_back(out | 0x80);
177 out = value & 0x7f;
180 dest->push_back(out);