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

1 2 3

  /ndk/build/tools/
dev-platform-compress.sh 95 log2 "Comparing $CFILE with $PFILE"
100 log2 "Removing obsolete $DFILE"
103 log2 "Skipping $CFILE"
110 log2 "Copying $SFILE --> $DFILE"
  /external/valgrind/main/memcheck/tests/
unit_libcbase.c 417 CHECK( -1 == VG_(log2)(0) );
418 CHECK( 0 == VG_(log2)(1) );
419 CHECK( 1 == VG_(log2)(2) );
420 CHECK( -1 == VG_(log2)(3) );
421 CHECK( 2 == VG_(log2)(4) );
422 CHECK( -1 == VG_(log2)(5) );
423 CHECK( -1 == VG_(log2)(6) );
424 CHECK( -1 == VG_(log2)(7) );
425 CHECK( 3 == VG_(log2)(8) );
427 CHECK( -1 == VG_(log2)( 15) )
    [all...]
  /ndk/build/core/
ndk-common.sh 87 # Setup a log file where all log() and log2() output will be sent
126 log2 () function
205 log2 "HOST_ARCH=$HOST_ARCH"
236 log2 "HOST_OS=$HOST_OS"
237 log2 "HOST_EXE=$HOST_EXE"
268 log2 "HOST_TAG=$HOST_TAG"
289 log2 "HOST_NUM_CPUS=$HOST_NUM_CPUS"
299 log2 "BUILD_NUM_CPUS=$BUILD_NUM_CPUS"
311 log2 "Forcing generation of 32-bit host binaries on $HOST_ARCH"
314 log2 "HOST_ARCH=$HOST_ARCH
    [all...]
  /external/qemu/android/build/
common.sh 32 log2 () function
72 log2 "CPU=$CPU"
106 log2 "OS=$OS"
107 log2 "EXE=$EXE"
214 log2 "Mingw : Found $MINGW32_CC"
308 log2 "Object : $CC -o $TMPO -c $CFLAGS $TMPC"
316 log2 "Link : $LD -o $TMPE $TMPO $LDFLAGS"
324 log2 "Running: $*"
331 log2 "RunExec : $CC -o $TMPE $CFLAGS $TMPC"
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
mathutil.h 21 inline int log2(int x) function in namespace:gl
  /external/valgrind/main/coregrind/m_replacemalloc/
replacemalloc_core.c 59 VG_(log2)( VG_(clo_alignment) ) == -1 /* not a power of 2 */)
  /external/libffi/src/powerpc/
asm.h 38 #define ALIGNARG(log2) log2
  /external/valgrind/main/cachegrind/
cg_sim.c 64 c->line_size_bits = VG_(log2)(c->line_size);
65 c->tag_shift = c->line_size_bits + VG_(log2)(c->sets);
  /external/webkit/Source/WebCore/loader/cache/
MemoryCache.cpp 352 unsigned log2 = 0; local
354 log2 += 1;
356 log2 += 16, i >>= 16;
358 log2 += 8, i >>= 8;
360 log2 += 4, i >>= 4;
362 log2 += 2, i >>= 2;
364 log2 += 1;
365 return log2;
  /external/webkit/Source/WebCore/platform/audio/mac/
FFTFrameMac.cpp 49 m_log2FFTSize = static_cast<unsigned>(log2(fftSize));
157 int pow2size = static_cast<int>(log2(fftSize));
  /external/webkit/Source/WebCore/platform/
Arena.cpp 88 int log2; local
89 CEILING_LOG2(log2,i);
90 return log2;
  /external/webrtc/src/common_audio/vad/main/source/
vad_filterbank.c 212 WebRtc_Word16 zeros, frac, log2; local
228 // 160*log10(enerSum*2^shfts) = 160*log10(2)*log2(enerSum*2^shfts) =
229 // 160*log10(2)*(log2(enerSum) + log2(2^shfts)) =
230 // 160*log10(2)*(log2(enerSum) + shfts)
235 log2 = (WebRtc_Word16)(((31 - zeros) << 10) + frac);
237 *enerlogval = (WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(kLogConst, log2, 19)
  /external/grub/stage2/
fsys_fat.c 58 log2 (unsigned long word) function
87 FAT_SUPER->sectsize_bits = log2 (FAT_CVT_U16 (bpb.bytes_per_sect));
89 = FAT_SUPER->sectsize_bits + log2 (bpb.sects_per_clust);
fsys_ext2fs.c 196 #define log2(n) ffz(~(n)) macro
219 #define EXT2_ADDR_PER_BLOCK_BITS(s) (log2(EXT2_ADDR_PER_BLOCK(s)))
540 group_desc = group_id >> log2 (EXT2_DESC_PER_BLOCK (SUPERBLOCK));
556 >> log2 (EXT2_BLOCK_SIZE (SUPERBLOCK) / sizeof (struct ext2_inode)));
fsys_iso9660.c 60 log2 (unsigned long word) function
71 unsigned short sector_size_lg2 = log2(buf_geom.sector_size);
  /external/skia/src/core/
SkCordic.cpp 292 float log2 = (float) f_log / 65536.0f; local
293 float error = fabsf(log - log2);
295 SkDebugf("log error : val = %g ; log = %g ; cordic = %g\n", val, log, log2);
  /development/tools/emulator/opengl/host/libs/Translator/GLcommon/
TextureUtils.cpp 85 SET_ERROR_IF(level > log2(ctx->getMaxTexSize()) ||
  /external/webkit/Source/WebCore/platform/audio/
HRTFKernel.cpp 57 ASSERT(1UL << static_cast<unsigned>(log2(analysisFFTSize)) == analysisFFTSize);
HRTFPanner.cpp 163 ASSERT(1UL << static_cast<int>(log2(framesToProcess)) == framesToProcess);
  /external/webkit/Source/WebCore/platform/audio/fftw/
FFTFrameFFTW.cpp 60 , m_log2FFTSize(static_cast<unsigned>(log2(fftSize)))
268 int pow2size = static_cast<int>(log2(fftSize));
  /external/webkit/Source/WebCore/platform/audio/mkl/
FFTFrameMKL.cpp 91 , m_log2FFTSize(static_cast<unsigned>(log2(fftSize)))
257 int pow2size = static_cast<int>(log2(fftSize));
  /frameworks/base/media/libstagefright/codecs/amrnb/common/
Android.mk 29 src/log2.cpp \
  /external/webrtc/src/modules/audio_processing/ns/main/source/
nsx_core.c 342 // sum of log2(i) from table index to inst->anaLen2 in Q5
343 // Note that the first table value is invalid, since log2(0) = -infinity
356 // sum of log2(i)^2 from table index to inst->anaLen2 in Q2
357 // Note that the first table value is invalid, since log2(0) = -infinity
370 // log2(table index) in Q12
371 // Note that the first table value is invalid, since log2(0) = -infinity
392 // determinant of estimation matrix in Q0 corresponding to the log2 tables above
393 // Note that the first table value is invalid, since log2(0) = -infinity
456 // noise_estimate = 2^(pinkNoiseNumerator + pinkNoiseExp * log2(j))
677 WebRtc_Word16 log2, tabind, logval, tmp16, tmp16no1, tmp16no2; local
1452 WebRtc_Word16 log2 = 0; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/
Android.mk 31 src/log2.c \
  /ndk/tests/
run-tests.sh 575 log2 "ADB devices: $ADB_DEVICES"
578 log2 "ADB Device count: $ADB_DEVCOUNT"

Completed in 1106 milliseconds

1 2 3