HomeSort by relevance Sort by last modified time
    Searched defs:lz (Results 1 - 25 of 55) sorted by null

1 2 3

  /cts/apps/CtsVerifier/jni/audio_loopback/audio_utils/
roundup.c 25 int lz = __builtin_clz((int) v); local
26 unsigned rounded = ((unsigned) 0x80000000) >> lz;
28 if (v > rounded && lz > 0) {
  /external/libopus/silk/
lin2log.c 39 opus_int32 lz, frac_Q7; local
41 silk_CLZ_FRAC( inLin, &lz, &frac_Q7 );
44 return silk_LSHIFT( 31 - lz, 7 ) + silk_SMLAWB( frac_Q7, silk_MUL( frac_Q7, 128 - frac_Q7 ), 179 );
Inlines.h 58 opus_int32 *lz, /* O number of leading zeros */
64 * lz = lzeros;
73 opus_int32 y, lz, frac_Q7; local
79 silk_CLZ_FRAC(x, &lz, &frac_Q7);
81 if( lz & 1 ) {
88 y >>= silk_RSHIFT(lz, 1);
  /system/media/audio_utils/
roundup.c 25 int lz = __builtin_clz((int) v); local
26 unsigned rounded = ((unsigned) 0x80000000) >> lz;
28 if (v > rounded && lz > 0) {
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btBox2dShape.cpp 35 btScalar lz=btScalar(2.)*(halfExtents.z()); local
37 inertia.setValue(mass/(btScalar(12.0)) * (ly*ly + lz*lz),
38 mass/(btScalar(12.0)) * (lx*lx + lz*lz),
btBoxShape.cpp 44 btScalar lz=btScalar(2.)*(halfExtents.z()); local
46 inertia.setValue(mass/(btScalar(12.0)) * (ly*ly + lz*lz),
47 mass/(btScalar(12.0)) * (lx*lx + lz*lz),
btCapsuleShape.cpp 140 btScalar lz=btScalar(2.)*(halfExtents[2]+margin); local
143 const btScalar z2 = lz*lz;
btMultiSphereShape.cpp 148 btScalar lz=btScalar(2.)*(halfExtents.z()); local
150 inertia.setValue(mass/(btScalar(12.0)) * (ly*ly + lz*lz),
151 mass/(btScalar(12.0)) * (lx*lx + lz*lz),
  /external/libopus/silk/fixed/
schur_FIX.c 42 opus_int k, n, lz; local
49 lz = silk_CLZ32( c[ 0 ] );
52 if( lz < 2 ) {
53 /* lz must be 1, so shift one to the right */
57 } else if( lz > 2 ) {
59 lz -= 2;
61 C[ k ][ 0 ] = C[ k ][ 1 ] = silk_LSHIFT( c[ k ], lz );
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
CRC32Hash.java 11 package org.tukaani.xz.lz;
Matches.java 11 package org.tukaani.xz.lz;
Hash234.java 11 package org.tukaani.xz.lz;
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
LZMA2OutputStream.java 15 import org.tukaani.xz.lz.LZEncoder;
25 private final LZEncoder lz; field in class:LZMA2OutputStream
70 lz = lzma.getLZEncoder();
74 lz.setPresetDict(dictSize, presetDict);
98 int used = lz.fillWindow(buf, off, len);
172 lz.copyUncompressed(out, uncompressedSize, chunkSize);
186 lz.setFinishing();
211 lz.setFlushing();
LZMA2InputStream.java 16 import org.tukaani.xz.lz.LZDecoder;
48 private final LZDecoder lz; field in class:LZMA2InputStream
77 // and LZ decoder needs a dictionary buffer.
145 this.lz = new LZDecoder(getDictSize(dictSize), presetDict);
227 lz.copyUncompressed(in, copySizeMax);
229 lz.setLimit(copySizeMax);
235 int copiedSize = lz.flush(buf, off);
242 if (!rc.isFinished() || lz.hasPending())
265 lz.reset();
314 lzma = new LZMADecoder(lz, rc, lc, lp, pb)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_fmod.c 32 u_int32_t lx,ly,lz; local
97 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
100 if((hz|lz)==0) /* return sign(x)*0 */
102 hx = hz+hz+(lz>>31); lx = lz+lz;
105 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
106 if(hz>=0) {hx=hz;lx=lz;}
s_remquo.c 35 u_int32_t lx,ly,lz,q,sxy; local
107 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
109 else {hx = hz+hz+(lz>>31); lx = lz+lz; q++;}
112 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
113 if(hz>=0) {hx=hz;lx=lz;q++;}
e_fmodl.c 70 manl_t lx,ly,lz; local
121 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
124 if ((hz|lz)==0) /* return sign(x)*0 */
126 hx = hz+hz+(lz>>MANL_SHIFT); lx = lz+lz;
129 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
130 if(hz>=0) {hx=hz;lx=lz;}
s_remquol.c 73 manl_t lx,ly,lz; local
131 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
133 else {hx = hz+hz+(lz>>MANL_SHIFT); lx = lz+lz; q++;}
136 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
137 if(hz>=0) {hx=hz;lx=lz;q++;}
  /external/fdlibm/
e_fmod.c 36 unsigned lx,ly,lz; local
103 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
106 if((hz|lz)==0) /* return sign(x)*0 */
108 hx = hz+hz+(lz>>31); lx = lz+lz;
111 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
112 if(hz>=0) {hx=hz;lx=lz;}
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMADecoder.java 14 import org.tukaani.xz.lz.LZDecoder;
18 private final LZDecoder lz; field in class:LZMADecoder
24 public LZMADecoder(LZDecoder lz, RangeDecoder rc, int lc, int lp, int pb) {
26 this.lz = lz;
50 lz.repeatPending();
52 while (lz.hasSpace()) {
53 int posState = lz.getPos() & posMask;
65 lz.repeat(reps[0], len);
150 int i = getSubcoderIndex(lz.getByte(0), lz.getPos())
    [all...]
  /external/fio/arch/
arch-ppc.h 38 int lz; local
40 asm ("cntlzw %0,%1" : "=r" (lz) : "r" (bitmask));
41 return 31 - lz;
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
btGImpactShape.cpp 59 btScalar lz= m_localAABB.m_max[2] - m_localAABB.m_min[2]; local
62 const btScalar z2 = lz*lz;
98 btScalar lz= m_localAABB.m_max[2] - m_localAABB.m_min[2]; local
101 const btScalar z2 = lz*lz;
133 btScalar lz= m_localAABB.m_max[2] - m_localAABB.m_min[2];
136 const btScalar z2 = lz*lz;
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/
OutWindow.java 0 // LZ.OutWindow
3 package com.badlogic.gdx.utils.compression.lz;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
PipeShort.java 131 int lz = Integer.numberOfLeadingZeros(v); local
132 int rounded = 0x80000000 >>> lz;
134 if (v > rounded && lz > 0) {
  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities_poly.cpp 100 double lz,ms,ns,mn,m,n,lz_through2; local
141 lz=c_roots[0];
142 lz_through2=lz/2.0;
143 ms=lz+c3c3through4_min_c2;
145 mn=lz*c3through4-c1/2.0;
172 double lz,ms,ns,mn,m,n,lz_through2; local
213 lz=c_roots[0];
214 lz_through2=lz/2.0;
215 ms=lz+c3c3through4_min_c2;
217 mn=lz*c3through4-c1/2.0
    [all...]

Completed in 1369 milliseconds

1 2 3