/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_sample.c | 332 * Generate code to compute coordinate gradient (rho). 335 * The resulting rho has bld->levelf format (per quad or per element). 361 LLVMValueRef rho; in lp_build_rho() local 374 * rho calcs are always per quad except for explicit derivs (excluding in lp_build_rho() 393 rho = lp_build_pack_aos_scalars(bld->gallivm, coord_bld->type, in lp_build_rho() 397 rho = lp_build_swizzle_scalar_aos(coord_bld, cube_rho, 0, 4); in lp_build_rho() 402 /* skipping sqrt hence returning rho squared */ in lp_build_rho() 404 rho = lp_build_mul(rho_bld, cubesize, rho); in lp_build_rho() 440 rho in lp_build_rho() 743 lp_build_brilinear_rho(struct lp_build_context *bld, LLVMValueRef rho, double factor, LLVMValueRef *out_lod_ipart, LLVMValueRef *out_lod_fpart) lp_build_brilinear_rho() argument 894 LLVMValueRef rho; lp_build_lod_selector() local 1757 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) lp_build_cube_lookup() argument [all...] |
H A D | lp_bld_sample.h | 656 LLVMValueRef *rho,
|
/third_party/musl/src/complex/ |
H A D | ctanh.c | 41 * rho = cosh(x) 55 * beta rho s + i t 71 double t, beta, s, rho, denom; in ctanh() local 126 rho = sqrt(1 + s * s); /* = cosh(x) */ in ctanh() 128 return CMPLX((beta * rho * s) / denom, t / denom); in ctanh()
|
H A D | ctanhf.c | 36 float t, beta, s, rho, denom; in ctanhf() local 63 rho = sqrtf(1 + s * s); in ctanhf() 65 return CMPLXF((beta * rho * s) / denom, t / denom); in ctanhf()
|
/third_party/ffmpeg/libavcodec/ |
H A D | aacps_tablegen.h | 159 float alpha, gamma, mu, rho; in ps_tableinit() local 161 rho = FFMAX(icc_invq[icc], 0.05f); in ps_tableinit() 162 alpha = 0.5f * atan2f(2.0f * c * rho, c*c - 1.0f); in ps_tableinit() 164 mu = sqrtf(1 + (4 * rho * rho - 4)/(mu * mu)); in ps_tableinit()
|
H A D | mpeg4videodec.c | 251 int rho = 3 - s->sprite_warping_accuracy; in mpeg4_decode_sprite_trajectory() local 367 sprite_offset[0][0] = ((int64_t) sprite_ref[0][0] * (1 << alpha + rho)) + in mpeg4_decode_sprite_trajectory() 371 ((int64_t) -vop_ref[0][1]) + (1 << (alpha + rho - 1)); in mpeg4_decode_sprite_trajectory() 372 sprite_offset[0][1] = ((int64_t) sprite_ref[0][1] * (1 << alpha + rho)) + in mpeg4_decode_sprite_trajectory() 376 ((int64_t) -vop_ref[0][1]) + (1 << (alpha + rho - 1)); in mpeg4_decode_sprite_trajectory() 381 (int64_t) sprite_ref[0][0] - 16 * w2 + (1 << (alpha + rho + 1))); in mpeg4_decode_sprite_trajectory() 386 (int64_t) sprite_ref[0][1] - 16 * w2 + (1 << (alpha + rho + 1))); in mpeg4_decode_sprite_trajectory() 392 ctx->sprite_shift[0] = alpha + rho; in mpeg4_decode_sprite_trajectory() 393 ctx->sprite_shift[1] = alpha + rho + 2; in mpeg4_decode_sprite_trajectory() 399 sprite_offset[0][0] = ((int64_t)sprite_ref[0][0] * (1 << (alpha + beta + rho in mpeg4_decode_sprite_trajectory() [all...] |
/third_party/toybox/toys/other/ |
H A D | sha3sum.c | 33 static const char rho[] = variable 54 a[pi[x]] = (t<<rho[x])|(t>>(64-rho[x])); in keccak()
|
/third_party/mesa3d/src/microsoft/compiler/ |
H A D | dxil_nir_lower_int_samplers.c | 353 nir_ssa_def *rho = nir_channel(b, r, 0); in evalute_active_lod() local 355 rho = nir_fmax(b, rho, nir_channel(b, r, i)); in evalute_active_lod() 356 lod = nir_flog2(b, rho); in evalute_active_lod()
|
/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_gf2m.c | 1012 BIGNUM *a, *z, *rho, *w, *w2, *tmp; in BN_GF2m_mod_solve_quad_arr() local 1053 rho = BN_CTX_get(ctx); in BN_GF2m_mod_solve_quad_arr() 1059 if (!BN_priv_rand_ex(rho, p[0], BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ANY, in BN_GF2m_mod_solve_quad_arr() 1062 if (!BN_GF2m_mod_arr(rho, rho, p)) in BN_GF2m_mod_solve_quad_arr() 1065 if (!BN_copy(w, rho)) in BN_GF2m_mod_solve_quad_arr() 1076 if (!BN_GF2m_add(w, w2, rho)) in BN_GF2m_mod_solve_quad_arr()
|
/third_party/openssl/crypto/bn/ |
H A D | bn_gf2m.c | 1007 BIGNUM *a, *z, *rho, *w, *w2, *tmp; in BN_GF2m_mod_solve_quad_arr() local 1048 rho = BN_CTX_get(ctx); in BN_GF2m_mod_solve_quad_arr() 1054 if (!BN_priv_rand_ex(rho, p[0], BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ANY, in BN_GF2m_mod_solve_quad_arr() 1057 if (!BN_GF2m_mod_arr(rho, rho, p)) in BN_GF2m_mod_solve_quad_arr() 1060 if (!BN_copy(w, rho)) in BN_GF2m_mod_solve_quad_arr() 1071 if (!BN_GF2m_add(w, w2, rho)) in BN_GF2m_mod_solve_quad_arr()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/katex/contrib/ |
H A D | mhchem.min.js | 1 !function(t,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e(require("katex"));else if("function"==typeof define&&define.amd)define(["katex"],e);else{var n="object"==typeof exports?e(require("katex")):e(t.katex);for(var o in n)("object"==typeof exports?exports:t)[o]=n[o]}}("undefined"!=typeof self?self:this,function(t){return function(t){var e={};function n(o){if(e[o])return e[o].exports;var a=e[o]={i:o,l:!1,exports:{}};return t[o].call(a.exports,a,a.exports,n),a.l=!0,a.exports}return n.m=t,n.c=e,n.d=function(t,e,o){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:o})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var a in t)n.d(o,a,function(e){return t[e]}.bind(null,a));return o},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=1)}([function(e,n){e.exports=t},function(t,e,n){"use strict";n.r(e);var o=n(0),a=n.n(o);a.a.__defineMacro("\\ce",function(t){return r(t.consumeArgs(1)[0],"ce")}),a.a.__defineMacro("\\pu",function(t){return r(t.consumeArgs(1)[0],"pu")}),a.a.__defineMacro("\\tripledash","{\\vphantom{-}\\raisebox{2.56mu}{$\\mkern2mu\\tiny\\text{-}\\mkern1mu\\text{-}\\mkern1mu\\text{-}\\mkern2mu$}}");var r=function(t,e){for(var n="",o=t[t.length-1].loc.start,a=t.length-1;a>=0;a--)t[a].loc.start>o&&(n+=" ",o=t[a].loc.start),n+=t[a].text,o+=t[a].text.length;return c.go(i.go(n,e))},i={go:function(t,e){if(!t)return[];void 0===e&&(e="ce");var n,o="0",a={};a.parenthesisLevel=0,t=(t=(t=t.replace(/\n/g," ")).replace(/[\u2212\u2013\u2014\u2010]/g,"-")).replace(/[\u2026]/g,"...");for(var r=10,c=[];;){n!==t?(r=10,n=t):r--;var u=i.stateMachines[e],p=u.transitions[o]||u.transitions["*"];t:for(var s=0;s<p.length;s++){var _=i.patterns.match_(p[s].pattern,t);if(_){for(var d=p[s].task,m=0;m<d.action_.length;m++){var l;if(u.actions[d.action_[m].type_])l=u.actions[d.action_[m].type_](a,_.match_,d.action_[m].option);else{if(!i.actions[d.action_[m].type_])throw["MhchemBugA","mhchem bug A. Please report. ("+d.action_[m].type_+")"];l=i.actions[d.action_[m].type_](a,_.match_,d.action_[m].option)}i.concatArray(c,l)}if(o=d.nextState||o,!(t.length>0))return c;if(d.revisit||(t=_.remainder),!d.toContinue)break t}}if(r<=0)throw["MhchemBugU","mhchem bug U. Please report."]}},concatArray:function(t,e){if(e)if(Array.isArray(e))for(var n=0;n<e.length;n++)t.push(e[n]);else t.push(e)},patterns:{patterns:{empty:/^$/,else:/^./,else2:/^./,space:/^\s/,"space A":/^\s(?=[A-Z\\$])/,space$:/^\s$/,"a-z":/^[a-z]/,x:/^x/,x$:/^x$/,i$:/^i$/,letters:/^(?:[a-zA-Z\u03B1-\u03C9\u0391-\u03A9?@]|(?:\\(?:alpha|beta|gamma|delta|epsilon|zeta|eta|theta|iota|kappa|lambda|mu|nu|xi|omicron|pi|rho|sigma|tau|upsilon|phi|chi|psi|omega|Gamma|Delta|Theta|Lambda|Xi|Pi|Sigma|Upsilon|Phi|Psi|Omega)(?:\s+|\{\}|(?![a-zA-Z]))))+/,"\\greek":/^\\(?:alpha|beta|gamma|delta|epsilon|zeta|eta|theta|iota|kappa|lambda|mu|nu|xi|omicron|pi|rho|sigma|tau|upsilon|phi|chi|psi|omega|Gamma|Delta|Theta|Lambda|Xi|Pi|Sigma|Upsilon|Phi|Psi|Omega)(?:\s+|\{\}|(?![a-zA-Z]))/,"one lowercase latin letter $":/^(?:([a-z])(?:$|[^a-zA-Z]))$/,"$one lowercase latin letter$ $":/^\$(?:([a-z])(?:$|[^a-zA-Z]))\$$/,"one lowercase greek letter $":/^(?:\$?[\u03B1-\u03C9]\$?|\$?\\(?:alpha|beta|gamma|delta|epsilon|zeta|eta|theta|iota|kappa|lambda|mu|nu|xi|omicron|pi|rho|sigma|tau|upsilon|phi|chi|psi|omega)\s*\$?)(?:\s+|\{\}|(?![a-zA-Z]))$/,digits:/^[0-9]+/,"-9.,9":/^ (…)
|
/third_party/ffmpeg/libavfilter/ |
H A D | asrc_sinc.c | 109 static float *make_lpf(int num_taps, float Fc, float beta, float rho, in make_lpf() argument 114 float mult = scale / bessel_I_0(beta), mult1 = 1.f / (.5f * m + rho); in make_lpf()
|
/third_party/ffmpeg/libavutil/ |
H A D | twofish.c | 278 const uint32_t rho = 0x01010101; in av_twofish_init() local 303 A = tf_h((2 * i) * rho, Me, cs->ksize); in av_twofish_init() 304 B = tf_h((2 * i + 1) * rho, Mo, cs->ksize); in av_twofish_init()
|
/third_party/mbedtls/library/ |
H A D | sha3.c | 86 static const uint32_t rho[6] = { variable 144 uint32_t r = rho[(i - 1) >> 2]; in keccak_f1600()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_tex.c | 780 nir_ssa_def *rho; in lower_gradient() local 782 rho = nir_fmax(b, nir_fabs(b, dPdx), nir_fabs(b, dPdy)); in lower_gradient() 784 rho = nir_fmax(b, in lower_gradient() 789 /* lod = log2(rho). We're ignoring GL state biases for now. */ in lower_gradient() 790 nir_ssa_def *lod = nir_flog2(b, rho); in lower_gradient()
|
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_tex_sample.c | 520 const float rho = MAX2(dsdx, dsdy) * u_minify(texture->width0, sview->base.u.tex.first_level); in compute_lambda_1d_explicit_gradients() local 521 return util_fast_log2(rho); in compute_lambda_1d_explicit_gradients() 566 const float rho = MAX2(maxx, maxy); in compute_lambda_2d_explicit_gradients() local 567 return util_fast_log2(rho); in compute_lambda_2d_explicit_gradients() 613 const float rho = MAX3(maxx, maxy, maxz); in compute_lambda_3d_explicit_gradients() local 615 return util_fast_log2(rho); in compute_lambda_3d_explicit_gradients() 646 const float rho = MAX3(maxx, maxy, maxz) * u_minify(texture->width0, sview->base.u.tex.first_level) / 2.0f; in compute_lambda_cube_explicit_gradients() local 648 return util_fast_log2(rho); in compute_lambda_cube_explicit_gradients()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/ |
H A D | libtommath.c | 2654 mp_montgomery_setup (mp_int * n, mp_digit * rho) in mp_montgomery_setup() argument 2684 /* rho = -1/m mod b */ in mp_montgomery_setup() 2685 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK; in mp_montgomery_setup() 2701 static int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) in fast_mp_montgomery_reduce() argument 2751 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK); in fast_mp_montgomery_reduce()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/ |
H A D | libtommath.c | 2654 mp_montgomery_setup (mp_int * n, mp_digit * rho) in mp_montgomery_setup() argument 2684 /* rho = -1/m mod b */ in mp_montgomery_setup() 2685 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK; in mp_montgomery_setup() 2701 static int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) in fast_mp_montgomery_reduce() argument 2751 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK); in fast_mp_montgomery_reduce()
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_linear_sampler.c | 782 int rho = MAX4(dsdx, dsdy, dtdx, dtdy); in lp_linear_init_sampler() local 784 minify = (rho > FIXED16_ONE); in lp_linear_init_sampler()
|
/third_party/python/Lib/ctypes/test/ |
H A D | test_structures.py | 241 _fields_ = [("phi", c_float), ("rho", c_float)] 244 self.assertRaisesRegex(TypeError, "rho", POINT, 2, 3, rho=4)
|
/third_party/typescript/lib/ |
H A D | typingsInstaller.js | [all...] |
H A D | tsc.js | [all...] |
H A D | tsserverlibrary.js | [all...] |
H A D | typescript.js | [all...] |
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | [all...] |