Home
last modified time | relevance | path

Searched refs:lz (Results 1 – 7 of 7) sorted by relevance

/system/media/audio_utils/
Droundup.c25 int lz = __builtin_clz((int) v); in roundup() local
26 unsigned rounded = ((unsigned) 0x80000000) >> lz; in roundup()
28 if (v > rounded && lz > 0) { in roundup()
/system/core/libpixelflinger/
Dfixed.cpp40 const int32_t lz = gglClz(a); in gglRecipQNormalized() local
41 a <<= lz; // 0.32 in gglRecipQNormalized()
55 *exponent = 30-lz-1; in gglRecipQNormalized()
83 const int32_t lz = gglClz(x); in gglSqrtRecipx() local
84 x = ggl_sqrt_reciproc_approx_tab[(a>>(28-lz))&0x7]; in gglSqrtRecipx()
85 const int32_t exp = lz - 16; in gglSqrtRecipx()
/system/bt/vendor_libs/test_vendor_lib/types/
DBUILD.gn53 "-lz",
/system/bt/types/
DBUILD.gn53 "-lz",
/system/bt/stack/
DBUILD.gn230 "-lz",
307 "-lz",
341 "-lz",
/system/bt/main/
DBUILD.gn94 "-lz",
/system/core/libpixelflinger/include/private/pixelflinger/
Dggl_fixed.h846 const int32_t lz = gglClz(x); in gglRecipFast() local
847 return (0xC0000000 - (x << (lz - 1))) >> (30-lz); in gglRecipFast()