Home | History | Annotate | Download | only in wasm

Lines Matching full:byte

31   Decoder(const byte* start, const byte* end)
40 // Reads a 8-bit unsigned integer (byte) and advances {pc_}.
45 byte val = *(pc_++);
49 error("expected 1 byte, but fell off end");
60 byte b0 = pc_[0];
61 byte b1 = pc_[1];
63 byte b1 = pc_[0];
64 byte b0 = pc_[1];
82 byte b0 = pc_[0];
83 byte b1 = pc_[1];
84 byte b2 = pc_[2];
85 byte b3 = pc_[3];
87 byte b3 = pc_[0];
88 byte b2 = pc_[1];
89 byte b1 = pc_[2];
90 byte b0 = pc_[3];
110 error("expected at least 1 byte, but fell off end");
114 const byte* pos = pc_;
115 const byte* end = pc_ + 5;
120 byte b = 0;
150 void error(const byte* pc, const char* msg) { error(pc, nullptr, msg); }
153 void error(const byte* pc, const byte* pt, const char* format, ...) {
180 for (const byte* ptr = pc_; ptr < limit_; ptr++) {
207 void Reset(const byte* start, const byte* end) {
220 const byte* start_;
221 const byte* pc_;
222 const byte* limit_;
223 const byte* error_pc_;
224 const byte* error_pt_;