Lines Matching refs:index_
110 if (index_ + arraySize > FUZZ_DATA_LEN) { in GetCharArray()
111 index_ = FUZZ_HEAD_DATA; in GetCharArray()
114 charArray[i] = static_cast<char>(data_[i + index_]); in GetCharArray()
116 index_ += arraySize; in GetCharArray()
122 if (index_ + FUZZ_INT_LEN_DATA > FUZZ_DATA_LEN) { in GetInt()
123 index_ = FUZZ_HEAD_DATA; in GetInt()
126 (static_cast<uint32_t>(data_[index_ + CHAR_TO_INT_INDEX0]) << in GetInt()
128 (static_cast<uint32_t>(data_[index_ + CHAR_TO_INT_INDEX1]) << in GetInt()
130 (static_cast<uint32_t>(data_[index_ + CHAR_TO_INT_INDEX2]) << in GetInt()
132 (static_cast<uint32_t>(data_[index_ + CHAR_TO_INT_INDEX3]) << in GetInt()
134 index_ += FUZZ_INT_LEN_DATA; in GetInt()
141 if (index_ + FUZZ_INT_LEN_DATA > FUZZ_DATA_LEN) { in GetUInt()
142 index_ = FUZZ_HEAD_DATA; in GetUInt()
144 number = (static_cast<uint32_t>(data_[index_ + CHAR_TO_INT_INDEX0]) << in GetUInt()
146 (static_cast<uint32_t>(data_[index_ + CHAR_TO_INT_INDEX1]) << in GetUInt()
148 (static_cast<uint32_t>(data_[index_ + CHAR_TO_INT_INDEX2]) << in GetUInt()
150 (static_cast<uint32_t>(data_[index_ + CHAR_TO_INT_INDEX3]) << in GetUInt()
152 index_ += FUZZ_INT_LEN_DATA; in GetUInt()