Lines Matching refs:byte_offset
82 int GetNearestWasmFunction(const WasmModule* module, uint32_t byte_offset) {
91 if (functions[mid].code.offset() <= byte_offset) {
102 int GetContainingWasmFunction(const WasmModule* module, uint32_t byte_offset) {
103 int func_index = GetNearestWasmFunction(module, byte_offset);
108 if (byte_offset < func.code.offset() ||
109 byte_offset >= func.code.end_offset()) {
146 int byte_offset,
157 return a.byte_offset < b.byte_offset;
163 AsmJsOffsetEntry{byte_offset, 0, 0}, byte_offset_less);
165 DCHECK_EQ(byte_offset, it->byte_offset);
601 uint32_t byte_offset, bool is_at_number_conversion) {
607 return byte_offset + GetWasmFunctionOffset(module, func_index);
612 declared_function_index(module, func_index), byte_offset,