Searched refs:b_shift (Results 1 – 3 of 3) sorted by relevance
/external/tensorflow/tensorflow/lite/kernels/internal/ |
D | quantization_util.cc | 213 int b_shift; in IntegerDoubleMultiply() local 214 const int64_t b_fraction = IntegerFrExp(b, &b_shift); in IntegerDoubleMultiply() 217 (b_shift == std::numeric_limits<int>::max())) { in IntegerDoubleMultiply() 220 const int result_shift = a_shift + b_shift + 1; in IntegerDoubleMultiply() 228 int b_shift; in IntegerDoubleCompare() local 229 const int64_t b_fraction = IntegerFrExp(b, &b_shift); in IntegerDoubleCompare() 233 (b_shift == std::numeric_limits<int>::max())) { in IntegerDoubleCompare() 241 } else if (a_shift < b_shift) { in IntegerDoubleCompare() 243 } else if (a_shift > b_shift) { in IntegerDoubleCompare()
|
/external/lua/src/ |
D | lbitlib.c | 99 static int b_shift (lua_State *L, lua_Unsigned r, lua_Integer i) { in b_shift() function 117 return b_shift(L, checkunsigned(L, 1), luaL_checkinteger(L, 2)); in b_lshift() 122 return b_shift(L, checkunsigned(L, 1), -luaL_checkinteger(L, 2)); in b_rshift() 130 return b_shift(L, r, -i); in b_arshift()
|
/external/neon_2_sse/ |
D | NEON_2_SSE.h | 9037 uint8x16_t b_shift; variable 9041 b_shift = vshrq_n_u8( b, c); // c zeros on the left in b due to logical shift 9042 return _mm_or_si128 (a_masked, b_shift); //combine (insert b into a) 9049 uint16x8_t b_shift; variable 9051 b_shift = vshrq_n_u16( b, c); // c zeros on the left in b due to logical shift 9054 return _mm_or_si128 (a_c, b_shift); //combine (insert b into a) 9061 uint32x4_t b_shift; variable 9063 b_shift = vshrq_n_u32( b, c); // c zeros on the left in b due to logical shift 9066 return _mm_or_si128 (a_c, b_shift); //combine (insert b into a) 9073 uint64x2_t b_shift; variable [all …]
|