| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
| floatundixf.c | 34 int clz = __builtin_clzll(a); local 35 int e = (N - 1) - clz ; /* exponent */ 38 fb.u.low.all = a << clz; /* mantissa */
|
| floatdixf.c | 37 int clz = __builtin_clzll(a); local 38 int e = (N - 1) - clz ; /* exponent */ 42 fb.u.low.all = a << clz; /* mantissa */
|
| /src/external/gpl3/gcc/dist/gcc/config/arm/ |
| aarch-common-protos.h | 71 const int clz; /* Count Leading Zeros. */ member in struct:alu_cost_table
|
| /src/external/gpl3/gcc.old/dist/gcc/config/arm/ |
| aarch-common-protos.h | 65 const int clz; /* Count Leading Zeros. */ member in struct:alu_cost_table
|
| /src/external/mpl/bind/dist/lib/isc/ |
| histo.c | 167 * A fast way to get the logarithm of a positive integer is CLZ, 177 * They are also the values where `63 - sigbits - clz` would be less 189 int clz = __builtin_clzll((unsigned long long)(chunked)); local 191 uint exponent = 63 - hg->sigbits - clz;
|
| /src/external/mpl/bind/dist/lib/dns/ |
| rpz.c | 1091 clz(dns_rpz_cidr_word_t w) { function 1146 bit += clz(delta);
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| rpz.c | 1047 clz(dns_rpz_cidr_word_t w) { function 1102 bit += clz(delta);
|
| /src/external/gpl3/binutils/dist/opcodes/ |
| microblaze-opcm.h | 28 add, rsub, addc, rsubc, addk, rsubk, addkc, rsubkc, clz, cmp, cmpu, enumerator in enum:microblaze_instr
|
| /src/external/gpl3/binutils.old/dist/opcodes/ |
| microblaze-opcm.h | 28 add, rsub, addc, rsubc, addk, rsubk, addkc, rsubkc, clz, cmp, cmpu, enumerator in enum:microblaze_instr
|
| /src/external/gpl3/gdb/dist/opcodes/ |
| microblaze-opcm.h | 28 add, rsub, addc, rsubc, addk, rsubk, addkc, rsubkc, clz, cmp, cmpu, enumerator in enum:microblaze_instr
|
| /src/external/gpl3/gdb.old/dist/opcodes/ |
| microblaze-opcm.h | 28 add, rsub, addc, rsubc, addk, rsubk, addkc, rsubkc, clz, cmp, cmpu, enumerator in enum:microblaze_instr
|
| /src/external/gpl3/gdb/dist/sim/aarch64/ |
| simulator.c | 6763 clz (uint64_t val, unsigned size) function 6806 aarch64_set_vec_u8 (cpu, vd, i, clz (aarch64_get_vec_u8 (cpu, vn, i), 8)); 6810 aarch64_set_vec_u16 (cpu, vd, i, clz (aarch64_get_vec_u16 (cpu, vn, i), 16)); 6814 aarch64_set_vec_u32 (cpu, vd, i, clz (aarch64_get_vec_u32 (cpu, vn, i), 32)); 6819 aarch64_set_vec_u64 (cpu, vd, 0, clz (aarch64_get_vec_u64 (cpu, vn, 0), 64)); 6820 aarch64_set_vec_u64 (cpu, vd, 1, clz (aarch64_get_vec_u64 (cpu, vn, 1), 64)); 12694 000100 ==> CLZ, 000101 ==> CLS
|
| /src/external/gpl3/gdb.old/dist/sim/aarch64/ |
| simulator.c | 6763 clz (uint64_t val, unsigned size) function 6806 aarch64_set_vec_u8 (cpu, vd, i, clz (aarch64_get_vec_u8 (cpu, vn, i), 8)); 6810 aarch64_set_vec_u16 (cpu, vd, i, clz (aarch64_get_vec_u16 (cpu, vn, i), 16)); 6814 aarch64_set_vec_u32 (cpu, vd, i, clz (aarch64_get_vec_u32 (cpu, vn, i), 32)); 6819 aarch64_set_vec_u64 (cpu, vd, 0, clz (aarch64_get_vec_u64 (cpu, vn, 0), 64)); 6820 aarch64_set_vec_u64 (cpu, vd, 1, clz (aarch64_get_vec_u64 (cpu, vn, 1), 64)); 12694 000100 ==> CLZ, 000101 ==> CLS
|
| /src/external/gpl3/gcc/dist/gcc/config/rs6000/ |
| rs6000.cc | 15263 int clz = HOST_BITS_PER_WIDE_INT - lowbits; 15265 /* case a. 0..0xxx: already at least clz zeros. */ 15267 if (lz >= clz) 15273 /* case b. 0..0xxx0..0: at least clz zeros. */ 15275 if (lz + tz >= clz) 15281 /* case c. xx10.....0xx: rotate 'clz - 1' bits first, then check case b. 15283 00...00xxx100, 'clz - 1' >= 'bits of xxxx'. */ 15285 unsigned HOST_WIDE_INT rc = (c >> rot_bits) | (c << (clz - 1)); 15287 if (clz_hwi (rc) + tz >= clz) 22518 case CLZ 15234 int clz = HOST_BITS_PER_WIDE_INT - lowbits; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| dwarf2out.cc | 14554 int clz = clz_hwi (i); 14562 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 5 14563 && clz + 5 + 255 >= HOST_BITS_PER_WIDE_INT) 14567 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 5); 14568 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8 14569 && clz + 8 + 31 >= HOST_BITS_PER_WIDE_INT) 14572 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 8); 14593 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8 14594 && clz + 8 + 255 >= HOST_BITS_PER_WIDE_INT) 14596 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 8) 14541 int clz = clz_hwi (i); local 14796 int clz, ctz; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| dwarf2out.cc | 14469 int clz = clz_hwi (i); 14477 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 5 14478 && clz + 5 + 255 >= HOST_BITS_PER_WIDE_INT) 14482 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 5); 14483 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8 14484 && clz + 8 + 31 >= HOST_BITS_PER_WIDE_INT) 14487 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 8); 14508 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8 14509 && clz + 8 + 255 >= HOST_BITS_PER_WIDE_INT) 14511 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 8) 14456 int clz = clz_hwi (i); local 14711 int clz, ctz; local [all...] |