HomeSort by relevance Sort by last modified time
    Searched defs:bias (Results 26 - 50 of 213) sorted by null

12 3 4 5 6 7 8 9

  /external/tensorflow/tensorflow/core/kernels/
quantized_bias_add_op.cc 16 // Implements a quantized eight-bit version of the bias addition operation.
40 const Tensor& bias = context->input(1); variable
49 OP_REQUIRES(context, TensorShapeUtils::IsVector(bias.shape()),
51 bias.shape().DebugString()));
54 context, bias.shape().dim_size(0) == input.shape().dim_size(last_dim),
58 bias.shape().DebugString(), " vs. ", input.shape().DebugString()));
70 auto bias_ui8_array = bias.flat<quint8>();
81 input_max, bias, bias_min, bias_max, output, &total_min, &total_max);
  /external/elfutils/tests/
allregs.c 57 Dwarf_Addr bias; local
58 if (dwfl_module_getelf (mod, &bias) == NULL) /* Not really a module. */
addrcfi.c 49 print_detail (int result, const Dwarf_Op *ops, size_t nops, Dwarf_Addr bias)
64 printf ("(%#" PRIx64 ")", ops[i].number + bias);
79 Dwarf_Addr bias; member in struct:stuff
99 print_detail (result, ops, nops, stuff->bias);
114 int result = dwarf_cfi_addrframe (cfi, pc - stuff->bias, &stuff->frame);
127 start += stuff->bias;
128 end += stuff->bias;
149 print_detail (result, cfa_ops, cfa_nops, stuff->bias);
164 stuff.bias = 0;
166 dwfl_module_eh_cfi (mod, &stuff.bias), pc, &stuff)
    [all...]
dwfllines.c 42 Dwarf_Addr bias; local
45 cu = dwfl_nextcu (dwfl, cu, &bias);
75 assert (bias == dw_bias);
dwflsyms.c 124 Dwarf_Addr bias; local
136 &elf, &bias);
144 || sym.st_value == isym.st_value + bias
153 assert (addr_in_section (elf, shndxp, sym.st_value - bias));
185 if (value != isym.st_value + bias && ehdr.e_type != ET_REL)
  /external/icu/icu4c/source/i18n/
