HomeSort by relevance Sort by last modified time
    Searched refs:result_shift (Results 1 - 6 of 6) sorted by null

  /external/gemmlowp/public/
output_stages.h 35 // result_offset, result_mult_int, result_shift,
37 // ((input + result_offset) * result_mult_int + rounding) >> result_shift
39 // rounding = (result_shift < 1) ? 0 : (1 << (result_shift - 1));
43 std::int32_t result_shift; member in struct:gemmlowp::OutputStageQuantizeDownInt32ToUint8Scale
52 // result_offset, result_mult_int, result_shift,
54 // ((input + result_offset) * result_mult_int + rounding) >> result_shift
56 // rounding = (result_shift < 1) ? 0 : (1 << (result_shift - 1));
65 std::int32_t result_shift; member in struct:gemmlowp::OutputStageQuantizeDownInt32ToUint8ScalePC
    [all...]
gemmlowp.h 94 // The meaning of the offsets, result_mult_int and result_shift
114 // The meaning of the offsets, result_mult_int and result_shift
123 int result_shift) {
126 MakeStandardOutputPipeline(result_offset, result_mult_int, result_shift));
  /external/gemmlowp/internal/
output_neon.h 75 const std::int32_t result_shift = output_stage.result_shift; local
79 (result_shift < 1) ? 0 : (1 << (result_shift - 1));
83 return vshlq_s32(b, vdupq_n_s32(-result_shift));
103 const std::int32_t result_shift = output_stage.result_shift; local
105 (result_shift < 1) ? 0 : (1 << (result_shift - 1));
113 return vshlq_s32(b, vdupq_n_s32(-result_shift));
133 const std::int32_t result_shift = output_stage.result_shift; local
    [all...]
output.h 112 const std::int32_t result_shift = output_stage.result_shift; local
116 (result_shift < 1) ? 0 : (1 << (result_shift - 1));
118 result_shift;
136 const std::int32_t result_shift = output_stage.result_shift; local
140 (result_shift < 1) ? 0 : (1 << (result_shift - 1));
142 result_shift;
160 const std::int32_t result_shift = output_stage.result_shift; local
    [all...]
  /external/gemmlowp/test/
test.cc 126 int result_shift) {
135 result_shift));
157 int result_shift) {
166 result_shift));
184 int result_shift) {
187 result_mult_int, result_shift);
215 int result_shift) {
223 result_mult_int, result_shift, result->stride(), BitDepth);
239 int result_shift) {
244 result_shift, result->stride())
374 const int result_shift = (result_shift_min + result_shift_max) \/ 2; local
765 const int result_shift = c_shift; local
985 const int result_shift = c_shift; local
    [all...]
  /external/gemmlowp/eight_bit_int_gemm/
eight_bit_int_gemm.cc 73 const int result_shift = c_shift; local
91 result_mult_int, result_shift); \

Completed in 69 milliseconds