/external/sonivox/arm-wt-22k/host_src/ |
eas_hostmm.c | 187 void *EAS_HWMemCpy (void *dest, const void *src, EAS_I32 amount) 189 if (amount < 0) { 190 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x1a54b6e8, 0x00000004 , amount); 193 return memcpy(dest, src, (size_t) amount); 204 void *EAS_HWMemSet (void *dest, int val, EAS_I32 amount) 206 if (amount < 0) { 207 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x1a54b6e8, 0x00000005 , amount); 210 return memset(dest, val, (size_t) amount); 221 EAS_I32 EAS_HWMemCmp (const void *s1, const void *s2, EAS_I32 amount) 223 if (amount < 0) [all...] |
/external/webkit/Source/WebCore/platform/graphics/cg/ |
ImageSourceCG.cpp | 59 size_t amount = min<size_t>(count, sourceSize - position); local 60 memcpy(buffer, source, amount); 61 return amount;
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebResourceLoadDelegate.h | 124 @param length The amount of new data received. This is not the total amount, just the new amount received.
|
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebResourceLoadDelegate.idl | 139 @param length The amount of new data received. This is not the total amount, just the new amount received.
|
/frameworks/base/core/java/android/animation/ |
Animator.java | 73 * The amount of time, in milliseconds, to delay starting the animation after 81 * The amount of time, in milliseconds, to delay starting the animation after 84 * @param startDelay The amount of the delay, in milliseconds
|
/frameworks/base/core/java/android/view/ |
DisplayList.java | 107 * Return the amount of memory used by this display list. 323 * @param offset The amount that the left and right values of the DisplayList are offset 331 * @param offset The amount that the top and bottom values of the DisplayList are offset
|
ViewPropertyAnimator.java | 382 * @param value The amount to be animated by, as an offset from the current value. 408 * @param value The amount to be animated by, as an offset from the current value. 434 * @param value The amount to be animated by, as an offset from the current value. 460 * @param value The amount to be animated by, as an offset from the current value. 486 * @param value The amount to be animated by, as an offset from the current value. 512 * @param value The amount to be animated by, as an offset from the current value. 538 * @param value The amount to be animated by, as an offset from the current value. 564 * @param value The amount to be animated by, as an offset from the current value. 590 * @param value The amount to be animated by, as an offset from the current value. 616 * @param value The amount to be animated by, as an offset from the current value [all...] |
/frameworks/support/volley/src/com/android/volley/toolbox/ |
DiskBasedCache.java | 47 /** Total amount of space currently used by the cache in bytes. */ 238 * Prunes the cache to fit the amount of bytes specified. 239 * @param neededSpace The amount of bytes we are trying to fit into the cache.
|
/packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/ |
SimpleCharStream.java | 250 public void backup(int amount) { 252 inBuf += amount; 253 if ((bufpos -= amount) < 0)
|
/packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/ |
SimpleCharStream.java | 250 public void backup(int amount) { 252 inBuf += amount; 253 if ((bufpos -= amount) < 0)
|
/packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/ |
SimpleCharStream.java | 250 public void backup(int amount) { 252 inBuf += amount; 253 if ((bufpos -= amount) < 0)
|
/system/core/sh/ |
show.c | 250 indent(int amount, char *pfx, FILE *fp) 254 for (i = 0 ; i < amount ; i++) { 255 if (pfx && i == amount - 1)
|
/cts/tests/tests/app/src/android/app/cts/ |
ActivityManagerMemoryClassTest.java | 109 assertEquals("The test application couldn't allocate memory close to the amount "
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
IndentingWriter.java | 45 /** {@code >= 0;} current indent amount */
|
/dalvik/dx/src/com/android/dx/util/ |
IndentingWriter.java | 45 /** {@code >= 0;} current indent amount */
|
/dalvik/vm/jdwp/ |
ExpandBuf.cpp | 74 * Get the amount of data currently in the buffer.
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeyNetworkMonitor.java | 40 private long mElapsedTime = 0; // amount of time spent between start() and stop()
|
/development/ndk/platforms/android-9/include/android/ |
asset_manager.h | 116 * Report the total amount of asset data that can be read from the current position.
|
/device/moto/stingray/ril/ |
wrigley-dump.sh | 48 echo "amount of data into the bugreport. Google demanded we reduce the overall"
|
/external/apache-http/src/org/apache/http/ |
Header.java | 40 * are case-insensitive. The field value MAY be preceded by any amount
|
/external/chromium/base/ |
bind.h | 21 // cannot actually return the exact type without requiring a large amount
|
/external/chromium/base/threading/ |
simple_thread_unittest.cc | 55 // expected amount, otherwise we wait on the event. This will ensure that we
|
/external/chromium/chrome/browser/extensions/ |
extension_icon_manager.cc | 23 // Helper function to create a new bitmap with |padding| amount of empty space
|
/external/chromium/chrome/browser/metrics/ |
metrics_log.h | 57 // Get the amount of uptime in seconds since this function was last called.
|
/external/chromium/chrome/browser/policy/ |
file_based_policy_loader.cc | 14 // Amount of time we wait for the files on disk to settle before trying to load
|