/external/libchrome/crypto/ |
D | p224.cc | 51 uint32_t is_zero = 0, is_p = 0; in IsZero() local 53 is_zero |= minimal[i]; in IsZero() 58 is_zero |= is_zero >> 16; in IsZero() 59 is_zero |= is_zero >> 8; in IsZero() 60 is_zero |= is_zero >> 4; in IsZero() 61 is_zero |= is_zero >> 2; in IsZero() 62 is_zero |= is_zero >> 1; in IsZero() 71 is_zero &= is_p & 1; in IsZero() 72 is_zero = (~is_zero) << 31; in IsZero() 73 is_zero = static_cast<int32_t>(is_zero) >> 31; in IsZero() [all …]
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_opt_algebraic.c | 80 is_zero(struct vc4_compile *c, struct qreg reg) in is_zero() function 116 if (!is_zero(c, inst->src[arg])) in replace_x_0_with_x() 127 if (!is_zero(c, inst->src[arg])) in replace_x_0_with_0() 161 if (is_zero(c, inst->src[1]) && in qir_opt_algebraic() 171 if (is_zero(c, inst->src[1])) { in qir_opt_algebraic() 201 if (is_zero(c, fsub->src[0])) { in qir_opt_algebraic() 216 if (is_zero(c, fsub->src[0])) { in qir_opt_algebraic()
|
/external/epid-sdk/epid/member/tiny/math/unittests/ |
D | vli-test.cc | 161 int is_zero = 0; in TEST() local 163 is_zero = VliIsZero(&in_zero); in TEST() 164 EXPECT_TRUE(is_zero); in TEST() 167 int is_zero = 0; in TEST() local 170 is_zero = VliIsZero(&in_nonzero); in TEST() 171 EXPECT_FALSE(is_zero); in TEST()
|
/external/u-boot/scripts/coccinelle/null/ |
D | badzero.cocci | 102 @ r disable is_zero,isnt_zero exists @ 124 @ depends on patch disable is_zero,isnt_zero @ 148 @t2 depends on !patch disable is_zero,isnt_zero @ 194 @ depends on patch disable is_zero,isnt_zero @ 216 @ t3 depends on !patch disable is_zero,isnt_zero @
|
/external/epid-sdk/epid/common/math/src/ |
D | bignum.c | 98 bool is_zero = true; in ReadBigNum() local 122 is_zero = false; in ReadBigNum() 125 if (is_zero) { in ReadBigNum() 340 EpidStatus BigNumIsZero(BigNum const* a, bool* is_zero) { in BigNumIsZero() argument 344 if (!a || !is_zero) { in BigNumIsZero() 354 *is_zero = (IS_ZERO == sign); in BigNumIsZero()
|
/external/libchrome/base/process/ |
D | process_metrics.cc | 105 if (last_cumulative_cpu_.is_zero()) { in GetPlatformIndependentCPUUsage() 114 DCHECK(!time_delta.is_zero()); in GetPlatformIndependentCPUUsage() 115 if (time_delta.is_zero()) in GetPlatformIndependentCPUUsage()
|
/external/v8/src/objects/ |
D | bigint.cc | 362 if (x->is_zero()) { in UnaryMinus() 391 if (exponent->is_zero()) { in Exponentiate() 396 if (base->is_zero()) return base; in Exponentiate() 458 if (x->is_zero()) return x; in Multiply() 459 if (y->is_zero()) return y; in Multiply() 476 if (y->is_zero()) { in Divide() 507 if (y->is_zero()) { in Remainder() 569 if (y->is_zero() || x->is_zero()) return x; in LeftShift() 576 if (y->is_zero() || x->is_zero()) return x; in SignedRightShift() 737 } else if (x->is_zero()) { in Decrement() [all …]
|
D | bigint.h | 70 bool is_zero() const { return length() == 0; } in is_zero() function 137 bool ToBoolean() { return !is_zero(); } in ToBoolean() 140 return is_zero() ? 0 : ComputeIntegerHash(static_cast<uint32_t>(digit(0))); in Hash()
|
/external/libchrome/base/task_scheduler/ |
D | task.cc | 30 delay.is_zero() ? TimeTicks() : TimeTicks::Now() + delay, in Task() 35 (!delay.is_zero() && in Task()
|
D | service_thread.cc | 50 g_heartbeat_for_testing.is_zero() ? kHeartbeat in Init()
|
/external/deqp-deps/glslang/SPIRV/ |
D | hex_float.h | 688 const bool is_zero = exponent == 0 && fraction == 0; 689 const bool is_denorm = exponent == 0 && !is_zero; 696 int_exponent = is_zero ? 0 : int_exponent; 724 os << sign << "0x" << (is_zero ? '0' : '1'); 996 bool is_zero = is_denorm && (fraction == 0); 997 if (is_denorm && !is_zero) { 1000 } else if (is_zero) { 1004 if (exponent <= 0 && !is_zero) { 1015 while (exponent < 0 && !is_zero) { 1022 is_zero = true;
|
/external/deqp-deps/SPIRV-Tools/source/util/ |
D | hex_float.h | 758 const bool is_zero = exponent == 0 && fraction == 0; 759 const bool is_denorm = exponent == 0 && !is_zero; 766 int_exponent = is_zero ? 0 : int_exponent; 794 os << sign << "0x" << (is_zero ? '0' : '1'); 1066 bool is_zero = is_denorm && (fraction == 0); 1067 if (is_denorm && !is_zero) { 1070 } else if (is_zero) { 1074 if (exponent <= 0 && !is_zero) { 1085 while (exponent < 0 && !is_zero) { 1092 is_zero = true;
|
/external/swiftshader/third_party/SPIRV-Tools/source/util/ |
D | hex_float.h | 758 const bool is_zero = exponent == 0 && fraction == 0; 759 const bool is_denorm = exponent == 0 && !is_zero; 766 int_exponent = is_zero ? 0 : int_exponent; 794 os << sign << "0x" << (is_zero ? '0' : '1'); 1066 bool is_zero = is_denorm && (fraction == 0); 1067 if (is_denorm && !is_zero) { 1070 } else if (is_zero) { 1074 if (exponent <= 0 && !is_zero) { 1085 while (exponent < 0 && !is_zero) { 1092 is_zero = true;
|
/external/tensorflow/tensorflow/core/grappler/optimizers/data/ |
D | fusion_utils_test.cc | 96 auto *is_zero = graph.mutable_library()->add_function(); in TEST() local 97 *is_zero = test::function::IsZero(); in TEST() 100 FuseFunctions(*xtimes_two, *is_zero, "fused_map_and_filter_function", in TEST()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | data_format_ops.h | 43 auto is_zero = (x_mod == zero); in operator() local 47 y.device(d) = is_zero.select( in operator()
|
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/ |
D | frame_window_update.cc | 113 bool is_zero = t->flow_control->remote_window() <= 0; in grpc_chttp2_window_update_parser_parse() local 114 if (was_zero && !is_zero) { in grpc_chttp2_window_update_parser_parse()
|
/external/libchrome/components/timers/ |
D | alarm_timer_chromeos.cc | 69 delay.is_zero() ? base::TimeTicks() : base::TimeTicks::Now() + delay); in Reset() 90 if (delay.is_zero()) { in Reset()
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/ |
D | filter_fusion_test.py | 36 is_zero = lambda x: math_ops.equal(x, 0) function 40 filters = [take_all, is_zero, greater]
|
D | map_and_filter_fusion_test.py | 44 is_zero = lambda x: math_ops.equal(x, 0) function 49 filters = [take_all, is_zero, is_odd, greater]
|
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
D | binary_ops.cc | 135 auto is_zero = xla::Eq(x, zero); in XlogyImpl() local 136 return xla::Select(is_zero, zero, xla::Mul(x, xla::Log(y))); in XlogyImpl() 144 auto is_zero = xla::Eq(x, zero); in XdivyImpl() local 145 return xla::Select(is_zero, zero, xla::Div(x, y)); in XdivyImpl()
|
/external/libpng/contrib/libtests/ |
D | tarith.c | 318 int is_zero; /* Number is (still) zero */ member 338 c.is_zero = 0; in check_one_character() 383 (number_is_valid && !c.is_zero && c.is_negative)) in check_one_character() 389 if (PNG_FP_IS_ZERO(c.state) != (number_is_valid && c.is_zero)) in check_one_character() 396 (number_is_valid && !c.is_zero && !c.is_negative)) in check_one_character() 593 control.is_zero = 1; in validation_checkfp()
|
/external/mesa3d/src/compiler/glsl/ |
D | opt_algebraic.cpp | 105 return (ir == NULL) ? false : ir->is_zero(); in is_vec_zero() 673 if (op_const[i]->is_zero()) in handle_expression() 878 inner_const->is_zero() && in handle_expression() 885 outer_const->is_zero()) in handle_expression() 890 inner_const->is_zero() && in handle_expression() 897 outer_const->is_zero()) in handle_expression()
|
/external/epid-sdk/epid/common/math/ |
D | bignum.h | 191 EpidStatus BigNumIsZero(BigNum const* a, bool* is_zero);
|
/external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/ |
D | StaticSymmetry.h | 103 constexpr static bool is_zero = value && flags_cmp_ == NegationFlag; 111 (is_zero ? GlobalZeroFlag : 0);
|
/external/mesa3d/src/gallium/state_trackers/clover/api/ |
D | kernel.cpp | 233 if (!d_grid_size || any_of(is_zero(), grid_size)) in validate_grid_size() 257 if (any_of(is_zero(), block_size) || in validate_block_size()
|