HomeSort by relevance Sort by last modified time
    Searched refs:timing (Results 1 - 25 of 150) sorted by null

1 2 3 4 5 6

  /external/proguard/src/proguard/gui/splash/
ConstantTiming.java 24 * This Timing is constant over time.
28 public class ConstantTiming implements Timing
30 private final double timing; field in class:ConstantTiming
43 * @param timing the constant value of the timing.
45 public ConstantTiming(double timing)
47 this.timing = timing;
51 // Implementation for Timing.
55 return timing;
    [all...]
LinearDouble.java 24 * This VariableDouble varies linearly with respect to its Timing.
32 private final Timing timing; field in class:LinearDouble
37 * @param fromValue the value that corresponds to a timing of 0.
38 * @param toValue the value that corresponds to a timing of 1.
39 * @param timing the applied timing.
41 public LinearDouble(double fromValue, double toValue, Timing timing)
45 this.timing = timing
    [all...]
LinearInt.java 24 * This VariableColor varies linearly with respect to its Timing.
32 private final Timing timing; field in class:LinearInt
37 * @param fromValue the value that corresponds to a timing of 0.
38 * @param toValue the value that corresponds to a timing of 1.
39 * @param timing the applied timing.
41 public LinearInt(int fromValue, int toValue, Timing timing)
45 this.timing = timing
    [all...]
SmoothTiming.java 24 * This Timing ramps up smoothly from 0 to 1 in a given time interval.
28 public class SmoothTiming implements Timing
36 * @param fromTime the time at which the timing starts ramping up from 0.
37 * @param toTime the time at which the timing stops ramping up at 1.
46 // Implementation for Timing.
61 double timing = (double) (time - fromTime) / (double) (toTime - fromTime); local
64 return timing * timing * (3.0 - 2.0 * timing);
TypeWriterString.java 25 * Timing, as if it is being written on a typewriter. A cursor at the end
33 private final Timing timing; field in class:TypeWriterString
42 * @param timing the applied timing.
44 public TypeWriterString(String string, Timing timing)
47 this.timing = timing;
55 double t = timing.getTiming(time)
    [all...]
LinearColor.java 26 * This VariableColor varies linearly with respect to its Timing.
34 private final Timing timing; field in class:LinearColor
42 * @param fromValue the value that corresponds to a timing of 0.
43 * @param toValue the value that corresponds to a timing of 1.
44 * @param timing the applied timing.
46 public LinearColor(Color fromValue, Color toValue, Timing timing)
50 this.timing = timing
    [all...]
  /art/test/023-many-interfaces/src/
Main.java 3 boolean timing = (args.length >= 1) && args[0].equals("--timing");
4 ManyInterfaces.run(timing);
  /external/webrtc/webrtc/modules/video_coding/
timing_unittest.cc 19 #include "webrtc/modules/video_coding/timing.h"
29 VCMTiming timing(&clock);
35 timing.Reset();
37 timing.UpdateCurrentDelay(timeStamp);
39 timing.Reset();
41 timing.IncomingTimestamp(timeStamp, clock.TimeInMilliseconds());
43 timing.SetJitterDelay(jitterDelayMs);
44 timing.UpdateCurrentDelay(timeStamp);
45 timing.set_render_delay(0);
46 waitTime = timing.MaxWaitingTime
    [all...]
  /external/u-boot/include/
display.h 27 * display_read_timing() - Read timing information
32 int display_read_timing(struct udevice *dev, struct display_timing *timing);
39 * @timing: Display timings
43 const struct display_timing *timing);
58 * @timing: Display timings
61 int (*read_timing)(struct udevice *dev, struct display_timing *timing);
78 * @timing: Display timings
82 const struct display_timing *timing);
  /external/u-boot/drivers/video/
