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

  /external/chromium-libpac/src/
net_util.cc 80 int number_of_bits = atoi(parts[1].c_str()); local
83 if (number_of_bits < 0 ||
84 number_of_bits > static_cast<int>(ip_number->size() * 8))
87 *prefix_length_in_bits = static_cast<size_t>(number_of_bits);
  /external/tensorflow/tensorflow/python/ops/
quantized_conv_ops_test.py 90 number_of_bits = 32
91 number_of_steps = 1 << number_of_bits
95 lowest_quantized = -(1 << (number_of_bits - 1))
  /external/tensorflow/tensorflow/core/kernels/
quantization_utils.h 51 const int number_of_bits = sizeof(T) * 8; local
52 const int64 number_of_steps = static_cast<int64>(1) << number_of_bits;
93 const int number_of_bits = sizeof(T) * 8; local
94 const int64 number_of_steps = static_cast<int64>(1) << number_of_bits;
160 static constexpr int number_of_bits = sizeof(T) * 8; member in struct:tensorflow::QuantizedToFloatStruct
162 << number_of_bits;
183 static constexpr int number_of_bits = sizeof(T) * 8; member in struct:tensorflow::FloatToQuantizedStruct
185 << number_of_bits;
    [all...]

Completed in 156 milliseconds