Searched refs:new_r (Results 1 – 8 of 8) sorted by relevance
/external/ltp/lib/ |
D | tst_coredump.c | 16 struct rlimit new_r, old_r; in tst_no_corefile() local 25 new_r.rlim_cur = 1; in tst_no_corefile() 26 new_r.rlim_max = 1; in tst_no_corefile() 27 SAFE_SETRLIMIT(RLIMIT_CORE, &new_r); in tst_no_corefile()
|
/external/rust/crates/crossbeam-channel/tests/ |
D | zero.rs | 531 let (new_s, new_r) = bounded(0); in channel_through_channel() 532 let new_r: T = Box::new(Some(new_r)); in channel_through_channel() localVariable 534 s.send(new_r).unwrap(); in channel_through_channel()
|
D | list.rs | 510 let (new_s, new_r) = unbounded(); in channel_through_channel() 511 let new_r: T = Box::new(Some(new_r)); in channel_through_channel() localVariable 513 s.send(new_r).unwrap(); in channel_through_channel()
|
D | array.rs | 631 let (new_s, new_r) = bounded(1); in channel_through_channel() 632 let new_r: T = Box::new(Some(new_r)); in channel_through_channel() localVariable 634 s.send(new_r).unwrap(); in channel_through_channel()
|
D | ready.rs | 683 let (new_s, new_r) = bounded(cap); in channel_through_channel() 684 let new_r: T = Box::new(Some(new_r)); in channel_through_channel() localVariable 690 0 => assert!(s.try_send(new_r).is_ok()), in channel_through_channel()
|
D | select_macro.rs | 696 let (new_s, new_r) = bounded(cap); in channel_through_channel() 697 let new_r: T = Box::new(Some(new_r)); in channel_through_channel() localVariable 700 send(s, new_r) -> _ => {} in channel_through_channel()
|
D | select.rs | 957 let (new_s, new_r) = bounded(cap); in channel_through_channel() 958 let new_r: T = Box::new(Some(new_r)); in channel_through_channel() localVariable 965 ix if ix == oper1 => assert!(oper.send(&s, new_r).is_ok()), in channel_through_channel()
|
/external/webp/src/dsp/ |
D | lossless_enc.c | 508 const uint32_t new_r = (((argb >> 16) & 0xff) - green) & 0xff; in VP8LSubtractGreenFromBlueAndRed_C() local 510 argb_data[i] = (argb & 0xff00ff00u) | (new_r << 16) | new_b; in VP8LSubtractGreenFromBlueAndRed_C()
|