Searched refs:is_compound (Results 1 - 25 of 39) sorted by relevance

12

/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/
H A Dis_compound.pass.cpp12 // is_compound
21 static_assert( std::is_compound<T>::value, "");
22 static_assert( std::is_compound<const T>::value, "");
23 static_assert( std::is_compound<volatile T>::value, "");
24 static_assert( std::is_compound<const volatile T>::value, "");
36 static_assert(!std::is_compound<T>::value, "");
37 static_assert(!std::is_compound<const T>::value, "");
38 static_assert(!std::is_compound<volatile T>::value, "");
39 static_assert(!std::is_compound<const volatile T>::value, "");
H A Dlvalue_ref.pass.cpp24 static_assert( std::is_compound<T>::value, "");
H A Drvalue_ref.pass.cpp26 static_assert( std::is_compound<T>::value, "");
H A Dclass.pass.cpp24 static_assert( std::is_compound<T>::value, "");
H A Denum.pass.cpp24 static_assert( std::is_compound<T>::value, "");
H A Dfloating_point.pass.cpp24 static_assert(!std::is_compound<T>::value, "");
H A Dfunction.pass.cpp24 static_assert( std::is_compound<T>::value, "");
H A Dmember_function_pointer.pass.cpp24 static_assert( std::is_compound<T>::value, "");
H A Dmember_object_pointer.pass.cpp24 static_assert( std::is_compound<T>::value, "");
H A Dpointer.pass.cpp24 static_assert( std::is_compound<T>::value, "");
H A Dunion.pass.cpp24 static_assert( std::is_compound<T>::value, "");
H A Dvoid.pass.cpp24 static_assert(!std::is_compound<T>::value, "");
H A Darray.pass.cpp24 static_assert( std::is_compound<T>::value, "");
H A Dintegral.pass.cpp24 static_assert(!std::is_compound<T>::value, "");
/external/libcxx/test/std/experimental/utilities/meta/meta.type.synop/
H A Dmeta.unary.comp.pass.cpp80 static_assert(ex::is_compound_v<T> == std::is_compound<T>::value, "");
85 static_assert(ex::is_compound_v<T> == std::is_compound<T>::value, "");
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodemv.c405 int is_compound, int allow_hp, vpx_reader *r) {
413 for (i = 0; i < 1 + is_compound; ++i) {
722 int ref, is_compound; local
727 is_compound = has_second_ref(mi);
748 for (ref = 0; ref < 1 + is_compound; ++ref) {
775 // if is_compound is false, copying/clamping it may trigger a MSan warning.
783 for (ref = 0; ref < 1 + is_compound; ++ref)
789 best_sub8x8, is_compound, allow_hp, r)) {
804 best_ref_mvs, is_compound, allow_hp, r);
402 assign_mv(VP9_COMMON *cm, MACROBLOCKD *xd, PREDICTION_MODE mode, int_mv mv[2], int_mv ref_mv[2], int_mv near_nearest_mv[2], int is_compound, int allow_hp, vpx_reader *r) argument
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconinter.c131 const int is_compound = has_second_ref(mi); local
135 for (ref = 0; ref < 1 + is_compound; ++ref) {
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_bitstream.c201 const int is_compound = has_second_ref(mi); local
207 assert(!is_compound);
214 vpx_write(w, is_compound, vp9_get_reference_mode_prob(cm, xd));
216 assert((!is_compound) == (cm->reference_mode == SINGLE_REFERENCE));
219 if (is_compound) {
247 const int is_compound = has_second_ref(mi); local
318 for (ref = 0; ref < 1 + is_compound; ++ref)
327 for (ref = 0; ref < 1 + is_compound; ++ref)
/external/v8/src/asmjs/
H A Dasm-typer.cc737 DCHECK(!assign->is_compound());
738 if (assign->is_compound()) {
935 if (assign->is_compound()) {
1063 if (expr == nullptr || expr->is_compound()) {
/external/v8/src/ast/
H A Dast-numbering.cc372 if (node->is_compound()) VisitBinaryOperation(node->binary_operation());
/external/v8/src/full-codegen/arm/
H A Dfull-codegen-arm.cc1632 if (expr->is_compound()) {
1646 if (expr->is_compound()) {
1660 if (expr->is_compound()) {
1670 if (expr->is_compound()) {
1685 if (expr->is_compound()) {
/external/v8/src/full-codegen/arm64/
H A Dfull-codegen-arm64.cc1614 if (expr->is_compound()) {
1628 if (expr->is_compound()) {
1641 if (expr->is_compound()) {
1650 if (expr->is_compound()) {
1664 if (expr->is_compound()) {
/external/v8/src/full-codegen/ia32/
H A Dfull-codegen-ia32.cc1554 if (expr->is_compound()) {
1560 if (expr->is_compound()) {
1575 if (expr->is_compound()) {
1582 if (expr->is_compound()) {
1597 if (expr->is_compound()) {
/external/v8/src/full-codegen/ppc/
H A Dfull-codegen-ppc.cc1601 if (expr->is_compound()) {
1615 if (expr->is_compound()) {
1628 if (expr->is_compound()) {
1638 if (expr->is_compound()) {
1653 if (expr->is_compound()) {
/external/v8/src/full-codegen/s390/
H A Dfull-codegen-s390.cc1561 if (expr->is_compound()) {
1575 if (expr->is_compound()) {
1588 if (expr->is_compound()) {
1598 if (expr->is_compound()) {
1613 if (expr->is_compound()) {

Completed in 491 milliseconds

12