wintzimpl.cpp 40 static UBool getSystemTimeInformation(TimeZone *tz, SYSTEMTIME &daylightDate, SYSTEMTIME &standardDate, int32_t &bias, int32_t &daylightBias, int32_t &standardBias) {
50 bias = -1 * (initial->getRawOffset()/60000);
62 bias = -1 * (std->getRawOffset()/60000);
126 int32_t bias; local
132 if (getSystemTimeInformation(tz, daylightDate, standardDate, bias, daylightBias, standardBias)) {
134 zoneInfo->Bias = bias;
149 * information to put into zoneInfo. This includes bias and standard time date and daylight saving date.
  /external/libaom/libaom/av1/encoder/
picklpf.c 142 // Bias against raising loop filter in favor of lowering it.
143 int64_t bias = (best_err >> (15 - (filt_mid / 8))) * filter_step; local
146 bias = (bias * cpi->twopass.section_intra_rating) / 20;
148 // yx, bias less for large block size
149 if (cm->tx_mode != ONLY_4X4) bias >>= 1;
157 // If value is close to the best so far then bias towards a lower loop
159 if (ss_err[filt_low] < (best_err + bias)) {
174 // If value is significantly better than previous best, bias added against
176 if (ss_err[filt_high] < (best_err - bias)) {
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_wide_line.c 73 const float bias = half_pixel_center ? 0.125f : 0.0f; local
83 pos0[1] = pos0[1] - half_width - bias;
84 pos1[1] = pos1[1] + half_width - bias;
85 pos2[1] = pos2[1] - half_width - bias;
86 pos3[1] = pos3[1] + half_width - bias;
106 pos0[0] = pos0[0] - half_width + bias;
107 pos1[0] = pos1[0] + half_width + bias;
108 pos2[0] = pos2[0] - half_width + bias;
109 pos3[0] = pos3[0] + half_width + bias;
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_tex.c 323 GLfloat bias, min; local
327 /* The R200's LOD bias is a signed 2's complement value with a
328 * range of -16.0 <= bias < 16.0.
330 * NOTE: Add a small bias to the bias for conform mipsel.c test.
332 bias = *param;
335 bias = CLAMP( bias, min, 16.0 );
336 b = ((int)(bias * fixed_one)
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tex.c 281 GLfloat bias, min; local
284 /* The Radeon's LOD bias is a signed 2's complement value with a
285 * range of -1.0 <= bias < 4.0. We break this into two linear
291 bias = CLAMP( *param, min, 4.0 );
292 if ( bias == 0 ) {
294 } else if ( bias > 0 ) {
295 b = ((GLuint)SCALED_FLOAT_TO_BYTE( bias, 4.0 )) << RADEON_LOD_BIAS_SHIFT;
297 b = ((GLuint)SCALED_FLOAT_TO_BYTE( bias, 1.0 )) << RADEON_LOD_BIAS_SHIFT;
  /external/skia/src/gpu/effects/
GrMatrixConvolutionEffect.h 24 SkScalar bias,
30 gain, bias, kernelOffset, tileMode, convolveAlpha));
37 SkScalar bias,
49 float bias() const { return fBias; } function in class:GrMatrixConvolutionEffect
65 SkScalar bias,
  /external/skia/src/gpu/gradients/
GrSweepGradientLayout.cpp 27 auto bias = _outer.bias(); variable
28 (void)bias; variable
31 fBiasVar = args.fUniformHandler->addUniform(kFragment_GrShaderFlag, kHalf_GrSLType, "bias");
51 float biasValue = _outer.bias();
  /external/skqp/src/gpu/effects/
GrMatrixConvolutionEffect.h 24 SkScalar bias,
30 gain, bias, kernelOffset, tileMode, convolveAlpha));
37 SkScalar bias,
49 float bias() const { return fBias; } function in class:GrMatrixConvolutionEffect
65 SkScalar bias,
  /external/skqp/src/gpu/gradients/
GrSweepGradientLayout.cpp 27 auto bias = _outer.bias(); variable
28 (void)bias; variable
32 kDefault_GrSLPrecision, "bias");
52 float biasValue = _outer.bias();
  /external/tensorflow/tensorflow/cc/gradients/
nn_grad_test.cc 222 auto bias = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(bias_shape)); local
223 auto y = BiasAdd(scope_, x, bias);
224 RunTest({x, bias}, {shape, bias_shape}, {y}, {shape});
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
graph_collection_operator.cc 111 float bias; local
115 input_data->RandomSample(example, oblique->add_features(), &bias, &type);
120 // The comparison bias is assumed to be zero.
  /build/make/tools/zipalign/
ZipAlign.cpp 72 int bias = 0; local
93 bias += pNewEntry->getCompressedLen() - pEntry->getCompressedLen();
105 off_t newOffset = pEntry->getFileOffset() + bias;
110 // bias, (long) pEntry->getUncompressedLen(), padding);
116 bias += padding;
  /cts/tests/sensor/src/android/hardware/cts/helpers/
SensorCalibratedUncalibratedVerifier.java 29 * calibrated = uncalibrated - bias
115 float bias = uncalibratedEvent.values[i + 3]; local
118 + " calibrated = uncalibrated - bias. Axis=%d, Calibrated=%s, "
119 + "Uncalibrated=%s, Bias=%s, Threshold=%s",
125 bias,
127 Assert.assertEquals(message, calibrated, uncalibrated - bias, threshold);
  /device/google/contexthub/firmware/os/algos/calibration/magnetometer/mag_cal/
mag_cal.c 161 struct Vec3 bias; local
164 if (kasaFit(&moc->kasa, &bias, &radius, MAX_FIT_MAG, MIN_FIT_MAG)) {
169 CAL_ENCODE_FLOAT(bias.x, 3), CAL_ENCODE_FLOAT(bias.y, 3),
170 CAL_ENCODE_FLOAT(bias.z, 3), CAL_ENCODE_FLOAT(radius, 3),
178 if (diversityCheckerNormQuality(&moc->diversity_checker, bias.x, bias.y,
179 bias.z) &&
187 "[MAG_CAL:BIAS UPDATE] :", CAL_FORMAT_3DIGITS_TRIPLET ", "
192 CAL_ENCODE_FLOAT(bias.x, 3), CAL_ENCODE_FLOAT(bias.y, 3)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
profile.py 159 bias = 0 # calibration constant variable in class:Profile
161 def __init__(self, timer=None, bias=None):
167 if bias is None:
168 bias = self.bias
169 self.bias = bias # Materialize in local dict for lookup speed.
215 t = t[0] + t[1] - self.t - self.bias
232 t = timer() - self.t - self.bias
247 t = timer()/60.0 - self.t - self.bias
    [all...]
  /external/deqp/modules/gles31/functional/
es31fFboTestUtil.hpp 62 void setTexScaleBias (int samplerNdx, const tcu::Vec4& scale, const tcu::Vec4& bias);
63 void setOutScaleBias (const tcu::Vec4& scale, const tcu::Vec4& bias);
75 tcu::Vec4 bias; member in struct:deqp::gles31::Functional::FboTestUtil::Texture2DShader::Input
93 void setTexScaleBias (const tcu::Vec4& scale, const tcu::Vec4& bias);
130 void readPixels (sglr::Context& ctx, tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias);
  /external/elfutils/libdwfl/
derelocate.c 314 Dwarf_Addr bias; local
315 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
405 Dwarf_Addr *bias)
431 *bias = dwfl_adjusted_address (mod, 0);
dwfl_report_elf.c 63 GElf_Addr start = 0, end = 0, bias = 0; local
90 || (bias == 0 && end > start && end != next))
143 if (first || bias > shdr->sh_addr)
145 bias = shdr->sh_addr;
147 if ((shdr->sh_addr - bias + base) & (align - 1))
152 + (bias & (align - 1)));
159 if (bias != 0)
163 Now just compute the bias from the requested base. */
165 end = end - bias + start;
166 bias = start - bias
247 GElf_Addr vaddr, address_sync, start, end, bias; local
    [all...]
  /external/gemmlowp/meta/
test_transform_correctness.cc 150 std::uint8_t bias = params.kernel.bias[i % params.kernel.count]; local
155 float bias_float = static_cast<float>(bias);
274 biasadd_params.kernel.bias = array_uint8_2.get();
transform_kernels.h 67 const BiasType* bias; member in struct:gemmlowp::meta::BiasAdd

Completed in 1294 milliseconds

12 3 4 5 6 7 8 9