HomeSort by relevance Sort by last modified time
    Searched defs:quantization (Results 1 - 17 of 17) sorted by null

  /bionic/libc/kernel/uapi/linux/
v4l2-mediabus.h 31 __u16 quantization; member in struct:v4l2_mbus_framefmt
videodev2.h 196 __u32 quantization; member in struct:v4l2_pix_format
1135 __u8 quantization; member in struct:v4l2_pix_format_mplane
    [all...]
  /external/kernel-headers/original/uapi/linux/
v4l2-mediabus.h 27 * @quantization: quantization of the data (from enum v4l2_quantization)
37 __u16 quantization; member in struct:v4l2_mbus_framefmt
videodev2.h 365 * The default for R'G'B' quantization is always full range, except
366 * for the BT2020 colorspace. For Y'CbCr the quantization is always
375 * Determine how QUANTIZATION_DEFAULT should map to a proper quantization.
485 __u32 quantization; /* enum v4l2_quantization */ member in struct:v4l2_pix_format
2088 __u8 quantization; member in struct:v4l2_pix_format_mplane
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/tflite/
import.cc 73 auto quantization = input_tensor->quantization(); local
74 if (quantization) {
75 // Note that tf.mini only supports a single quantization parameters for
77 if (quantization->min() && quantization->max()) {
78 CHECK_EQ(1, quantization->min()->Length());
79 CHECK_EQ(1, quantization->max()->Length());
81 minmax.min = quantization->min()->Get(0);
82 minmax.max = quantization->max()->Get(0)
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/
model.cc 638 TfLiteQuantizationParams quantization; local
639 quantization.scale = 0;
640 quantization.zero_point = 0;
641 auto* q_params = tensor->quantization();
643 // Note that the schema could hold per-channel quantization parameters
646 // TODO(aselle): This assumes non per-channel quantization.
647 if (q_params->scale()) quantization.scale = q_params->scale()->Get(0);
649 quantization.zero_point = q_params->zero_point()->Get(0);
706 i, type, get_name(tensor), dims, quantization, buffer_ptr,
714 i, type, get_name(tensor), dims, quantization) != kTfLiteOk)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
obmalloc.c 1809 size_t quantization = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
obmalloc.c 1760 size_t quantization = 0; local
    [all...]
  /external/python/cpython2/Objects/
obmalloc.c 1809 size_t quantization = 0; local
    [all...]
  /external/webp/src/enc/
predictor_enc.c 148 // to a multiple of quantization, working modulo 256, taking care not to cross
151 uint8_t boundary, int quantization) {
154 const int lower = residual & ~(quantization - 1);
155 const int upper = lower + quantization;
162 // Halve quantization step to avoid crossing boundary. This midpoint is
165 return lower + (quantization >> 1);
171 // Halve quantization step to avoid crossing boundary. This midpoint is
174 return lower + (quantization >> 1);
181 // its prediction to a multiple of a quantization (a power of 2, not larger than
189 int quantization; local
    [all...]
  /external/python/cpython3/Objects/
obmalloc.c 2271 size_t quantization = 0; local
    [all...]
  /external/flac/libFLAC/
stream_encoder.c 3774 int quantization, ret; local
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/schema/
schema_generated.h 1223 std::unique_ptr<QuantizationParametersT> quantization; member in struct:tflite::TensorT
1251 const QuantizationParameters *quantization() const { function in struct:tflite::FLATBUFFERS_FINAL_CLASS
    [all...]
  /external/v4l2_codec2/vda/
videodev2.h 356 * The default for R'G'B' quantization is always full range, except
357 * for the BT2020 colorspace. For Y'CbCr the quantization is always
367 * Determine how QUANTIZATION_DEFAULT should map to a proper quantization.
469 __u32 quantization; /* enum v4l2_quantization */ member in struct:v4l2_pix_format
2020 __u8 quantization; member in struct:v4l2_pix_format_mplane
    [all...]
  /hardware/qcom/msm8998/kernel-headers/linux/
videodev2.h 226 __u32 quantization; member in struct:v4l2_pix_format
1435 __u8 quantization; member in struct:v4l2_pix_format_mplane
    [all...]
  /hardware/qcom/msm8998/original-kernel-headers/linux/
videodev2.h 348 * The default for R'G'B' quantization is always full range, except
349 * for the BT2020 colorspace. For Y'CbCr the quantization is always
359 * Determine how QUANTIZATION_DEFAULT should map to a proper quantization.
461 __u32 quantization; /* enum v4l2_quantization */ member in struct:v4l2_pix_format
2100 __u8 quantization; member in struct:v4l2_pix_format_mplane
    [all...]
  /external/valgrind/include/vki/
vki-linux.h 3767 __vki_u32 quantization; member in struct:vki_v4l2_pix_format
4295 __vki_u8 quantization; member in struct:vki_v4l2_pix_format_mplane
4525 __vki_u16 quantization; member in struct:vki_v4l2_mbus_framefmt
    [all...]

Completed in 997 milliseconds