Home
last modified time | relevance | path

Searched refs:clz (Results 1 – 25 of 61) sorted by relevance

123

/external/compiler-rt/lib/
Dfloatundixf.c34 int clz = __builtin_clzll(a); in __floatundixf() local
35 int e = (N - 1) - clz ; /* exponent */ in __floatundixf()
38 fb.u.low.all = a << clz; /* mantissa */ in __floatundixf()
Dfloatdixf.c37 int clz = __builtin_clzll(a); in __floatdixf() local
38 int e = (N - 1) - clz ; /* exponent */ in __floatdixf()
42 fb.u.low.all = a << clz; /* mantissa */ in __floatdixf()
/external/javassist/src/main/javassist/
DCtMember.java32 public boolean hasAnnotation(Class clz) { return false; } in hasAnnotation() argument
33 public Object getAnnotation(Class clz) in getAnnotation() argument
214 public abstract boolean hasAnnotation(Class clz); in hasAnnotation() argument
227 public abstract Object getAnnotation(Class clz) throws ClassNotFoundException; in getAnnotation() argument
DCtBehavior.java156 public boolean hasAnnotation(Class clz) { in hasAnnotation() argument
162 return CtClassType.hasAnnotationType(clz, in hasAnnotation()
178 public Object getAnnotation(Class clz) throws ClassNotFoundException { in getAnnotation() argument
184 return CtClassType.getAnnotationType(clz, in getAnnotation()
DCtClassType.java434 public boolean hasAnnotation(Class clz) { in hasAnnotation() argument
440 return hasAnnotationType(clz, getClassPool(), ainfo, ainfo2); in hasAnnotation()
443 static boolean hasAnnotationType(Class clz, ClassPool cp, in hasAnnotationType() argument
458 String typeName = clz.getName(); in hasAnnotationType()
472 public Object getAnnotation(Class clz) throws ClassNotFoundException { in getAnnotation() argument
478 return getAnnotationType(clz, getClassPool(), ainfo, ainfo2); in getAnnotation()
481 static Object getAnnotationType(Class clz, ClassPool cp, in getAnnotationType() argument
497 String typeName = clz.getName(); in getAnnotationType()
DCtClass.java486 public boolean hasAnnotation(Class clz) { in hasAnnotation() argument
501 public Object getAnnotation(Class clz) throws ClassNotFoundException { in getAnnotation() argument
DCtField.java250 public boolean hasAnnotation(Class clz) { in hasAnnotation() argument
256 return CtClassType.hasAnnotationType(clz, getDeclaringClass().getClassPool(), in hasAnnotation()
271 public Object getAnnotation(Class clz) throws ClassNotFoundException { in getAnnotation() argument
277 return CtClassType.getAnnotationType(clz, getDeclaringClass().getClassPool(), in getAnnotation()
/external/compiler-rt/lib/arm/
Dumodsi3.S29 clz r2, a
31 clz r3, b
Dudivsi3.S43 clz r2, a
45 clz r3, b
Dudivmodsi4.S41 clz r4, a
43 clz r3, b
/external/llvm/test/CodeGen/Mips/
D2010-11-09-CountLeading.ll3 ; CHECK: clz $2, $4
12 ; CHECK: clz $2, $4
D2008-08-08-ctlz.ll5 ; CHECK: clz
/external/llvm/test/MC/Mips/
Dmips-alu-instructions.s12 # CHECK: clz $6, $7 # encoding: [0x20,0x30,0xe6,0x70]
39 clz $6, $7
/external/llvm/test/CodeGen/ARM/
Dclz.ll7 ; CHECK: clz r0, r0
Dctz.ll8 ; CHECK: clz
Dfold-const.ll7 ; CHECK: clz
/external/llvm/test/CodeGen/Thumb2/
Dthumb2-clz.ll5 ; CHECK: clz r
/external/llvm/test/MC/Disassembler/MBlaze/
Dmblaze_pattern.txt16 # CHECK: clz r0, r1
/external/qemu/tcg/
DTODO1 - Add new instructions such as: clz, ctz, popcnt.
/external/v8/test/cctest/
Dtest-disasm-mips.cc417 COMPARE(clz(a0, a1), in TEST()
419 COMPARE(clz(s6, s7), in TEST()
421 COMPARE(clz(v0, v1), in TEST()
/external/libvpx/vp8/encoder/arm/armv5te/
Dboolhuff_armv5te.asm65 clz r6, r4
138 clz r6, r4
229 clz r6, r4
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/
DSerializer.java232 Class clz = classes.get(i); in registerPackage() local
233 registeredClasses[i] = registerClass(clz, false); in registerPackage()
/external/clang/test/Analysis/
Dregion-1.m58 + (DosLegVaseSymbol *) symbolFromClass: (JabaSCClass *) clz;
/external/skia/src/core/
DSkBitmap.cpp1217 int clz = SkCLZ(sx); in ComputeMipLevel() local
1218 SkASSERT(clz >= 1 && clz <= 15); in ComputeMipLevel()
1219 return SkIntToFixed(15 - clz) + ((unsigned)(sx << (clz + 1)) >> 16); in ComputeMipLevel()
/external/clang/test/CodeGen/
Dbuiltins.c70 P(clz, (N)); in main()

123