HomeSort by relevance Sort by last modified time
    Searched refs:is_zero (Results 1 - 25 of 50) sorted by null

1 2

  /external/toybox/toys/pending/
expr.c 62 static int is_zero(struct value *v) function
108 if (is_zero(rhs)) error_exit("division by zero");
115 if (is_zero(rhs)) error_exit("division by zero");
175 if (is_zero(lhs) || is_zero(rhs)) {
183 if (is_zero(lhs)) *lhs = *rhs;
275 exit(is_zero(&ret));
  /external/libchrome/crypto/
p224.cc 51 uint32_t is_zero = 0, is_p = 0; local
53 is_zero |= minimal[i];
57 // If either is_zero or is_p is 0, then we should return 1.
58 is_zero |= is_zero >> 16;
59 is_zero |= is_zero >> 8;
60 is_zero |= is_zero >> 4;
61 is_zero |= is_zero >> 2
    [all...]
  /external/libweave/third_party/chromium/crypto/
p224.cc 65 uint32_t is_zero = 0, is_p = 0; local
67 is_zero |= minimal[i];
71 // If either is_zero or is_p is 0, then we should return 1.
72 is_zero |= is_zero >> 16;
73 is_zero |= is_zero >> 8;
74 is_zero |= is_zero >> 4;
75 is_zero |= is_zero >> 2
    [all...]
  /system/connectivity/shill/
icmp_session.cc 108 if (!latency.is_zero()) {
130 if (latency.is_zero()) {
  /external/mesa3d/src/gallium/state_trackers/clover/api/
context.cpp 40 if (any_of(is_zero<cl_device_id>(), devs, devs + num_devs))
kernel.cpp 209 any_of(is_zero<cl_event>(), deps, deps + num_deps))
223 if (!grid_size || any_of(is_zero<size_t>(), grid_size, grid_size + dims))
program.cpp 38 any_of(is_zero<const char *>(), strings, strings + count))
  /external/skia/src/opts/
SkTextureCompressor_opts.h 121 static inline bool is_zero(uint8x16_t x) { function in namespace:SK_OPTS_NS
174 if (is_zero(ncmp)) {
175 if (is_zero(alphaRow1)) {
181 } else if (is_zero(nAlphaRow1)) {
  /external/boringssl/src/crypto/ec/
p256-64.c 830 u64 is_zero = small[0] | small[1] | small[2] | small[3]; local
831 is_zero--;
832 is_zero &= is_zero << 32;
833 is_zero &= is_zero << 16;
834 is_zero &= is_zero << 8;
835 is_zero &= is_zero << 4
    [all...]
  /external/aac/libFDK/include/
fixpoint_math.h 148 UCHAR is_zero=(y==0); local
156 return(is_zero ? 0 : t);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
double-int.h 164 bool is_zero () const;
396 double_int::is_zero () const
  /ndk/sources/cxx-stl/stlport/src/
num_put_float.cpp 488 int decpt, int sign, bool is_zero,
523 if (!is_zero) {
540 *--suffix = (char) ((decpt > 0 || is_zero ) ? '+' : '-');
652 int decpt, int sign, bool is_zero,
658 __group_pos = __format_float_scientific( buf, bp, decpt, sign, is_zero,
673 if (is_zero)
687 __group_pos = __format_float_scientific( buf, bp, decpt, sign, is_zero,
    [all...]
  /external/mesa3d/src/glsl/
lower_vector.cpp 74 if (!c->is_one() && !c->is_zero() && !c->is_negative_one())
ir.h 207 virtual bool is_zero() const;
217 * \sa ir_constant::has_value, ir_rvalue::is_zero, ir_rvalue::is_negative_one,
230 * \sa ir_constant::has_value, ir_rvalue::is_zero, ir_rvalue::is_one
244 * \sa ir_constant::has_value, ir_rvalue::is_zero, ir_rvalue::is_one,
    [all...]
ir.cpp 34 bool ir_rvalue::is_zero() const function in class:ir_rvalue
1027 ir_constant::is_zero() const function in class:ir_constant
    [all...]
opt_algebraic.cpp 78 return (ir == NULL) ? false : ir->is_zero();
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_geometry.h 27 bool is_zero() const { return x_ == 0 && y_ == 0; } function in class:webrtc::DesktopVector
  /external/libpng/contrib/libtests/
tarith.c 318 int is_zero; /* Number is (still) zero */ member in struct:__anon16794
338 c.is_zero = 0;
383 (number_is_valid && !c.is_zero && c.is_negative))
389 if (PNG_FP_IS_ZERO(c.state) != (number_is_valid && c.is_zero))
396 (number_is_valid && !c.is_zero && !c.is_negative))
593 control.is_zero = 1;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xstutil/include/
d3d1xstutil.h 317 bool is_zero() function in struct:dual_refcnt_t
343 if(p_atomic_dec_zero((int32_t*)&atomic_refcnt) && !nonatomic_refcnt && is_zero())
361 if(!atomic_refcnt && is_zero())
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4.cpp 515 src_reg::is_zero() const function in class:brw::src_reg
562 if (inst->src[1].is_zero()) {
570 if (inst->src[1].is_zero()) {
  /system/extras/libfec/
fec_read.cpp 85 static inline bool is_zero(fec_handle *f, uint64_t offset) function
134 if (likely(interleaved < e->start) && !is_zero(f, interleaved)) {
316 bool expect_zeros = is_zero(f, curr_offset);
  /external/libchrome/base/time/
time.cc 311 if (!interval_offset.is_zero() && tick_phase < *this)
  /external/libweave/third_party/chromium/base/time/
time.cc 279 if (!interval_offset.is_zero() && tick_phase < *this)
  /external/mesa3d/src/gallium/state_trackers/clover/core/
base.hpp 277 is_zero() { function
  /external/valgrind/callgrind/
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)) {
    [all...]

Completed in 824 milliseconds

1 2