| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| time_hashlib.py | 1 # It's intended that this script be run by hand. It runs speed tests on 49 print "testing speed of old", hName, "legacy interface" 53 print "testing speed of _hashlib.%s" % sys.argv[2], getattr(_hashlib, sys.argv[2]) 57 print "testing speed of _hashlib.new(%r)" % sys.argv[2] 60 print "testing speed of hashlib."+hName, getattr(hashlib, hName) 63 print "testing speed of hashlib.new(%r)" % hName 69 print "pass argument(s) naming the hash to run a speed test on:"
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| time_hashlib.py | 1 # It's intended that this script be run by hand. It runs speed tests on 49 print "testing speed of old", hName, "legacy interface" 53 print "testing speed of _hashlib.%s" % sys.argv[2], getattr(_hashlib, sys.argv[2]) 57 print "testing speed of _hashlib.new(%r)" % sys.argv[2] 60 print "testing speed of hashlib."+hName, getattr(hashlib, hName) 63 print "testing speed of hashlib.new(%r)" % hName 69 print "pass argument(s) naming the hash to run a speed test on:"
|
| /external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
| AnimChannel.java | 61 private float speed; field in class:AnimChannel 148 * @return The speed that is assigned to the animation channel. The speed 150 * at its default speed. 155 return speed; 159 * @param speed Set the speed of the animation channel. The speed 161 * at its default speed. 163 public void setSpeed(float speed) { [all...] |
| /frameworks/native/include/input/ |
| VelocityControl.h | 39 // The scaled speed at which acceleration begins to be applied. 40 // This value establishes the upper bound of a low speed regime for 47 // The scaled speed at which maximum acceleration is applied. 57 // When the speed is above the low speed threshold, the velocity will scaled 76 * Implements mouse pointer and wheel speed control and acceleration.
|
| /external/chromium_org/third_party/openssl/openssl/crypto/des/ |
| makefile.bc | 19 all: $(LIB) destest.exe rpw.exe des.exe speed.exe 47 speed.exe: speed.obj libdes.lib
|
| /external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
| scale.h | 31 // used. This produces basic (blocky) quality at the fastest speed. 33 // quality image, at the expense of speed. 35 // quality image, at further expense of speed.
|
| /external/openssl/crypto/des/ |
| makefile.bc | 19 all: $(LIB) destest.exe rpw.exe des.exe speed.exe 47 speed.exe: speed.obj libdes.lib
|
| /development/tools/emulator/skins/WSVGA/ |
| layout | 86 speed full
|
| /development/tools/emulator/skins/WXGA720/ |
| layout | 86 speed full
|
| /development/tools/emulator/skins/WXGA800/ |
| layout | 86 speed full
|
| /development/tools/emulator/skins/WXGA800-7in/ |
| layout | 87 speed full
|
| /external/chromium_org/skia/ext/ |
| paint_simplifier.h | 17 to that canvas. This improves rasterization speed during flings.
|
| /external/chromium_org/third_party/WebKit/ManualTests/ |
| canvas-font-speed-switching.html | 4 <title>Canvas 2d Context Font Property Speed</title>
|
| canvas-font-speed.html | 4 <title>Canvas 2d Context Font Property Speed</title>
|
| /external/chromium_org/ui/compositor/ |
| scoped_animation_duration_scale_mode.h | 13 // Speed up or slow down animations for testing or debugging.
|
| /external/grub/netboot/ |
| sis900.c | 83 static void sis900_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex); 84 static void amd79c901_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex); 85 static void ics1893_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex); 86 static void rtl8201_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex); 92 void (*read_mode) (struct nic *nic, int phy_addr, int *speed, int *duplex); 692 int speed, duplex; 695 mii.chip_info->read_mode(nic, cur_phy, &speed, &duplex); 700 if (speed == HW_SPEED_HOME || speed == HW_SPEED_10_MBPS) { 722 * Description: retrieves and displays speed and duple 679 int speed, duplex; local [all...] |
| /external/openssh/openbsd-compat/ |
| bsd-nextstep.c | 91 cfsetospeed(struct termios *t,int speed) 93 t->c_ospeed = speed; 98 cfsetispeed(struct termios *t, int speed) 100 t->c_ispeed = speed;
|
| /frameworks/base/core/java/android/hardware/ |
| SerialManager.java | 64 * The speed of the serial port must be one of: 70 * @param speed at which to open the serial port 73 public SerialPort openSerialPort(String name, int speed) throws IOException { 78 port.open(pfd, speed);
|
| /packages/apps/Mms/src/org/w3c/dom/smil/ |
| ElementTimeManipulation.java | 25 * Defines the playback speed of element time. The value is specified as 26 * a multiple of normal (parent time container) play speed. Legal values 28 * default is <code>1.0</code> (no modification of speed). 33 public void setSpeed(float speed)
|
| /packages/apps/SpareParts/res/values/ |
| strings.xml | 37 <string name="summary_window_animations">Speed of animations in individual windows</string> 38 <string name="dialog_title_window_animations">Select window speed</string> 41 <string name="summary_transition_animations">Speed of animations moving between screens</string> 42 <string name="dialog_title_transition_animations">Select transition speed</string>
|
| /external/liblzf/ |
| README | 4 save *some* space but not at the cost of speed. It is ideal for 22 which is neither optimized for speed nor for compression. This library
|
| /external/oprofile/libpp/ |
| op_header.h | 49 * and speed 53 /// output a readable form of cpu type and speed
|
| /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/ |
| TrackerEntry.java | 46 static final String SPEED = "Speed"; 59 ALTITUDE, SPEED, BEARING, DIST_NET_LOCATION, LOC_TIME, DEBUG_INFO}; 184 cValues.put(SPEED, mLocation.getSpeed()); 233 Float speed = getNullableFloat(cursor, SPEED); local 234 if (speed != null) { 235 location.setSpeed(speed);
|
| /packages/apps/Camera/jni/ |
| mosaic_renderer_jni.h | 10 // The factor below determines the (horizontal) speed at which the viewfinder 13 // same speed as the device.
|
| /packages/apps/Camera2/jni/ |
| mosaic_renderer_jni.h | 10 // The factor below determines the (horizontal) speed at which the viewfinder 13 // same speed as the device.
|