Home | History | Annotate | Download | only in runtime

Lines Matching full:num_bytes_

46       : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
73 return num_bytes_;
77 arg_array_[num_bytes_ / 4] = value;
78 num_bytes_ += 4;
84 if (num_bytes_ % 8 == 0) {
85 num_bytes_ += 4;
88 arg_array_[num_bytes_ / 4] = value;
89 arg_array_[(num_bytes_ / 4) + 1] = value >> 32;
90 num_bytes_ += 8;
201 uint32_t num_bytes_;