Searched refs:bias (Results 201 - 225 of 247) sorted by relevance

12345678910

/external/valgrind/main/VEX/priv/
H A Dhost_x86_isel.c691 bias, generate an X86AMode holding the relevant guest state
696 IRExpr* off, Int bias )
720 addl $bias, %tmp (if bias != 0)
727 if (bias != 0) {
729 X86Instr_Alu32R(Xalu_ADD, X86RMI_Imm(bias), tmp));
1447 e->Iex.GetI.ix, e->Iex.GetI.bias );
2153 e->Iex.GetI.ix, e->Iex.GetI.bias );
3059 e->Iex.GetI.ix, e->Iex.GetI.bias );
3986 puti->ix, puti->bias );
[all...]
H A Dhost_amd64_isel.c699 bias, generate an AMD64AMode holding the relevant guest state
704 IRExpr* off, Int bias )
720 addq $bias, %tmp (if bias != 0)
727 if (bias != 0) {
728 /* Make sure the bias is sane, in the sense that there are
730 vassert(-10000 < bias && bias < 10000);
732 AMD64Instr_Alu64R(Aalu_ADD, AMD64RMI_Imm(bias), tmp));
1804 e->Iex.GetI.ix, e->Iex.GetI.bias );
[all...]
H A Dhost_ppc_isel.c595 bias, generate a PPCAMode pointing at the relevant piece of
599 IRExpr* off, Int bias )
618 if (bias < -100 || bias > 100) /* somewhat arbitrarily */
625 addi %tmp, %off, bias (if bias != 0)
636 PPCRH_Imm(True/*signed*/, toUShort(bias))));
2298 e->Iex.GetI.ix, e->Iex.GetI.bias );
5419 puti->ix, puti->bias );
H A Dguest_arm64_toIR.c5429 IRTemp bias = newTemp(Ity_V128); local
5430 assign(bias,
5434 binop(Iop_Sub8x16, mkexpr(src), mkexpr(bias)));
H A Dguest_ppc_toIR.c8121 UInt bias = sp? 127 : 1023; local
8129 assign(e_b, binop( Iop_Sub32, mkexpr(frB_exp_shR), mkU32( bias ) ));
8230 UInt bias = sp? 127 : 1023; local
8255 assign(e_a, binop( Iop_Sub32, mkexpr(frA_exp_shR), mkU32( bias ) ));
8256 assign(e_b, binop( Iop_Sub32, mkexpr(frB_exp_shR), mkU32( bias ) ));
8308 * Test if FRA != Zero and (e_a - e_b) >= bias
8312 binop( Iop_CmpLT32S, mkU32( bias ),
10287 * given by TE using significand from frB. Need to add the bias
10291 /* Take 2's complement of the 5-bit value and subtract from bias.
10381 * given by TE using significand of 1. Need to add the bias
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderDerivateTests.cpp379 const tcu::Vec4& bias,
393 const tcu::Vec4 resDerivate = readDerivate(result, scale, bias, x, y);
697 << TestLog::Message << "u_scale: " << m_derivScale << ", u_bias: " << m_derivBias << " (displayed values have scale/bias removed)" << TestLog::EndMessage
1020 // No scale or bias used for accuracy.
1026 // Compute scale - bias that normalizes to 0..1 range.
1282 // No scale or bias used for accuracy.
1288 // Compute scale - bias that normalizes to 0..1 range.
372 verifyConstantDerivate(tcu::TestLog& log, const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask, glu::DataType dataType, const tcu::Vec4& reference, const tcu::Vec4& threshold, const tcu::Vec4& scale, const tcu::Vec4& bias, VerificationLogging logPolicy = LOG_ALL) argument
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir.h1333 ir_txb, /**< Texture look-up with LOD bias */
1354 * (txb <type> <sampler> <coordinate> 0 1 ( ) <bias>)
1423 ir_rvalue *bias; /**< Floating point LOD bias */ member in union:ir_texture::__anon14257
/external/mesa3d/src/glsl/
H A Dir.h1333 ir_txb, /**< Texture look-up with LOD bias */
1354 * (txb <type> <sampler> <coordinate> 0 1 ( ) <bias>)
1423 ir_rvalue *bias; /**< Floating point LOD bias */ member in union:ir_texture::__anon27668
/external/elfutils/0.153/src/
H A Dreadelf.c7534 const unsigned int bias = item->format == 'b'; local
7571 p += sprintf (p, "%u", bit - bias);
7573 p += sprintf (p, ",%u", bit - bias);
7575 p += sprintf (p, "-%u,%u", lastbit - bias, bit - bias);
7583 p += sprintf (p, "-%u", nbits - bias);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_arit.c2677 * Optionally apply an integer bias.
2681 * ifloor(log2(x)) + bias
2686 int bias)
2704 lp_build_const_int_vec(bld->gallivm, type, 127 - bias), "");
2684 lp_build_extract_exponent(struct lp_build_context *bld, LLVMValueRef x, int bias) argument
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_arit.c2677 * Optionally apply an integer bias.
2681 * ifloor(log2(x)) + bias
2686 int bias)
2704 lp_build_const_int_vec(bld->gallivm, type, 127 - bias), "");
2684 lp_build_extract_exponent(struct lp_build_context *bld, LLVMValueRef x, int bias) argument
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp2606 ir->lod_info.bias->accept(this);
2713 /* TGSI stores LOD or LOD bias in the last channel of the coords. */
3728 st_src_reg scale, bias; local
3733 /* MAD colorTemp, colorTemp, scale, bias; */
3735 bias = st_src_reg(PROGRAM_STATE_VAR, bias_p, GLSL_TYPE_FLOAT);
3736 inst = v->emit(NULL, TGSI_OPCODE_MAD, dst0, src0, scale, bias);
4380 * The bias of the y-coordinate depends on whether y-inversion takes place
4437 /* the driver supports pixel center half integer, need to bias X,Y */
4451 /* the driver supports pixel center integer, need to bias X,Y */
/external/mesa3d/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp2606 ir->lod_info.bias->accept(this);
2713 /* TGSI stores LOD or LOD bias in the last channel of the coords. */
3728 st_src_reg scale, bias; local
3733 /* MAD colorTemp, colorTemp, scale, bias; */
3735 bias = st_src_reg(PROGRAM_STATE_VAR, bias_p, GLSL_TYPE_FLOAT);
3736 inst = v->emit(NULL, TGSI_OPCODE_MAD, dst0, src0, scale, bias);
4380 * The bias of the y-coordinate depends on whether y-inversion takes place
4437 /* the driver supports pixel center half integer, need to bias X,Y */
4451 /* the driver supports pixel center integer, need to bias X,Y */
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_texfilter.c141 * is a power of two. Adding a bias to A (which is a multiple of B)
1964 /* apply LOD bias, but don't clamp yet */
1965 const GLfloat bias = local
1969 lod += bias;
/external/deqp/modules/gles2/functional/
H A Des2fShaderOperatorTests.cpp341 OperatorShaderEvaluator (ShaderEvalFunc evalFunc, float scale, float bias) argument
345 m_bias = bias;
536 // Scale & bias.
1182 // texture2D (sampler, vec2, bias)
1184 // texture2DProj (sampler, vec3, bias)
1186 // texture2DProj (sampler, vec4, bias)
1191 // textureCube (sampler, vec3, bias)
/external/libmtp/src/
H A Dptp.c3549 double bias; member in struct:__anon23867
4134 ptp_value_trans[i].bias);
/external/mesa3d/src/mesa/swrast/
H A Ds_texfilter.c141 * is a power of two. Adding a bias to A (which is a multiple of B)
1964 /* apply LOD bias, but don't clamp yet */
1965 const GLfloat bias = local
1969 lod += bias;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dpack.c4396 /* Don't do RGBA scale/bias or RGBA->RGBA mapping if starting
4598 /* Don't do RGBA scale/bias or RGBA->RGBA mapping if starting
5137 * transferOps - apply offset/bias/lookup ops?
5416 * The glPixelTransfer (scale/bias) params will be applied.
5581 /* apply depth scale and bias */
5584 const GLfloat bias = ctx->Pixel.DepthBias; local
5585 if (scale != 1.0 || bias != 0.0) {
5588 depthValues[i] = depthValues[i] * scale + bias;
/external/mesa3d/src/mesa/main/
H A Dpack.c4396 /* Don't do RGBA scale/bias or RGBA->RGBA mapping if starting
4598 /* Don't do RGBA scale/bias or RGBA->RGBA mapping if starting
5137 * transferOps - apply offset/bias/lookup ops?
5416 * The glPixelTransfer (scale/bias) params will be applied.
5581 /* apply depth scale and bias */
5584 const GLfloat bias = ctx->Pixel.DepthBias; local
5585 if (scale != 1.0 || bias != 0.0) {
5588 depthValues[i] = depthValues[i] * scale + bias;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_visitor.cpp771 * compare with a bias of 0.0.
832 /* Oh joy. gen4 doesn't have SIMD8 non-shadow-compare bias/lod
851 /* lod/bias appears after u/v/r. */
911 * parameters like shadow comparitor or LOD bias. If optional
1309 ir->lod_info.bias->accept(this);
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dir_to_mesa.cpp2009 ir->lod_info.bias->accept(this);
2102 /* Mesa IR stores lod or lod bias in the last channel of the coords. */
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_visitor.cpp771 * compare with a bias of 0.0.
832 /* Oh joy. gen4 doesn't have SIMD8 non-shadow-compare bias/lod
851 /* lod/bias appears after u/v/r. */
911 * parameters like shadow comparitor or LOD bias. If optional
1309 ir->lod_info.bias->accept(this);
/external/mesa3d/src/mesa/program/
H A Dir_to_mesa.cpp2009 ir->lod_info.bias->accept(this);
2102 /* Mesa IR stores lod or lod bias in the last channel of the coords. */
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvparser.cpp7319 // For WebM files, there is a bias towards previous reference times
8225 const long long bias = (1LL << exp) - 1LL;
8226 const long long delta_size = delta_size_ - bias;
/external/chromium_org/third_party/sqlite/src/src/
H A Dbtree.c653 int bias, /* Bias search to the high end */
668 rc = sqlite3BtreeMovetoUnpacked(pCur, pIdxKey, nKey, bias, pRes);
4409 int biasRight, /* If true, bias the search to the high end */
649 btreeMoveto( BtCursor *pCur, const void *pKey, i64 nKey, int bias, int *pRes ) argument

Completed in 3810 milliseconds

12345678910