Searched refs:clz (Results 1 - 25 of 54) sorted by relevance

123

/external/compiler-rt/lib/
H A Dfloatundixf.c34 int clz = __builtin_clzll(a); local
35 int e = (N - 1) - clz ; /* exponent */
38 fb.u.low.all = a << clz; /* mantissa */
H A Dfloatdixf.c37 int clz = __builtin_clzll(a); local
38 int e = (N - 1) - clz ; /* exponent */
42 fb.u.low.all = a << clz; /* mantissa */
/external/compiler-rt/lib/arm/
H A Dumodsi3.S39 clz r2, a
41 clz r3, b
H A Dudivmodsi4.S53 clz r4, a
55 clz r3, b
H A Dudivsi3.S52 clz r2, a
54 clz r3, b
/external/javassist/src/main/javassist/
H A DCtMember.java32 public boolean hasAnnotation(Class clz) { return false; } argument
33 public Object getAnnotation(Class clz) argument
210 * @param clz the annotation class.
214 public abstract boolean hasAnnotation(Class clz); argument
223 * @param clz the annotation class.
227 public abstract Object getAnnotation(Class clz) throws ClassNotFoundException; argument
H A DCtClass.java482 * @param clz the annotation class.
486 public boolean hasAnnotation(Class clz) { argument
497 * @param clz the annotation class.
501 public Object getAnnotation(Class clz) throws ClassNotFoundException { argument
H A DCtClassType.java434 public boolean hasAnnotation(Class clz) { argument
440 return hasAnnotationType(clz, getClassPool(), ainfo, ainfo2);
443 static boolean hasAnnotationType(Class clz, ClassPool cp, argument
458 String typeName = clz.getName();
472 public Object getAnnotation(Class clz) throws ClassNotFoundException { argument
478 return getAnnotationType(clz, getClassPool(), ainfo, ainfo2);
481 static Object getAnnotationType(Class clz, ClassPool cp, argument
497 String typeName = clz.getName();
H A DCtBehavior.java151 * @param clz the annotation class.
156 public boolean hasAnnotation(Class clz) { argument
162 return CtClassType.hasAnnotationType(clz,
174 * @param clz the annotation class.
178 public Object getAnnotation(Class clz) throws ClassNotFoundException { argument
184 return CtClassType.getAnnotationType(clz,
H A DCtField.java246 * @param clz the annotation class.
250 public boolean hasAnnotation(Class clz) { argument
256 return CtClassType.hasAnnotationType(clz, getDeclaringClass().getClassPool(),
267 * @param clz the annotation class.
271 public Object getAnnotation(Class clz) throws ClassNotFoundException { argument
277 return CtClassType.getAnnotationType(clz, getDeclaringClass().getClassPool(),
/external/chromium_org/third_party/skia/src/core/
H A DSkMipMap.cpp239 int clz = SkCLZ(s); local
240 SkASSERT(clz >= 1 && clz <= 15);
241 return SkIntToFixed(15 - clz) + ((unsigned)(s << (clz + 1)) >> 16);
H A DSkBitmap.cpp1434 int clz = SkCLZ(sx); local
1435 SkASSERT(clz >= 1 && clz <= 15);
1436 return SkIntToFixed(15 - clz) + ((unsigned)(sx << (clz + 1)) >> 16);
/external/skia/src/core/
H A DSkMipMap.cpp239 int clz = SkCLZ(s); local
240 SkASSERT(clz >= 1 && clz <= 15);
241 return SkIntToFixed(15 - clz) + ((unsigned)(s << (clz + 1)) >> 16);
H A DSkBitmap.cpp1434 int clz = SkCLZ(sx); local
1435 SkASSERT(clz >= 1 && clz <= 15);
1436 return SkIntToFixed(15 - clz) + ((unsigned)(sx << (clz + 1)) >> 16);
/external/llvm/test/MC/Mips/
H A Dmips-alu-instructions.s12 # CHECK: clz $6, $7 # encoding: [0x20,0x30,0xe6,0x70]
43 clz $6, $7
H A Dmips64-alu-instructions.s11 # CHECK: clz $6, $7 # encoding: [0x20,0x30,0xe6,0x70]
39 clz $6, $7
/external/chromium_org/v8/test/cctest/
H A Dtest-disasm-mips.cc407 COMPARE(clz(a0, a1),
408 "70a42020 clz a0, a1");
409 COMPARE(clz(s6, s7),
410 "72f6b020 clz s6, s7");
411 COMPARE(clz(v0, v1),
412 "70621020 clz v0, v1");
/external/v8/test/cctest/
H A Dtest-disasm-mips.cc417 COMPARE(clz(a0, a1),
418 "70a42020 clz a0, a1");
419 COMPARE(clz(s6, s7),
420 "72f6b020 clz s6, s7");
421 COMPARE(clz(v0, v1),
422 "70621020 clz v0, v1");
/external/libvpx/libvpx/vp8/encoder/arm/armv5te/
H A Dboolhuff_armv5te.asm80 clz r6, r4
156 clz r6, r4
250 clz r6, r4
H A Dvp8_packtokens_partitions_armv5.asm155 clz r6, r4
255 clz r6, r4
383 clz r6, r4
H A Dvp8_packtokens_armv5.asm105 clz r6, r4
205 clz r6, r4
H A Dvp8_packtokens_mbrow_armv5.asm126 clz r6, r4
226 clz r6, r4
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/
H A DSerializer.java232 Class clz = classes.get(i);
233 registeredClasses[i] = registerClass(clz, false);
/external/clang/test/CodeGen/
H A Dbuiltins.c70 P(clz, (N));
/external/qemu/target-mips/
H A Dhelper.h28 DEF_HELPER_FLAGS_1(clz, TCG_CALL_CONST | TCG_CALL_PURE, tl, tl)

Completed in 359 milliseconds

123