Home
last modified time | relevance | path

Searched refs:n_copies (Results 1 – 5 of 5) sorted by relevance

/external/libcxx/test/std/thread/futures/futures.task/futures.task.members/
Dctor_func_alloc.pass.cpp32 static int n_copies; member in A
36 A(const A& a) : data_(a.data_) {++n_copies;} in A()
42 int A::n_copies = 0; member in A
56 assert(A::n_copies == 0); in main()
60 A::n_copies = 0; in main()
71 assert(A::n_copies > 0); in main()
75 A::n_copies = 0; in main()
87 A::n_copies = 0; in main()
99 A::n_copies = 0; in main()
108 assert(A::n_copies == 0); in main()
[all …]
Dctor_func.pass.cpp29 static int n_copies; member in A
33 A(const A& a) : data_(a.data_) {++n_copies;} in A()
39 int A::n_copies = 0; member in A
51 assert(A::n_copies == 0); in main()
54 A::n_copies = 0; in main()
55 A::n_copies = 0; in main()
63 assert(A::n_copies > 0); in main()
/external/harfbuzz_ng/src/
Dhb-ot-shape-complex-arabic.cc534 int n_copies = 0; in apply_stch() local
538 n_copies = (sign * w_remaining) / (sign * w_repeating) - 1; in apply_stch()
542 hb_position_t shortfall = sign * w_remaining - sign * w_repeating * (n_copies + 1); in apply_stch()
545 ++n_copies; in apply_stch()
546 hb_position_t excess = (n_copies + 1) * sign * w_repeating - sign * w_remaining; in apply_stch()
548 extra_repeat_overlap = excess / (n_copies * n_repeating); in apply_stch()
553 extra_glyphs_needed += n_copies * n_repeating; in apply_stch()
554 DEBUG_MSG (ARABIC, NULL, "will add extra %d copies of repeating tiles", n_copies); in apply_stch()
565 repeat += n_copies; in apply_stch()
/external/valgrind/memcheck/tests/common/
Dsh-mem-vec128.tmpl.c241 const U4 n_copies = N_EVENTS; in main() local
247 for (i = 0; i < n_copies; i++) { in main()
289 n_copies, n_d_aligned, n_s_aligned, n_both_aligned); in main()
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
DSPUISelLowering.cpp1955 size_t n_copies; in LowerSCALAR_TO_VECTOR() local
1961 case MVT::v16i8: n_copies = 16; VT = MVT::i8; break; in LowerSCALAR_TO_VECTOR()
1962 case MVT::v8i16: n_copies = 8; VT = MVT::i16; break; in LowerSCALAR_TO_VECTOR()
1963 case MVT::v4i32: n_copies = 4; VT = MVT::i32; break; in LowerSCALAR_TO_VECTOR()
1964 case MVT::v4f32: n_copies = 4; VT = MVT::f32; break; in LowerSCALAR_TO_VECTOR()
1965 case MVT::v2i64: n_copies = 2; VT = MVT::i64; break; in LowerSCALAR_TO_VECTOR()
1966 case MVT::v2f64: n_copies = 2; VT = MVT::f64; break; in LowerSCALAR_TO_VECTOR()
1970 for (size_t j = 0; j < n_copies; ++j) in LowerSCALAR_TO_VECTOR()