/external/compiler-rt/lib/ |
D | floatundixf.c | 34 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()
|
D | floatdixf.c | 37 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/ |
D | CtMember.java | 32 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
|
D | CtBehavior.java | 156 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()
|
D | CtClassType.java | 434 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()
|
D | CtClass.java | 486 public boolean hasAnnotation(Class clz) { in hasAnnotation() argument 501 public Object getAnnotation(Class clz) throws ClassNotFoundException { in getAnnotation() argument
|
D | CtField.java | 250 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/ |
D | umodsi3.S | 29 clz r2, a 31 clz r3, b
|
D | udivsi3.S | 43 clz r2, a 45 clz r3, b
|
D | udivmodsi4.S | 41 clz r4, a 43 clz r3, b
|
/external/llvm/test/CodeGen/Mips/ |
D | 2010-11-09-CountLeading.ll | 3 ; CHECK: clz $2, $4 12 ; CHECK: clz $2, $4
|
D | 2008-08-08-ctlz.ll | 5 ; CHECK: clz
|
/external/llvm/test/MC/Mips/ |
D | mips-alu-instructions.s | 12 # CHECK: clz $6, $7 # encoding: [0x20,0x30,0xe6,0x70] 39 clz $6, $7
|
/external/llvm/test/CodeGen/ARM/ |
D | clz.ll | 7 ; CHECK: clz r0, r0
|
D | ctz.ll | 8 ; CHECK: clz
|
D | fold-const.ll | 7 ; CHECK: clz
|
/external/llvm/test/CodeGen/Thumb2/ |
D | thumb2-clz.ll | 5 ; CHECK: clz r
|
/external/llvm/test/MC/Disassembler/MBlaze/ |
D | mblaze_pattern.txt | 16 # CHECK: clz r0, r1
|
/external/qemu/tcg/ |
D | TODO | 1 - Add new instructions such as: clz, ctz, popcnt.
|
/external/v8/test/cctest/ |
D | test-disasm-mips.cc | 417 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/ |
D | boolhuff_armv5te.asm | 65 clz r6, r4 138 clz r6, r4 229 clz r6, r4
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/ |
D | Serializer.java | 232 Class clz = classes.get(i); in registerPackage() local 233 registeredClasses[i] = registerClass(clz, false); in registerPackage()
|
/external/clang/test/Analysis/ |
D | region-1.m | 58 + (DosLegVaseSymbol *) symbolFromClass: (JabaSCClass *) clz;
|
/external/skia/src/core/ |
D | SkBitmap.cpp | 1217 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/ |
D | builtins.c | 70 P(clz, (N)); in main()
|