Lines Matching refs:code_buf
278 r.map(|(symbol, start, end, code_buf)| { in build_with_locals()
285 write::Expression::raw(code_buf), in build_with_locals()
344 let mut code_buf = Vec::new(); in build_with_locals() localVariable
354 &mut code_buf, in build_with_locals()
369 code_buf.extend_from_slice(c.as_slice()) in build_with_locals()
372 landing_positions.insert(marker.clone(), code_buf.len()); in build_with_locals()
378 code_buf.push( in build_with_locals()
385 code_buf.push(!0); in build_with_locals()
386 code_buf.push(!0); // these will be relocated below in build_with_locals()
387 jump_positions.push((target.clone(), code_buf.len())); in build_with_locals()
393 code_buf.extend_from_slice(&expr) in build_with_locals()
410 code_buf[new_from - 2..new_from] in build_with_locals()
413 Ok(Some((func_index, start, end, code_buf))) in build_with_locals()