Searched refs:rho (Results 1 - 18 of 18) sorted by relevance

/xsrc/external/mit/xorg-server.old/dist/os/
H A Dxdmauth.c64 static XdmAuthKeyRec rho; variable in typeref:typename:XdmAuthKeyRec
79 return XdmcpCompareKeys (incoming, &rho);
92 XdmcpWrap ((unsigned char *)&rho, (unsigned char *)&privateKey,
155 XdmcpGenerateKey (&rho);
157 (char *)&rho,
158 sizeof (rho),
169 XdmAuthKeyRec rho; member in struct:_XdmAuthorization
178 XdmAuthKeyRec rho; member in struct:_XdmClientAuth
195 if (!XdmcpCompareKeys (&a->rho, &b->rho))
250 XdmAuthorizationValidate(unsigned char * plain,int length,XdmAuthKeyPtr rho,ClientPtr xclient,char ** reason) argument
[all...]
/xsrc/external/mit/xorg-server/dist/os/
H A Dxdmauth.c167 XdmAuthKeyRec rho; member in struct:_XdmAuthorization
176 XdmAuthKeyRec rho; member in struct:_XdmClientAuth
193 if (!XdmcpCompareKeys(&a->rho, &b->rho))
208 auth->rho.data[i] = plain[j];
244 XdmAuthKeyPtr rho, ClientPtr xclient,
260 if (!XdmcpCompareKeys(&client->rho, rho)) {
360 memmove(new->rho.data, rho_bits, (int) 8);
383 XdmAuthorizationValidate(plain, cookie_length, &auth->rho, xclien
243 XdmAuthorizationValidate(unsigned char * plain,int length,XdmAuthKeyPtr rho,ClientPtr xclient,const char ** reason) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample.c328 * Generate code to compute coordinate gradient (rho).
331 * The resulting rho has bld->levelf format (per quad or per element).
357 LLVMValueRef rho; local in function:lp_build_rho
370 * rho calcs are always per quad except for explicit derivs (excluding
389 rho = lp_build_pack_aos_scalars(bld->gallivm, coord_bld->type,
393 rho = lp_build_swizzle_scalar_aos(coord_bld, cube_rho, 0, 4);
398 /* skipping sqrt hence returning rho squared */
400 rho = lp_build_mul(rho_bld, cubesize, rho);
436 rho
735 lp_build_brilinear_rho(struct lp_build_context * bld,LLVMValueRef rho,double factor,LLVMValueRef * out_lod_ipart,LLVMValueRef * out_lod_fpart) argument
886 LLVMValueRef rho; local in function:lp_build_lod_selector
1755 lp_build_cube_lookup(struct lp_build_sample_context * bld,LLVMValueRef * coords,const struct lp_derivatives * derivs_in,LLVMValueRef * rho,struct lp_derivatives * derivs_out,boolean need_derivs) argument
[all...]
H A Dlp_bld_sample.h648 LLVMValueRef *rho,
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample.c203 * Generate code to compute coordinate gradient (rho).
206 * The resulting rho has bld->levelf format (per quad or per element).
232 LLVMValueRef rho; local in function:lp_build_rho
245 * rho calcs are always per quad except for explicit derivs (excluding
264 rho = lp_build_pack_aos_scalars(bld->gallivm, coord_bld->type,
268 rho = lp_build_swizzle_scalar_aos(coord_bld, cube_rho, 0, 4);
273 /* skipping sqrt hence returning rho squared */
275 rho = lp_build_mul(rho_bld, cubesize, rho);
311 rho
610 lp_build_brilinear_rho(struct lp_build_context * bld,LLVMValueRef rho,double factor,LLVMValueRef * out_lod_ipart,LLVMValueRef * out_lod_fpart) argument
760 LLVMValueRef rho; local in function:lp_build_lod_selector
1618 lp_build_cube_lookup(struct lp_build_sample_context * bld,LLVMValueRef * coords,const struct lp_derivatives * derivs_in,LLVMValueRef * rho,struct lp_derivatives * derivs_out,boolean need_derivs) argument
[all...]
H A Dlp_bld_sample.h566 LLVMValueRef *rho,
/xsrc/external/mit/MesaLib/dist/src/microsoft/compiler/
H A Ddxil_nir_lower_int_samplers.c353 nir_ssa_def *rho = nir_channel(b, r, 0); local in function:evalute_active_lod
355 rho = nir_fmax(b, rho, nir_channel(b, r, i));
356 lod = nir_flog2(b, rho);
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_lower_tex.c688 nir_ssa_def *rho; local in function:lower_gradient
690 rho = nir_fmax(b, nir_fabs(b, dPdx), nir_fabs(b, dPdy));
692 rho = nir_fmax(b,
697 /* lod = log2(rho). We're ignoring GL state biases for now. */
698 nir_ssa_def *lod = nir_flog2(b, rho);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
H A Ds_span.c428 GLfloat rho = MAX2(x, y); local in function:_swrast_compute_lambda
429 GLfloat lambda = LOG2(rho);
448 GLfloat maxU, maxV, rho, lambda;
455 rho = MAX2(maxU, maxV);
456 lambda = LOG2(rho);
/xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
H A Ds_span.c428 GLfloat rho = MAX2(x, y); local in function:_swrast_compute_lambda
429 GLfloat lambda = log2f(rho);
448 GLfloat maxU, maxV, rho, lambda;
455 rho = MAX2(maxU, maxV);
456 lambda = logf2(rho);
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_lower_tex.c741 nir_ssa_def *rho; local in function:lower_gradient
743 rho = nir_fmax(b, nir_fabs(b, dPdx), nir_fabs(b, dPdy));
745 rho = nir_fmax(b,
750 /* lod = log2(rho). We're ignoring GL state biases for now. */
751 nir_ssa_def *lod = nir_flog2(b, rho);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c506 const float rho = MAX2(dsdx, dsdy) * u_minify(texture->width0, sview->base.u.tex.first_level); local in function:compute_lambda_1d_explicit_gradients
507 return util_fast_log2(rho);
552 const float rho = MAX2(maxx, maxy); local in function:compute_lambda_2d_explicit_gradients
553 return util_fast_log2(rho);
599 const float rho = MAX3(maxx, maxy, maxz); local in function:compute_lambda_3d_explicit_gradients
601 return util_fast_log2(rho);
632 const float rho = MAX3(maxx, maxy, maxz) * u_minify(texture->width0, sview->base.u.tex.first_level) / 2.0f; local in function:compute_lambda_cube_explicit_gradients
634 return util_fast_log2(rho);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_linear_sampler.c799 int rho = MAX4(dsdx, dsdy, dtdx, dtdy); local in function:lp_linear_init_sampler
801 minify = (rho > FIXED16_ONE);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c520 const float rho = MAX2(dsdx, dsdy) * u_minify(texture->width0, sview->base.u.tex.first_level); local in function:compute_lambda_1d_explicit_gradients
521 return util_fast_log2(rho);
566 const float rho = MAX2(maxx, maxy); local in function:compute_lambda_2d_explicit_gradients
567 return util_fast_log2(rho);
613 const float rho = MAX3(maxx, maxy, maxz); local in function:compute_lambda_3d_explicit_gradients
615 return util_fast_log2(rho);
646 const float rho = MAX3(maxx, maxy, maxz) * u_minify(texture->width0, sview->base.u.tex.first_level) / 2.0f; local in function:compute_lambda_cube_explicit_gradients
648 return util_fast_log2(rho);
/xsrc/external/mit/mesa-demos/dist/src/objviewer/
H A Dglm.c1275 float theta, phi, rho, x, y, z, r; local in function:glmSpheremapTexture
1292 rho = sqrt((r * r) + (z * z));
1301 phi = acos(z / rho);
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D7.10.rst1820 - gallivm: Vectorize the rho computation.
1841 - gallivm: Special bri-linear computation path for unmodified rho.
H A D21.3.0.rst1591 - gallivm: make rho-approximation opt-in instead of opt-out
H A D20.2.0.rst1513 - gallivm/sample: always square rho before fast log2

Completed in 59 milliseconds