Home
last modified time | relevance | path

Searched refs:body_bx (Results 1 – 3 of 3) sorted by relevance

/dports/net-im/fractal/fractal-4.4.0/fractal-gtk/src/widgets/
H A Dmessage.rs223 let body_bx = self.build_room_msg_body_bx(thread_pool, msg); in build_room_msg_content() localVariable
224 content.pack_start(&body_bx, true, true, 0); in build_room_msg_content()
234 let body_bx = gtk::Box::new(gtk::Orientation::Horizontal, 0); in build_room_msg_body_bx() localVariable
246 body_bx.pack_start(&body, true, true, 0); in build_room_msg_body_bx()
259 body_bx.pack_start(&edit_mark, false, false, 0); in build_room_msg_body_bx()
261 body_bx in build_room_msg_body_bx()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_llvm/src/
H A Dbuilder.rs548 let mut body_bx = self.build_sibling_block("repeat_loop_body"); in write_operand_repeatedly() localVariable
555 header_bx.cond_br(keep_going, body_bx.llbb(), next_bx.llbb()); in write_operand_repeatedly()
560 .store(&mut body_bx, PlaceRef::new_sized_aligned(current, cg_elem.layout, align)); in write_operand_repeatedly()
562 let next = body_bx.inbounds_gep( in write_operand_repeatedly()
567 body_bx.br(header_bx.llbb()); in write_operand_repeatedly()
568 header_bx.add_incoming_to_phi(current, next, body_bx.llbb()); in write_operand_repeatedly()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_gcc/src/
H A Dbuilder.rs887 let mut body_bx = self.build_sibling_block("repeat_loop_body"); in write_operand_repeatedly() localVariable
898 header_bx.cond_br(keep_going, body_bx.llbb(), next_bx.llbb()); in write_operand_repeatedly()
901 … cg_elem.val.store(&mut body_bx, PlaceRef::new_sized_aligned(current_val, cg_elem.layout, align)); in write_operand_repeatedly()
903 …let next = body_bx.inbounds_gep(self.backend_type(cg_elem.layout), current.to_rvalue(), &[self.con… in write_operand_repeatedly()
904 body_bx.llbb().add_assignment(None, current, next); in write_operand_repeatedly()
905 body_bx.br(header_bx.llbb()); in write_operand_repeatedly()