/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/libweave/third_party/chromium/crypto/ |
D | p224.cc | 65 uint32_t is_zero = 0, is_p = 0; in IsZero() local 67 is_zero |= minimal[i]; in IsZero() 72 is_zero |= is_zero >> 16; in IsZero() 73 is_zero |= is_zero >> 8; in IsZero() 74 is_zero |= is_zero >> 4; in IsZero() 75 is_zero |= is_zero >> 2; in IsZero() 76 is_zero |= is_zero >> 1; in IsZero() 85 is_zero &= is_p & 1; in IsZero() 86 is_zero = (~is_zero) << 31; in IsZero() 87 is_zero = static_cast<int32_t>(is_zero) >> 31; in IsZero() [all …]
|
/external/toybox/toys/pending/ |
D | expr.c | 62 static int is_zero(struct value *v) in is_zero() function 108 if (is_zero(rhs)) error_exit("division by zero"); in mod() 115 if (is_zero(rhs)) error_exit("division by zero"); in divi() 175 if (is_zero(lhs) || is_zero(rhs)) { in and() 183 if (is_zero(lhs)) *lhs = *rhs; in or() 275 exit(is_zero(&ret)); in expr_main()
|
/external/boringssl/src/crypto/ec/ |
D | p256-64.c | 830 u64 is_zero = small[0] | small[1] | small[2] | small[3]; in smallfelem_is_zero() local 831 is_zero--; in smallfelem_is_zero() 832 is_zero &= is_zero << 32; in smallfelem_is_zero() 833 is_zero &= is_zero << 16; in smallfelem_is_zero() 834 is_zero &= is_zero << 8; in smallfelem_is_zero() 835 is_zero &= is_zero << 4; in smallfelem_is_zero() 836 is_zero &= is_zero << 2; in smallfelem_is_zero() 837 is_zero &= is_zero << 1; in smallfelem_is_zero() 838 is_zero = ((s64)is_zero) >> 63; in smallfelem_is_zero() 851 is_zero |= is_p; in smallfelem_is_zero() [all …]
|
/external/skia/src/opts/ |
D | SkTextureCompressor_opts.h | 121 static inline bool is_zero(uint8x16_t x) { in is_zero() function 174 if (is_zero(ncmp)) { in compress_r11eac_blocks() 175 if (is_zero(alphaRow1)) { in compress_r11eac_blocks() 181 } else if (is_zero(nAlphaRow1)) { in compress_r11eac_blocks()
|
/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/aac/libFDK/include/ |
D | fixpoint_math.h | 148 UCHAR is_zero=(y==0); in sqrtFixp_lookup() local 156 return(is_zero ? 0 : t); in sqrtFixp_lookup()
|
/external/mesa3d/src/gallium/state_trackers/clover/api/ |
D | context.cpp | 40 if (any_of(is_zero<cl_device_id>(), devs, devs + num_devs)) in clCreateContext()
|
D | kernel.cpp | 209 any_of(is_zero<cl_event>(), deps, deps + num_deps)) in kernel_validate() 223 if (!grid_size || any_of(is_zero<size_t>(), grid_size, grid_size + dims)) in kernel_validate()
|
D | program.cpp | 38 any_of(is_zero<const char *>(), strings, strings + count)) in clCreateProgramWithSource()
|
D | transfer.cpp | 43 any_of(is_zero<cl_event>(), deps, deps + num_deps)) in validate_base()
|
/external/valgrind/callgrind/ |
D | callgrind_annotate.in | 359 sub is_zero ($) 697 if ((not defined $summary_CC) || is_zero($summary_CC)) { 702 if ((not defined $summary_CC) || is_zero($summary_CC)) {
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_vec4.cpp | 515 src_reg::is_zero() const in is_zero() function in brw::src_reg 562 if (inst->src[1].is_zero()) { in opt_algebraic() 570 if (inst->src[1].is_zero()) { in opt_algebraic()
|
D | brw_vec4.h | 103 bool is_zero() const;
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xstutil/include/ |
D | d3d1xstutil.h | 317 bool is_zero() 343 if(p_atomic_dec_zero((int32_t*)&atomic_refcnt) && !nonatomic_refcnt && is_zero()) 361 if(!atomic_refcnt && is_zero())
|
/external/mesa3d/src/glsl/ |
D | lower_vector.cpp | 74 if (!c->is_one() && !c->is_zero() && !c->is_negative_one()) in is_extended_swizzle()
|
D | ir.cpp | 34 bool ir_rvalue::is_zero() const in is_zero() function in ir_rvalue 1027 ir_constant::is_zero() const in is_zero() function in ir_constant 1710 if (expr->operands[0]->is_zero()) in try_max_zero() 1713 if (expr->operands[1]->is_zero()) in try_max_zero()
|
D | ir.h | 207 virtual bool is_zero() const; 1784 virtual bool is_zero() const;
|
D | opt_algebraic.cpp | 78 return (ir == NULL) ? false : ir->is_zero(); in is_vec_zero()
|
/external/webrtc/webrtc/modules/desktop_capture/ |
D | desktop_geometry.h | 27 bool is_zero() const { return x_ == 0 && y_ == 0; } in is_zero() function
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
D | base.hpp | 277 is_zero() { in is_zero() function
|
/external/libweave/third_party/chromium/base/time/ |
D | time.cc | 279 if (!interval_offset.is_zero() && tick_phase < *this) in SnappedToNextTick()
|
D | time.h | 148 bool is_zero() const { in is_zero() function
|
/external/libchrome/base/time/ |
D | time.cc | 311 if (!interval_offset.is_zero() && tick_phase < *this) in SnappedToNextTick()
|
D | time.h | 148 bool is_zero() const { in is_zero() function
|