HomeSort by relevance Sort by last modified time
    Searched refs:ntz (Results 1 - 15 of 15) sorted by null

  /device/google/contexthub/firmware/os/algos/calibration/accelerometer/
accel_cal.h 119 uint32_t ntx, ntxb, nty, ntyb, ntz, ntzb, ntle; member in struct:AccelStatsMem
accel_cal.c 76 // Z bucket ntz.
78 adf->ntz += 1;
745 (unsigned)acc->adf.ntyb, (unsigned)acc->adf.ntz,
  /prebuilts/go/darwin-x86/src/math/big/
decimal.go 67 ntz := m.trailingZeroBits()
69 if s >= ntz {
70 s = ntz // shift at most ntz bits
float.go 430 // determine number of trailing zero bits (ntz) and compute lsb mask of mantissa's least-significant word
431 ntz := n*_W - z.prec // 0 <= ntz < _W
432 lsb := Word(1) << ntz
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
decimal.go 67 ntz := m.trailingZeroBits()
69 if s >= ntz {
70 s = ntz // shift at most ntz bits
float.go 430 // determine number of trailing zero bits (ntz) and compute lsb mask of mantissa's least-significant word
431 ntz := n*_W - z.prec // 0 <= ntz < _W
432 lsb := Word(1) << ntz
    [all...]
  /external/clang/test/Analysis/
taint-tester.c 55 char ntz = xy.z;// no warning local
  /system/keymaster/
ocb.c 89 /* Compiler-specific intrinsics and fixes: bswap64, ntz */
98 static inline unsigned ntz(unsigned x) { function
106 #define ntz(x) __builtin_ctz((unsigned)(x)) /* Assuming GCC 3.4+ */ macro
124 static inline unsigned ntz(unsigned x) { function
134 static inline unsigned ntz(unsigned x) { function
807 tz = ntz(ad_block_num);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
rewrite.go 286 // ntz returns the number of trailing zeros.
287 func ntz(x int64) int64 { func
298 return ntz(^x)
rewritegeneric.go 1232 // cond: nlo(y) + ntz(y) == 64 && ntz(y) >= 32
1233 // result: (Lsh64x64 (Rsh64Ux64 <t> x (Const64 <t> [ntz(y)])) (Const64 <t> [ntz(y)]))
1242 if !(nlo(y)+ntz(y) == 64 && ntz(y) >= 32) {
1249 v1.AuxInt = ntz(y)
1253 v2.AuxInt = ntz(y)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
rewrite.go 286 // ntz returns the number of trailing zeros.
287 func ntz(x int64) int64 { func
298 return ntz(^x)
rewritegeneric.go 1232 // cond: nlo(y) + ntz(y) == 64 && ntz(y) >= 32
1233 // result: (Lsh64x64 (Rsh64Ux64 <t> x (Const64 <t> [ntz(y)])) (Const64 <t> [ntz(y)]))
1242 if !(nlo(y)+ntz(y) == 64 && ntz(y) >= 32) {
1249 v1.AuxInt = ntz(y)
1253 v2.AuxInt = ntz(y)
    [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc 2211 unsigned ntz = base::bits::CountTrailingZeros32(src); local
2238 unsigned ntz = base::bits::CountTrailingZeros64(src); local
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc 2675 unsigned ntz = base::bits::CountTrailingZeros64(src); local
    [all...]
  /system/core/logcat/tests/
logcat_test.cpp 297 TEST(logcat, ntz) {
    [all...]

Completed in 301 milliseconds