Searched refs:deriv (Results 1 - 6 of 6) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
H A D | divergentAccessorsVisibility1.js | 97 declare const base: Base, deriv: Derived; 129 deriv.PublicPublic = 0; 130 deriv.PublicProtected = 0; 131 deriv.PublicPrivate = 0; 132 deriv.ProtectedPublic = 0; 133 deriv.ProtectedProtected = 0; 134 deriv.ProtectedPrivate = 0; 135 deriv.PrivatePublic = 0; 136 deriv.PrivateProtected = 0; 137 deriv [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | time-smoother.c | 277 static void estimate(pa_smoother *s, pa_usec_t x, pa_usec_t *y, double *deriv) { in estimate() argument 295 if (deriv) in estimate() 296 *deriv = s->dp; in estimate() 309 if (deriv) in estimate() 310 *deriv = s->de; in estimate() 333 if (deriv) in estimate() 334 *deriv = s->c + (tx * (s->b*2 + tx * s->a*3)); in estimate() 340 if (deriv && *deriv < 0) in estimate() 341 *deriv in estimate() [all...] |
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | bifrost_isa.py | 76 for deriv in obj.findall('derived'): 77 loc = [int(deriv.attrib['start']), int(deriv.attrib['size'])] 80 opts = [parse_cond(d) for d in deriv.findall('*')]
|
H A D | gen_disasm.py | 184 deriv = [] 192 deriv.append(evaled) 194 return deriv
|
/third_party/mesa3d/src/gallium/auxiliary/tessellator/ |
H A D | tessellator.cpp | 1301 const unsigned int deriv = 2; // reciprocal is the rate of change of edge-parallel parameters as they are pushed into the triangle in TriGeneratePoints() local 1306 /*V*/fxpParam - (fxpPerpParam+1/*round*/)/deriv, // we know this fixed point math won't over/underflow in TriGeneratePoints() 1310 DefinePoint(/*U*/fxpParam - (fxpPerpParam+1/*round*/)/deriv,// we know this fixed point math won't over/underflow in TriGeneratePoints() 1315 DefinePoint(/*U*/fxpParam - (fxpPerpParam+1/*round*/)/deriv,// we know this fixed point math won't over/underflow in TriGeneratePoints() 1316 /*V*/FXP_ONE - (fxpParam - (fxpPerpParam+1/*round*/)/deriv) - fxpPerpParam,// we know this fixed point math won't over/underflow in TriGeneratePoints()
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_instruction_selection.cpp | 9280 build_cube_select(isel_context* ctx, Temp ma, Temp id, Temp deriv, Temp* out_ma, Temp* out_sc, 9285 Temp deriv_x = emit_extract_vector(ctx, deriv, 0, v1); 9286 Temp deriv_y = emit_extract_vector(ctx, deriv, 1, v1); 9287 Temp deriv_z = emit_extract_vector(ctx, deriv, 2, v1);
|
Completed in 20 milliseconds