/third_party/python/Lib/turtledemo/ |
H A D | round_dance.py | 48 tilt(-phi) 59 tilt(-4) 75 dancer.tilt(ta)
|
/third_party/ffmpeg/libavcodec/ |
H A D | acelp_filters.c | 138 void ff_tilt_compensation(float *mem, float tilt, float *samples, int size) in ff_tilt_compensation() argument 144 samples[i] -= tilt * samples[i - 1]; in ff_tilt_compensation() 146 samples[0] -= tilt * *mem; in ff_tilt_compensation()
|
H A D | acelp_filters.h | 142 * Apply tilt compensation filter, 1 - tilt * z-1. 145 * @param tilt tilt factor 149 void ff_tilt_compensation(float *mem, float tilt, float *samples, int size);
|
H A D | evrcdec.c | 556 float tilt; member 581 float tilt = pfc->tilt; in postfilter() local 591 tilt = 0.0; in postfilter() 594 scratch[i] = in[i] - tilt * e->last; in postfilter()
|
H A D | amrwbdec.c | 875 float tilt; in find_hb_gain() local 884 tilt = tmp / ctx->celpm_ctx.dot_productf(synth, synth, AMRWB_SFR_SIZE); in find_hb_gain() 886 tilt = 0; in find_hb_gain() 889 return av_clipf((1.0 - tilt) * (1.25 - 0.25 * wsp), 0.1, 1.0); in find_hb_gain() 1217 /* Calculate voice factor and store tilt for next subframe */ in amrwb_decode_frame()
|
/third_party/libinput/src/ |
H A D | evdev-tablet.c | 413 /* Wacom Intuos 4, 5, Pro mouse calculates rotation from the x/y tilt in convert_tilt_to_rotation() 417 x = tablet->axes.tilt.x; in convert_tilt_to_rotation() 418 y = tablet->axes.tilt.y; in convert_tilt_to_rotation() 584 /* mouse rotation resets tilt to 0 so always fetch both axes if in tablet_update_tilt() 592 tablet->axes.tilt.x = adjust_tilt(absinfo); in tablet_update_tilt() 595 tablet->axes.tilt.y = adjust_tilt(absinfo); in tablet_update_tilt() 598 tablet->axes.tilt.x *= -1; in tablet_update_tilt() 599 tablet->axes.tilt.y *= -1; in tablet_update_tilt() 638 /* We must check ROTATION_Z after TILT_X/Y so that the tilt axes are in tablet_update_rotation() 645 tablet->axes.tilt in tablet_update_rotation() [all...] |
H A D | libinput-private.h | 437 struct tilt_degrees tilt; member
|
H A D | libinput.c | 1397 return event->axes.tilt.x; in libinput_event_tablet_tool_get_tilt_x() 1411 return event->axes.tilt.y; in libinput_event_tablet_tool_get_tilt_y()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_datascope.c | 760 float tilt; member 802 { "t", "set scope tilt", OOFFSET(tilt), AV_OPT_TYPE_FLOAT, {.dbl=0.5}, 0, 1, FLAGSR }, 914 double tilt; in update_oscilloscope() local 921 tilt = (s->tilt - 0.5) * M_PI; in update_oscilloscope() 924 s->x1 = cx - size / 2.0 * cos(tilt); in update_oscilloscope() 925 s->x2 = cx + size / 2.0 * cos(tilt); in update_oscilloscope() 926 s->y1 = cy - size / 2.0 * sin(tilt); in update_oscilloscope() 927 s->y2 = cy + size / 2.0 * sin(tilt); in update_oscilloscope() [all...] |
/third_party/libinput/tools/ |
H A D | libinput-record-verify-yaml.py | 603 tilt = e["tilt"] 604 self.assertTrue(isinstance(tilt, list)) 605 self.assertEqual(len(tilt), 2) 606 for t in tilt:
|
/third_party/python/Lib/ |
H A D | turtle.py | 138 'speed', 'st', 'stamp', 'tilt', 'tiltangle', 'towards', 2357 "tilt" : number 2394 "tilt" : self._tilt 2452 if "tilt" in p: 2453 self._tilt = p["tilt"] 2454 if "stretchfactor" in p or "tilt" in p or "shearfactor" in p: 2850 regardless of its current tilt-angle. DO NOT change the turtle's 2872 """Set or return the current tilt-angle. 2877 regardless of its current tilt-angle. DO NOT change the turtle's 2879 If angle is not given: return the current tilt 2910 def tilt(self, angle): global() member in RawTurtle [all...] |
/third_party/libinput/test/ |
H A D | test-tablet.c | 4313 int tilt; in START_TEST() local 4324 /* 90% of the actual axis but mapped into a [-64, 64] tilt range, so in START_TEST() 4341 for (tilt = 0; tilt <= 100; tilt += 5) { in START_TEST() 4342 litest_axis_set_value(axes, ABS_TILT_X, tilt); in START_TEST() 4387 int tilt; in START_TEST() local 4398 /* 90% of the actual axis but mapped into a [-64, 64] tilt range, so in START_TEST() 4415 for (tilt = 0; tilt < in START_TEST() [all...] |