Home
last modified time | relevance | path

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

/external/llvm-project/libclc/generic/lib/math/
Dclc_fmod.cl100 // Set ntimes to the number of times we need to do a
103 // less than the mantissa of y, ntimes will be one too large
106 int ntimes = max(0, (xexp1 - yexp1) / 53);
107 double w = ldexp(dy, ntimes * 53);
108 w = ntimes == 0 ? dy : w;
109 double scale = ntimes == 0 ? 1.0 : 0x1.0p-53;
120 for (i = 0; i < ntimes; i++) {
Dclc_remainder.cl110 // Set ntimes to the number of times we need to do a
113 // less than the mantissa of y, ntimes will be one too large
116 int ntimes = max(0, (xexp1 - yexp1) / 53);
117 double w = ldexp(dy, ntimes * 53);
118 w = ntimes == 0 ? dy : w;
119 double scale = ntimes == 0 ? 1.0 : 0x1.0p-53;
130 for (i = 0; i < ntimes; i++) {
Dclc_remquo.cl135 // Set ntimes to the number of times we need to do a
138 // less than the mantissa of y, ntimes will be one too large
141 int ntimes = max(0, (xexp1 - yexp1) / 53);
142 double w = ldexp(dy, ntimes * 53);
143 w = ntimes == 0 ? dy : w;
144 double scale = ntimes == 0 ? 1.0 : 0x1.0p-53;
155 for (i = 0; i < ntimes; i++) {
/external/llvm/test/Transforms/LoopVectorize/PowerPC/
Dvsx-tsvc-s173.ll8 @ntimes = external hidden unnamed_addr global i32, align 4
12 %0 = load i32, i32* @ntimes, align 4
36 %4 = load i32, i32* @ntimes, align 4
/external/llvm-project/llvm/test/Transforms/LoopVectorize/PowerPC/
Dvsx-tsvc-s173.ll8 @ntimes = external hidden unnamed_addr global i32, align 4
12 %0 = load i32, i32* @ntimes, align 4
36 %4 = load i32, i32* @ntimes, align 4
/external/rust/crates/itertools/tests/
Dtest_std.rs669 let mut ntimes = 0; in group_by() localVariable
671 for (_, sub) in &text.chars().group_by(|&x| { ntimes += 1; x}) { in group_by()
675 assert_eq!(ntimes, text.len()); in group_by()
679 let mut ntimes = 0; in group_by() localVariable
681 for _ in &text.chars().group_by(|&x| { ntimes += 1; x}) { in group_by()
683 assert_eq!(ntimes, text.len()); in group_by()