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

12

/external/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
H A Dlvalue_ref.pass.cpp24 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 Drvalue_ref.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/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_decodemv.c367 int is_compound, int allow_hp, vp9_reader *r) {
375 for (i = 0; i < 1 + is_compound; ++i) {
384 if (is_compound)
390 if (is_compound)
396 if (is_compound)
431 int inter_mode_ctx, ref, is_compound; local
434 is_compound = has_second_ref(mbmi);
436 for (ref = 0; ref < 1 + is_compound; ++ref) {
462 for (ref = 0; ref < 1 + is_compound; ++ref) {
485 for (ref = 0; ref < 1 + is_compound;
364 assign_mv(VP9_COMMON *cm, PREDICTION_MODE mode, int_mv mv[2], int_mv ref_mv[2], int_mv nearest_mv[2], int_mv near_mv[2], int is_compound, int allow_hp, vp9_reader *r) argument
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodemv.c368 int is_compound, int allow_hp, vp9_reader *r) {
376 for (i = 0; i < 1 + is_compound; ++i) {
385 if (is_compound)
391 if (is_compound)
397 if (is_compound)
432 int inter_mode_ctx, ref, is_compound; local
435 is_compound = has_second_ref(mbmi);
437 for (ref = 0; ref < 1 + is_compound; ++ref) {
458 for (ref = 0; ref < 1 + is_compound; ++ref) {
481 for (ref = 0; ref < 1 + is_compound;
365 assign_mv(VP9_COMMON *cm, MB_PREDICTION_MODE mode, int_mv mv[2], int_mv ref_mv[2], int_mv nearest_mv[2], int_mv near_mv[2], int is_compound, int allow_hp, vp9_reader *r) argument
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconinter.c148 const int is_compound = has_second_ref(&mi->mbmi); local
152 for (ref = 0; ref < 1 + is_compound; ++ref) {
252 const int is_compound = has_second_ref(&mi->mbmi); local
256 for (ref = 0; ref < 1 + is_compound; ++ref) {
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_bitstream.c193 const int is_compound = has_second_ref(mbmi); local
199 assert(!is_compound);
206 vp9_write(w, is_compound, vp9_get_reference_mode_prob(cm, xd));
208 assert(!is_compound == (cm->reference_mode == SINGLE_REFERENCE));
211 if (is_compound) {
238 const int is_compound = has_second_ref(mbmi); local
313 for (ref = 0; ref < 1 + is_compound; ++ref)
322 for (ref = 0; ref < 1 + is_compound; ++ref)
H A Dvp9_rdopt.c1049 const int is_compound = has_second_ref(mbmi); local
1056 if (is_compound) {
1065 if (is_compound)
1070 if (is_compound)
1078 if (is_compound)
1118 const int is_compound = has_second_ref(&mi->mbmi); local
1121 for (ref = 0; ref < 1 + is_compound; ++ref) {
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_bitstream.c196 const int is_compound = has_second_ref(mbmi); local
202 assert(!is_compound);
209 vp9_write(w, is_compound, vp9_get_reference_mode_prob(cm, xd));
211 assert(!is_compound == (cm->reference_mode == SINGLE_REFERENCE));
214 if (is_compound) {
241 const int is_compound = has_second_ref(mbmi); local
315 for (ref = 0; ref < 1 + is_compound; ++ref)
324 for (ref = 0; ref < 1 + is_compound; ++ref)
H A Dvp9_rdopt.c1486 const int is_compound = has_second_ref(mbmi); local
1495 if (is_compound) {
1503 if (is_compound)
1508 if (is_compound)
1513 if (is_compound)
1521 if (is_compound)
1561 const int is_compound = has_second_ref(&mi->mbmi); local
1564 for (ref = 0; ref < 1 + is_compound; ++ref) {
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_reconinter.c266 const int is_compound = has_second_ref(&mi->mbmi); local
270 for (ref = 0; ref < 1 + is_compound; ++ref) {
375 const int is_compound = has_second_ref(&mi->mbmi); local
379 for (ref = 0; ref < 1 + is_compound; ++ref) {
/external/chromium_org/v8/src/
H A Dtyping.cc455 expr->is_compound() ? expr->binary_operation() : expr->value();
H A Dast.h2166 Assignment* AsSimpleAssignment() { return !is_compound() ? this : NULL; }
2176 bool is_compound() const { return op() > Token::ASSIGN; } function in class:v8::internal::FINAL
2205 if (is_compound()) {
/external/chromium_org/v8/src/arm/
H A Dfull-codegen-arm.cc1903 if (expr->is_compound()) {
1912 if (expr->is_compound()) {
1927 if (expr->is_compound()) {
/external/chromium_org/v8/src/arm64/
H A Dfull-codegen-arm64.cc1882 if (expr->is_compound()) {
1891 if (expr->is_compound()) {
1905 if (expr->is_compound()) {

Completed in 4825 milliseconds

12