Home
last modified time | relevance | path

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

1234567

/external/llvm/test/CodeGen/AArch64/
Darm64-vclz.ll5 ; CHECK: clz.8b v0, v0
13 ; CHECK: clz.8b v0, v0
21 ; CHECK: clz.4h v0, v0
29 ; CHECK: clz.4h v0, v0
37 ; CHECK: clz.2s v0, v0
45 ; CHECK: clz.2s v0, v0
53 ; CHECK: clz.16b v0, v0
61 ; CHECK: clz.16b v0, v0
69 ; CHECK: clz.8h v0, v0
77 ; CHECK: clz.8h v0, v0
[all …]
Ddp1.ll53 ; CHECK: clz {{w[0-9]+}}, {{w[0-9]+}}
62 ; CHECK: clz {{x[0-9]+}}, {{x[0-9]+}}
71 ; CHECK: clz {{w[0-9]+}}, {{w[0-9]+}}
80 ; CHECK: clz {{x[0-9]+}}, {{x[0-9]+}}
90 ; CHECK: clz {{w[0-9]+}}, [[REVERSED]]
100 ; CHECK: clz {{x[0-9]+}}, [[REVERSED]]
110 ; CHECK: clz {{w[0-9]+}}, [[REVERSED]]
120 ; CHECK: clz {{x[0-9]+}}, [[REVERSED]]
/external/llvm/test/CodeGen/ARM/
Dcttz.ll17 ; CHECK: clz
26 ; CHECK: clz
34 ; CHECK: clz
44 ; CHECK: clz
57 ; CHECK: clz
66 ; CHECK: clz
75 ; CHECK: clz
85 ; CHECK: clz
Dclz.ll7 ; CHECK: clz r0, r0
/external/llvm/test/CodeGen/NVPTX/
Dctlz.ll10 ; CHECK: clz.b32
16 ; CHECK: clz.b32
22 ; CHECK: clz.b64
29 ; CHECK: clz.b32
35 ; CHECK: clz.b32
41 ; CHECK: clz.b64
/external/libhevc/decoder/
Dihevcd_parse_residual.c665 UWORD32 clz; in ihevcd_parse_residual_coding() local
666 clz = CLZ(u4_sig_coeff_map); in ihevcd_parse_residual_coding()
667 n = 31 - clz; in ihevcd_parse_residual_coding()
668 u4_sig_coeff_map_shift = u4_sig_coeff_map << clz; in ihevcd_parse_residual_coding()
722 clz = CLZ(u4_sig_coeff_map_shift); in ihevcd_parse_residual_coding()
723 u4_sig_coeff_map_shift <<= clz; in ihevcd_parse_residual_coding()
724 n -= clz; in ihevcd_parse_residual_coding()
771 UWORD32 clz; in ihevcd_parse_residual_coding() local
773 clz = CLZ(u4_sig_coeff_map); in ihevcd_parse_residual_coding()
774 n = 31 - clz; in ihevcd_parse_residual_coding()
[all …]
Dihevcd_cabac.c233 WORD32 clz; in ihevcd_cabac_decode_bin() local
242 clz = CLZ(u4_range); in ihevcd_cabac_decode_bin()
243 clz -= (32 - RANGE_NUMBITS); in ihevcd_cabac_decode_bin()
244 u4_qnt_range = u4_range << clz; in ihevcd_cabac_decode_bin()
252 u4_rlps = u4_rlps << (RANGE_SHIFT - clz); in ihevcd_cabac_decode_bin()
372 WORD32 clz; in ihevcd_cabac_decode_terminate() local
377 clz = CLZ(u4_range); in ihevcd_cabac_decode_terminate()
378 clz -= (32 - RANGE_NUMBITS); in ihevcd_cabac_decode_terminate()
379 u4_range -= 2 << (RANGE_SHIFT - clz); in ihevcd_cabac_decode_terminate()
391 WORD32 clz; in ihevcd_cabac_decode_terminate() local
[all …]
Dihevcd_cabac.h66 WORD32 clz; \
74 clz = CLZ(u4_range); \
75 clz -= (32 - RANGE_NUMBITS); \
76 u4_qnt_range = u4_range << clz; \
80 u4_rlps = u4_rlps << (RANGE_SHIFT - clz); \
/external/llvm/test/CodeGen/Mips/
Dctlz-v.ll8 ; MIPS32: clz $2, $4
9 ; MIPS32: clz $3, $5
12 ; MIPS64-DAG: clz $2, $[[A0]]
14 ; MIPS64-DAG: clz $3, $[[A1]]
Dcttz-v.ll11 ; MIPS32-DAG: clz $[[R3:[0-9]+]], $[[R2]]
17 ; MIPS32-DAG: clz $[[R8:[0-9]+]], $[[R7]]
25 ; MIPS64-DAG: clz $[[R3:[0-9]+]], $[[R2]]
32 ; MIPS64-DAG: clz $[[R8:[0-9]+]], $[[R7]]
Dcountleading.ll18 ; MIPS4-NOT: clz
20 ; MIPS32-GT-R1: clz $2, $4
22 ; MIPS64-GT-R1: clz $2, $4
51 ; MIPS32-GT-R1-DAG: clz $[[R0:[0-9]+]], $4
52 ; MIPS32-GT-R1-DAG: clz $[[R1:[0-9]+]], $5
D2010-11-09-CountLeading.ll3 ; CHECK: clz $2, $4
12 ; CHECK: clz $2, $4
D2008-08-08-ctlz.ll5 ; CHECK: clz
/external/compiler-rt/lib/builtins/
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
/external/libavc/common/
Dih264_list.c86 WORD32 clz; in ih264_list_size() local
91 clz = CLZ(num_entries); in ih264_list_size()
92 num_entries = 1 << (32 - clz); in ih264_list_size()
/external/compiler-rt/lib/builtins/arm/
Dumodsi3.S64 clz ip, r0
65 clz r3, r1
Dudivsi3.S66 clz ip, r0
67 clz r3, r1
Dudivmodsi4.S66 clz ip, r0
67 clz r3, r1
Dclzsi2.S29 clz r0, r0
/external/llvm/test/MC/AArch64/
Dneon-simd-misc.s253 clz v0.16b, v31.16b
254 clz v2.8h, v4.8h
255 clz v6.4s, v8.4s
256 clz v1.8b, v9.8b
257 clz v13.4h, v21.4h
258 clz v4.2s, v0.2s
/external/llvm/test/MC/Mips/
Dmips64-alu-instructions.s11 # CHECK: clz $6, $7 # encoding: [0x20,0x30,0xe6,0x70]
39 clz $6, $7
Dmips-alu-instructions.s12 # CHECK: clz $6, $7 # encoding: [0x20,0x30,0xe6,0x70]
43 clz $6, $7
/external/llvm/test/MC/ARM/
Dnot-armv4.s5 clz r4,r9 label

1234567