atmel_lcdfb.c 32 struct display_timing timing; member in struct:atmel_fb_priv
114 static void atmel_fb_init(ulong addr, struct display_timing *timing, int bpix,
134 value = (timing->hactive.typ * timing->vactive.typ *
140 value = get_lcdc_clk_rate(0) / timing->pixelclock.typ;
141 if (get_lcdc_clk_rate(0) % timing->pixelclock.typ)
156 if (!(timing->flags & DISPLAY_FLAGS_HSYNC_HIGH))
158 if (!(timing->flags & DISPLAY_FLAGS_VSYNC_HIGH))
163 /* Vertical timing */
164 value = (timing->vsync_len.typ - 1) << ATMEL_LCDC_VPW_OFFSET
211 struct display_timing timing; local
248 struct display_timing *timing = &priv->timing; local
271 struct display_timing *timing = &priv->timing; local
    [all...]
display-uclass.c 22 const struct display_timing *timing)
30 ret = ops->enable(dev, panel_bpp, timing);
40 int display_read_timing(struct udevice *dev, struct display_timing *timing)
48 return ops->read_timing(dev, timing);
56 return edid_get_timing(buf, ret, timing, &panel_bits_per_colour);
  /external/u-boot/drivers/video/rockchip/
rk_mipi.h 24 struct display_timing *timing);
27 const struct display_timing *timing);
rk_mipi.c 29 struct display_timing *timing)
34 0, timing);
36 debug("%s: Failed to decode display timing (ret=%d)\n",
79 const struct display_timing *timing)
90 /* Set Display timing parameter */
91 rk_mipi_dsi_write(regs, VID_HSA_TIME, timing->hsync_len.typ);
92 rk_mipi_dsi_write(regs, VID_HBP_TIME, timing->hback_porch.typ);
93 rk_mipi_dsi_write(regs, VID_HLINE_TIME, (timing->hsync_len.typ
94 + timing->hback_porch.typ + timing->hactive.ty
    [all...]
  /external/u-boot/drivers/video/tegra124/
display.c 25 static int tegra_dc_calc_refresh(const struct display_timing *timing)
28 int pclk = timing->pixelclock.typ;
30 h_total = timing->hactive.typ + timing->hfront_porch.typ +
31 timing->hback_porch.typ + timing->hsync_len.typ;
32 v_total = timing->vactive.typ + timing->vfront_porch.typ +
33 timing->vback_porch.typ + timing->vsync_len.typ
429 struct display_timing timing; local
    [all...]
  /art/test/053-wait-some/src/
Main.java 27 boolean timing = (args.length >= 1) && args[0].equals("--timing");
28 doit(timing);
31 public static void doit(boolean timing) {
57 boolean showTime = timing;
59 if (! timing) {
  /art/test/133-static-invoke-super/src/
Main.java 25 boolean timing = (args.length >= 1) && args[0].equals("--timing");
26 run(timing);
39 static public void run(boolean timing) {
53 System.out.println("Timing is acceptable.");
56 timing = true;
58 if (timing) {
  /external/u-boot/board/xilinx/zynqmp/
tap_delays.c 84 static void arasan_zynqmp_tap_sdr104(u8 deviceid, u8 timing, u8 bank)
105 static void arasan_zynqmp_tap_hs(u8 deviceid, u8 timing, u8 bank)
117 if (timing == MMC_TIMING_MMC_HS)
133 if (timing == MMC_TIMING_MMC_HS)
142 static void arasan_zynqmp_tap_ddr50(u8 deviceid, u8 timing, u8 bank)
150 if (timing == MMC_TIMING_UHS_DDR50)
158 if (timing == MMC_TIMING_UHS_DDR50)
170 if (timing == MMC_TIMING_UHS_DDR50)
178 if (timing == MMC_TIMING_UHS_DDR50)
187 static void arasan_zynqmp_tap_sdr50(u8 deviceid, u8 timing, u8 bank
    [all...]
  /external/u-boot/common/
edid.c 68 /* Set all parts of a timing entry to the same value */
77 * decode_timing() - Decoding an 18-byte detailed timing record
79 * @buf: Pointer to EDID detailed timing record
80 * @timing: Place to put timing
82 static void decode_timing(u8 *buf, struct display_timing *timing)
90 set_entry(&timing->pixelclock, (buf[0] + (buf[1] << 8)) * 10000);
104 set_entry(&timing->hactive, ha);
105 set_entry(&timing->hfront_porch, hso);
106 set_entry(&timing->hback_porch, hbl - hso - hspw)
262 struct edid_detailed_timing *timing = local
    [all...]
  /external/u-boot/drivers/video/stm32/
stm32_ltdc.c 22 struct display_timing timing; member in struct:stm32_ltdc_priv
100 #define GC1R_TP BIT(25) /* Timing Programmable */
108 #define GC2R_STSAEN BIT(1) /* Slave Timing Sync Ability ENabled */
215 struct display_timing *timing = &priv->timing; local
221 hsync = timing->hsync_len.typ - 1;
222 vsync = timing->vsync_len.typ - 1;
223 acc_hbp = hsync + timing->hback_porch.typ;
224 acc_vbp = vsync + timing->vback_porch.typ;
225 acc_act_w = acc_hbp + timing->hactive.typ
    [all...]
  /external/u-boot/drivers/video/sunxi/
sunxi_lcd.c 21 struct display_timing timing; member in struct:sunxi_lcd_priv
69 struct display_timing *timing)
73 memcpy(timing, &priv->timing, sizeof(struct display_timing));
100 &priv->timing, &channel_bpp);
118 0, &priv->timing)) {
119 debug("%s: Failed to decode display timing\n", __func__);
  /external/webrtc/talk/media/base/
rtpdataengine.h 37 #include "webrtc/base/timing.h"
54 void SetTiming(rtc::Timing* timing) {
55 timing_.reset(timing);
60 rtc::scoped_ptr<rtc::Timing> timing_;
87 // Timing* Used for the RtpClock
88 explicit RtpDataMediaChannel(rtc::Timing* timing);
89 // Sets Timing == NULL, so you'll need to call set_timer() before
94 void set_timing(rtc::Timing* timing)
    [all...]
  /external/u-boot/drivers/mmc/
xenon_sdhci.c 123 u8 timing; member in struct:xenon_sdhci_priv
141 if ((priv->timing == MMC_TIMING_UHS_SDR50) ||
142 (priv->timing == MMC_TIMING_UHS_SDR25) ||
143 (priv->timing == MMC_TIMING_UHS_SDR12) ||
144 (priv->timing == MMC_TIMING_SD_HS) ||
145 (priv->timing == MMC_TIMING_LEGACY))
227 * If timing belongs to high speed, set bit[17] of
230 if ((priv->timing == MMC_TIMING_MMC_HS400) ||
231 (priv->timing == MMC_TIMING_MMC_HS200) ||
232 (priv->timing == MMC_TIMING_UHS_SDR50) |
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
Timer.java 23 private boolean timing = false; field in class:Timer
32 timing = true;
38 if (timing) {
40 timing = false;
98 // Timing on Java is very tricky, especially when you count in garbage collection. This is a simple strategy for now, we might improve later.
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
Timer.java 20 private boolean timing = false; field in class:Timer
29 timing = true;
35 if (timing) {
37 timing = false;
95 // Timing on Java is very tricky, especially when you count in garbage collection. This is a simple strategy for now, we might improve later.
  /external/linux-kselftest/tools/testing/selftests/seccomp/
seccomp_benchmark.c 19 unsigned long long timing(clockid_t clk_id, unsigned long long samples) function
55 if (timing(CLOCK_REALTIME, samples) / 1000000000ULL > 5)
80 native = timing(CLOCK_PROCESS_CPUTIME_ID, samples) / samples;
89 filtered = timing(CLOCK_PROCESS_CPUTIME_ID, samples) / samples;

Completed in 966 milliseconds

1 2 3 4 5 6