Home
last modified time | relevance | path

Searched refs:high_bits (Results 1 – 7 of 7) sorted by relevance

/external/libchrome/base/
Dhash.cc66 size_t high_bits = in HashInts32() local
68 return high_bits; in HashInts32()
101 size_t high_bits = in HashInts64() local
103 return high_bits; in HashInts64()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Darm64-vadd.ll811 %high_bits = lshr <8 x i16> %sum, <i16 8, i16 8, i16 8, i16 8, i16 8, i16 8, i16 8, i16 8>
812 %narrowed = trunc <8 x i16> %high_bits to <8 x i8>
822 %high_bits = lshr <4 x i32> %sum, <i32 16, i32 16, i32 16, i32 16>
823 %narrowed = trunc <4 x i32> %high_bits to <4 x i16>
833 %high_bits = lshr <2 x i64> %sum, <i64 32, i64 32>
834 %narrowed = trunc <2 x i64> %high_bits to <2 x i32>
844 %high_bits = lshr <8 x i16> %sum, <i16 8, i16 8, i16 8, i16 8, i16 8, i16 8, i16 8, i16 8>
845 %narrowed = trunc <8 x i16> %high_bits to <8 x i8>
856 %high_bits = lshr <4 x i32> %sum, <i32 16, i32 16, i32 16, i32 16>
857 %narrowed = trunc <4 x i32> %high_bits to <4 x i16>
[all …]
/external/llvm/test/CodeGen/AArch64/
Darm64-vadd.ll811 %high_bits = lshr <8 x i16> %sum, <i16 8, i16 8, i16 8, i16 8, i16 8, i16 8, i16 8, i16 8>
812 %narrowed = trunc <8 x i16> %high_bits to <8 x i8>
822 %high_bits = lshr <4 x i32> %sum, <i32 16, i32 16, i32 16, i32 16>
823 %narrowed = trunc <4 x i32> %high_bits to <4 x i16>
833 %high_bits = lshr <2 x i64> %sum, <i64 32, i64 32>
834 %narrowed = trunc <2 x i64> %high_bits to <2 x i32>
844 %high_bits = lshr <8 x i16> %sum, <i16 8, i16 8, i16 8, i16 8, i16 8, i16 8, i16 8, i16 8>
845 %narrowed = trunc <8 x i16> %high_bits to <8 x i8>
856 %high_bits = lshr <4 x i32> %sum, <i32 16, i32 16, i32 16, i32 16>
857 %narrowed = trunc <4 x i32> %high_bits to <4 x i16>
[all …]
/external/python/cpython2/Lib/
Dpickle.py457 high_bits = obj >> 31 # note that Python shift sign-extends
458 if high_bits == 0 or high_bits == -1:
/external/v8/src/s390/
Dsimulator-s390.cc3420 int32_t high_bits = product >> 32; in EVALUATE() local
3421 r1_val = high_bits; in EVALUATE()
3423 set_low_register(r1, high_bits); in EVALUATE()
3790 int32_t high_bits = product >> 32; in EVALUATE() local
3791 r1_val = high_bits; in EVALUATE()
3793 set_low_register(r1, high_bits); in EVALUATE()
7250 int32_t high_bits = product >> 32; in EVALUATE() local
7252 set_low_register(r1, high_bits); in EVALUATE()
8155 int32_t high_bits = product >> 32; in EVALUATE() local
8156 r1_val = high_bits; in EVALUATE()
[all …]
/external/jemalloc_new/src/
Djemalloc.c1779 static const size_t high_bits = SIZE_T_MAX << (sizeof(size_t) * 8 / 2); local
1793 if (likely((high_bits & (dopts->num_items | dopts->item_size)) == 0)) {
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/
Ddepthwiseconv_uint8_3x3_filter.h62 const uint8x16_t high_bits = vshrq_n_u8(b, 4); in vqtbl4q_s8() local
64 deleted_bit_3 = vsliq_n_u8(deleted_bit_3, high_bits, 3); in vqtbl4q_s8()