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

1 2 3

  /external/chromium_org/third_party/boringssl/src/tool/
tool.cc 24 bool Speed(const std::vector<std::string> &args);
27 printf("Usage: %s [speed|client|pkcs12]\n", name);
43 if (tool == "speed") {
44 return !Speed(args);
speed.cc 250 bool Speed(const std::vector<std::string> &args) {
  /external/lldb/test/functionalities/data-formatter/data-formatter-cpp/
main.cpp 16 typedef RealNumber Speed; // should show as hex
79 Speed SPILookHex = 5.55;
95 Speed* SPPtrILookHex = new Speed(16);
  /external/openssl/crypto/des/times/
aix.cc 5 P.Speed : 100Mhz
8 PCI BUS Speed : 33 Mhz
  /external/chromium_org/tools/usb_gadget/
mouse_gadget_test.py 20 g.Connected(chip, usb_constants.Speed.FULL)
32 g.Connected(chip, usb_constants.Speed.FULL)
39 g.Connected(chip, usb_constants.Speed.FULL)
keyboard_gadget_test.py 20 g.Connected(chip, usb_constants.Speed.FULL)
35 g.Connected(chip, usb_constants.Speed.FULL)
54 g.Connected(chip, usb_constants.Speed.FULL)
gadget_test.py 132 g.Connected(mock.Mock(), usb_constants.Speed.FULL)
134 self.assertEquals(g.GetSpeed(), usb_constants.Speed.FULL)
141 g.Connected(mock.Mock(), usb_constants.Speed.HIGH)
143 self.assertEquals(g.GetSpeed(), usb_constants.Speed.HIGH)
192 g.Connected(chip, usb_constants.Speed.HIGH)
202 g.Connected(chip, usb_constants.Speed.HIGH)
213 g.Connected(mock.Mock(), usb_constants.Speed.HIGH)
219 g.Connected(chip, usb_constants.Speed.HIGH)
244 g.Connected(mock.Mock(), usb_constants.Speed.HIGH)
251 g.Connected(chip, usb_constants.Speed.HIGH
    [all...]
hid_gadget_test.py 51 with self.assertRaisesRegexp(ValueError, 'Full speed'):
54 with self.assertRaisesRegexp(ValueError, 'High speed'):
88 g.Connected(chip, usb_constants.Speed.HIGH)
96 g.Connected(chip, usb_constants.Speed.HIGH)
141 g.Connected(chip, usb_constants.Speed.HIGH)
191 g.Connected(chip, usb_constants.Speed.HIGH)
201 g.Connected(chip, usb_constants.Speed.HIGH)
211 g.Connected(chip, usb_constants.Speed.HIGH)
gadget.py 25 fs_config_desc: Low/full-speed device descriptor.
26 hs_config_desc: High-speed device descriptor.
28 self._speed = usb_constants.Speed.UNKNOWN
48 if self._speed == usb_constants.Speed.FULL:
50 elif self._speed == usb_constants.Speed.HIGH:
77 def Connected(self, chip, speed):
82 speed: Connection speed.
84 self._speed = speed
89 self._speed = usb_constants.Speed.UNKNOW
    [all...]
usb_constants.py 151 class Speed(object):
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
onyx_if.c 685 /* Convenience macros for mapping speed and mode into a continuous
691 static int speed_map(int speed, const int *map)
698 } while(speed >= *map++);
776 int Speed = cpi->Speed;
821 /* Convert speed to continuous range, with clamping */
823 Speed = 0;
825 Speed = RT(Speed);
828 if (Speed > 5
    [all...]
rdopt.c 353 f = fopen("speed.stt", "a");
355 cpi->common.current_video_frame, cpi->Speed, milliseconds_for_compress, cpi->avg_pick_mode_time);
365 cpi->Speed = 4;
371 cpi->Speed += 2;
375 if (cpi->Speed > 16)
377 cpi->Speed = 16;
381 if (milliseconds_for_compress * 100 > cpi->avg_encode_time * auto_speed_thresh[cpi->Speed])
383 cpi->Speed -= 1;
387 /* In real-time mode, cpi->speed is in [4, 16]. */
388 if (cpi->Speed < 4
    [all...]
temporal_filter.c 180 if (cpi->Speed < 8)
182 step_param = cpi->sf.first_step + (cpi->Speed > 5);
onyx_int.h 469 int Speed;
pickinter.c 885 int speed_adjust = (cpi->Speed > 5) ? ((cpi->Speed >= 8)? 3 : 2) : 1;
968 further_steps = (cpi->Speed >= 8)?
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
onyx_if.c 662 /* Convenience macros for mapping speed and mode into a continuous
668 static int speed_map(int speed, const int *map)
675 } while(speed >= *map++);
753 int Speed = cpi->Speed;
798 /* Convert speed to continuous range, with clamping */
800 Speed = 0;
802 Speed = RT(Speed);
805 if (Speed > 5
    [all...]
rdopt.c 354 f = fopen("speed.stt", "a");
356 cpi->common.current_video_frame, cpi->Speed, milliseconds_for_compress, cpi->avg_pick_mode_time);
366 cpi->Speed = 4;
372 cpi->Speed += 2;
376 if (cpi->Speed > 16)
378 cpi->Speed = 16;
382 if (milliseconds_for_compress * 100 > cpi->avg_encode_time * auto_speed_thresh[cpi->Speed])
384 cpi->Speed -= 1;
388 /* In real-time mode, cpi->speed is in [4, 16]. */
389 if (cpi->Speed < 4
    [all...]
temporal_filter.c 179 if (cpi->Speed < 8)
181 step_param = cpi->sf.first_step + (cpi->Speed > 5);
pickinter.c 875 int speed_adjust = (cpi->Speed > 5) ? ((cpi->Speed >= 8)? 3 : 2) : 1;
958 further_steps = (cpi->Speed >= 8)?
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
onyx_if.c 662 /* Convenience macros for mapping speed and mode into a continuous
668 static int speed_map(int speed, const int *map)
675 } while(speed >= *map++);
753 int Speed = cpi->Speed;
798 /* Convert speed to continuous range, with clamping */
800 Speed = 0;
802 Speed = RT(Speed);
805 if (Speed > 5
    [all...]
rdopt.c 354 f = fopen("speed.stt", "a");
356 cpi->common.current_video_frame, cpi->Speed, milliseconds_for_compress, cpi->avg_pick_mode_time);
366 cpi->Speed = 4;
372 cpi->Speed += 2;
376 if (cpi->Speed > 16)
378 cpi->Speed = 16;
382 if (milliseconds_for_compress * 100 > cpi->avg_encode_time * auto_speed_thresh[cpi->Speed])
384 cpi->Speed -= 1;
388 /* In real-time mode, cpi->speed is in [4, 16]. */
389 if (cpi->Speed < 4
    [all...]
temporal_filter.c 179 if (cpi->Speed < 8)
181 step_param = cpi->sf.first_step + (cpi->Speed > 5);
  /external/llvm/test/tools/llvm-readobj/ARM/
attributes.s 212 @ CHECK: Description: Aggressive Speed
218 @ CHECK: Description: Aggressive Speed
  /external/chromium_org/remoting/base/
util_unittest.cc 195 TEST(ReplaceLfByCrLfTest, Speed) {
230 TEST(ReplaceCrLfByLfTest, Speed) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
usbioctl.h 352 UCHAR Speed;
607 USB_DEVICE_SPEED Speed;

Completed in 344 milliseconds

1 2 3