Home
last modified time | relevance | path

Searched refs:rc_b (Results 1 – 6 of 6) sorted by relevance

/dports/lang/rust/rustc-1.58.1-src/src/doc/rust-by-example/src/std/
H A Drc.md21 println!("--- rc_a is cloned to rc_b ---");
23 let rc_b: Rc<String> = Rc::clone(&rc_a);
24 println!("Reference Count of rc_b: {}", Rc::strong_count(&rc_b));
28 println!("rc_a and rc_b are equal: {}", rc_a.eq(&rc_b));
32 println!("Value of rc_b: {}", rc_b);
34 println!("--- rc_b is dropped out of scope ---");
/dports/sysutils/lnav/lnav-0.10.1/src/
H A Dstyling.cc49 .FOR_FIELD(rgb_color, rc_b)
101 &rgb_out.rc_r, &rgb_out.rc_g, &rgb_out.rc_b) == 3) { in from_str()
104 rgb_out.rc_b |= rgb_out.rc_b << 4; in from_str()
110 &rgb_out.rc_r, &rgb_out.rc_g, &rgb_out.rc_b) == 3) { in from_str()
141 return rc_b < rhs.rc_b; in operator <()
163 rc_b == rhs.rc_b; in operator ==()
H A Dstyling.hh47 : rc_r(r), rc_g(g), rc_b(b) in rgb_color()
55 this->rc_b == -1; in empty()
72 short rc_b; member
H A Dview_curses.cc1027 b = rgb.rc_b / 255.0, in lab_color()
/dports/multimedia/mpv/mpv-0.34.1/sub/
H A Dimg_convert.c81 struct mp_rect *rc_b = &list[b]; in remove_intersecting_rcs() local
82 if (rc_a->x0 - M <= rc_b->x1 && rc_a->x1 + M >= rc_b->x0 && in remove_intersecting_rcs()
83 rc_a->y0 - M <= rc_b->y1 && rc_a->y1 + M >= rc_b->y0) in remove_intersecting_rcs()
85 mp_rect_union(rc_a, rc_b); in remove_intersecting_rcs()
/dports/sysutils/lnav/lnav-0.10.1/test/
H A Dlnav_doctests.cc102 CHECK(color.rc_b == 255);