| /frameworks/ex/variablespeed/jni/ |
| sola_time_scaler.cc | 99 void SolaTimeScaler::set_speed(double speed) { 102 speed_ = speed; 109 LOGE("Requested speed %fx limited to 0.1x", speed_); 112 LOGE("Requested speed %fx limited to 8.0x", speed_); 128 // For compression (speed up), adjacent input windows overlap in the output.
|
| /hardware/ti/wlan/mac80211/ti-utils/uim_rfkill/ |
| uim.c | 260 * This will read the response for the change speed 261 * command that was sent to configure the UART speed 451 /* Forming the packet for Change speed command */ 455 cmd.speed = cust_baud_rate; 457 /* Writing the change speed command to the UART 458 * This will change the UART speed at the controller 461 UIM_VER(" Setting speed to %d", cust_baud_rate); 464 UIM_ERR(" Failed to write speed-set command"); 469 /* Read the response for the Change speed command */ 475 UIM_VER(" Speed changed to %d", cust_baud_rate) [all...] |
| /hardware/ti/wpan/ti_st/uim-sysfs/ |
| uim.c | 198 * This will read the response for the change speed 199 * command that was sent to configure the UART speed 434 /* Forming the packet for Change speed command */ 438 cmd.speed = cust_baud_rate; 440 /* Writing the change speed command to the UART 441 * This will change the UART speed at the controller 444 UIM_VER(" Setting speed to %ld", cust_baud_rate); 447 UIM_ERR(" Failed to write speed-set command"); 452 /* Read the response for the Change speed command */ 458 UIM_VER(" Speed changed to %ld", cust_baud_rate) [all...] |
| /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/ |
| SimpleWaterProcessor.java | 108 protected float speed = 0.05f; field in class:SimpleWaterProcessor 178 time = time + (tpf * speed); 459 * Sets the speed of the wave animation, default = 0.05f. 460 * @param speed 462 public void setWaveSpeed(float speed) { 463 this.speed = speed;
|
| /external/lzma/ |
| history.txt | 72 - ANSI-C LZMA Decoder was rewritten for speed optimizations.
79 - Speed optimizations in ?++ LZMA Decoder.
124 - Compressing speed and memory requirements for compressing were increased
136 - Speed optimizations for compressing in -a2 mode
203 - Speed optimization of ANSI-C LZMA Decoder (now it's about 20% faster).
206 - Small speed optimization in LZMA C++ code
232 and decompressing speed and shows rating values.
|
| /packages/apps/Music/src/com/android/music/ |
| TouchInterceptor.java | 337 int speed = 0; local 342 speed = y > (mHeight + mLowerBound) / 2 ? 16 : 4; 344 speed = 1; 348 speed = y < mUpperBound / 2 ? -16 : -4; 354 speed = 0; 357 if (speed != 0) { 358 smoothScrollBy(speed, 30);
|
| /external/chromium_org/third_party/tcmalloc/vendor/ |
| ChangeLog | 162 * Speed up GoogleOnce (m3b) 171 * Speed up pprof's ExtractSymbols (csilvers) 211 * Better CPU-speed detection under valgrind (saito) 231 * PORTING: speed up function-patching under windows (csilvers) 245 * Speed up symbolizer in heap-checker reporting (glider) 246 * Speed up futexes with FUTEX_PRIVATE_FLAG (m3b) 247 * Speed up tcmalloc but doing better span coalescing (sanjay) 371 * Use "initial exec" model of TLS to speed up tcmalloc (csilvers) 436 * PORTING: Fix clock-speed detection for Mac OS X (csilvers) 443 * Speed up heap-checker, and reduce extraneous logging (maxim [all...] |
| /external/chromium_org/chrome_frame/test/ |
| test_server.h | 355 enum Speed { IMMEDIATE, DELAYED, IMMEDIATE_HEADERS_DELAYED_CONTENT }; 357 SendOptions(Speed speed, int chunk_size, int64 timeout) 358 : speed_(speed), chunk_size_(chunk_size), timeout_(timeout) { 361 Speed speed_; 376 // Use the |options| to tweak the network speed behaviour.
|
| /packages/apps/Dialer/res/values-en-rGB/ |
| strings.xml | 57 <string name="voicemail_speed_slowest" msgid="1733460666177707312">"Slowest speed"</string> 58 <string name="voicemail_speed_slower" msgid="1508601287347216244">"Slow speed"</string> 59 <string name="voicemail_speed_normal" msgid="9033988544627228892">"Normal speed"</string> 60 <string name="voicemail_speed_faster" msgid="2019965121475935488">"Fast speed"</string> 61 <string name="voicemail_speed_fastest" msgid="5758712343491183292">"Fastest speed"</string> 176 <string name="favorites_menu_speed_dial" msgid="3832518092014707628">"Speed Dial"</string>
|
| /packages/apps/Dialer/res/values-en-rIN/ |
| strings.xml | 57 <string name="voicemail_speed_slowest" msgid="1733460666177707312">"Slowest speed"</string> 58 <string name="voicemail_speed_slower" msgid="1508601287347216244">"Slow speed"</string> 59 <string name="voicemail_speed_normal" msgid="9033988544627228892">"Normal speed"</string> 60 <string name="voicemail_speed_faster" msgid="2019965121475935488">"Fast speed"</string> 61 <string name="voicemail_speed_fastest" msgid="5758712343491183292">"Fastest speed"</string> 176 <string name="favorites_menu_speed_dial" msgid="3832518092014707628">"Speed Dial"</string>
|
| /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
| GestureStroke.java | 299 final float speed = (float)pixelsPerSec / msecs / mKeyWidth; local 300 Log.d(TAG, String.format("[%d] detectFastMove: speed=%5.2f", mPointerId, speed)); 305 final float speed = (float)pixelsPerSec / msecs / mKeyWidth; local 307 "[%d] detectFastMove: speed=%5.2f T=%3d points=%3d fastMove", 308 mPointerId, speed, time, size));
|
| /development/samples/ControllerSample/src/com/example/controllersample/ |
| GameView.java | 436 float speed = mRandom.nextFloat() * (mMaxObstacleSpeed - mMinObstacleSpeed) local 438 float velocityX = (float) Math.cos(direction) * speed; 439 float velocityY = (float) Math.sin(direction) * speed; 646 // The ship actually determines the speed of the bullet, not the bullet 732 * velocity that is based upon the speed of the ship. [all...] |
| /external/chromium_org/third_party/skia/src/utils/ |
| SkPictureUtils.cpp | 206 // turn saveLayer() into save() for speed, should not affect correctness. 220 // disable aa for speed 226 // for speed, just respect the bounds, and disable AA. May give us a few
|
| /external/dropbear/ |
| progressmeter.c | 63 static int bytes_per_second; /* current speed in bytes per second */ 131 /* Calculate true total speed when done */ 136 /* calculate speed */
|
| /external/eigen/demos/mandelbrot/ |
| mandelbrot.cpp | 145 float speed = elapsed ? float(total_iter)*1000/elapsed : 0; local 146 max_speed = std::max(max_speed, speed); 149 << speed << " iters/s (max " << max_speed << ")" << std::endl;
|
| /external/jpeg/ |
| djpeg.1 | 136 between speed and quality; no dithering is fast but usually looks awful. Note 201 Several options are available that trade off image quality to gain speed. 208 gain speed at a small sacrifice in quality.
|
| /external/openssh/ |
| progressmeter.c | 73 static int bytes_per_second; /* current speed in bytes per second */ 141 /* Calculate true total speed when done */ 146 /* calculate speed */
|
| /external/qemu/distrib/jpeg-6b/ |
| djpeg.1 | 136 between speed and quality; no dithering is fast but usually looks awful. Note 201 Several options are available that trade off image quality to gain speed. 208 gain speed at a small sacrifice in quality.
|
| /external/skia/src/utils/ |
| SkPictureUtils.cpp | 206 // turn saveLayer() into save() for speed, should not affect correctness. 220 // disable aa for speed 226 // for speed, just respect the bounds, and disable AA. May give us a few
|
| /frameworks/base/services/jni/ |
| com_android_server_input_InputManagerService.cpp | 59 // The exponent used to calculate the pointer speed scaling factor. 60 // The scaling factor is calculated as 2 ^ (speed * exponent), 61 // where the speed ranges from -7 to + 7 and is supplied by the user. 178 void setPointerSpeed(int32_t speed); 232 // Pointer speed. 704 void NativeInputManager::setPointerSpeed(int32_t speed) { 708 if (mLocked.pointerSpeed == speed) { 712 ALOGI("Setting pointer speed to %d.", speed); 713 mLocked.pointerSpeed = speed; [all...] |
| /bionic/libc/kernel/common/linux/ |
| qic117.h | 132 #define QIC117_ERRORS { { "No error", 0, }, { "Command Received while Drive Not Ready", 0, }, { "Cartridge Not Present or Removed", 1, }, { "Motor Speed Error (not within 1%)", 1, }, { "Motor Speed Fault (jammed, or gross speed error", 1, }, { "Cartridge Write Protected", 1, }, { "Undefined or Reserved Command Code", 1, }, { "Illegal Track Address Specified for Seek", 1, }, { "Illegal Command in Report Subcontext", 0, }, { "Illegal Entry into a Diagnostic Mode", 1, }, { "Broken Tape Detected (based on hole sensor)", 1, }, { "Warning--Read Gain Setting Error", 1, }, { "Command Received While Error Status Pending (obs)", 1, }, { "Command Received While New Cartridge Pending", 1, }, { "Command Illegal or Undefined in Primary Mode", 1, }, { "Command Illegal or Undefined in Format Mode", 1, }, { "Command Illegal or Undefined in Verify Mode", 1, }, { "Logical Forward Not at Logical BOT or no Format Segments in Format Mode", 1, }, { "Logical EOT Before All Segments generated", 1, }, { "Command Illegal When Cartridge Not Referenced", 1, }, { "Self-Diagnostic Failed (cannot be cleared)", 1, }, { "Warning EEPROM Not Initialized, Defaults Set", 1, }, { "EEPROM Corrupted or Hardware Failure", 1, }, { "Motion Time-out Error", 1, }, { "Data Segment Too Long -- Logical Forward or Pause", 1, }, { "Transmit Overrun (obs)", 1, }, { "Power On Reset Occurred", 0, }, { "Software Reset Occurred", 0, }, { "Diagnostic Mode 1 Error", 1, }, { "Diagnostic Mode 2 Error", 1, }, { "Command Received During Non-Interruptible Process", 1, }, { "Rate or Format Selection Error", 1, }, { "Illegal Command While in High Speed Mode", 1, }, { "Illegal Seek Segment Value", 1, }, { "Invalid Media", 1, }, { "Head Positioning Failure", 1, }, { "Write Reference Burst Failure", 1, }, { "Prom Code Missing", 1, }, { "Invalid Format", 1, }, { "EOT/BOT System Failure", 1, }, { "Prom A Checksum Error", 1, }, { "Drive Wakeup Reset Occurred", 1, }, { "Prom B Checksum Error", 1, }, { "Illegal Entry into Format Mode", 1, }, }
|
| /dalvik/vm/ |
| Native.h | 56 * Generate hints to speed native calls. This is platform specific.
|
| /external/chromium/build/internal/ |
| README.chromium | 6 Included by ..\release.vsprops. Its settings are overriden by release_impl$(CHROME_BUILD_TYPE).vsprops. Uses the default VS setting which is "Maximize Speed". Results in relatively fast build with reasonable optimization level but without whole program optimization to reduce build time.
|
| /external/chromium/chrome/browser/sync/engine/ |
| conflict_resolver.h | 89 // in the previous cycle. This is used to speed up the merge resolution of
|
| /external/chromium_org/ash/wm/ |
| lock_state_controller.h | 266 // Fades in background layer with |speed| if it was hidden in unlocked state. 268 ash::internal::SessionStateAnimator::AnimationSpeed speed, 271 // Fades out background layer with |speed| if it was hidden in unlocked state. 273 ash::internal::SessionStateAnimator::AnimationSpeed speed,
|