HomeSort by relevance Sort by last modified time
    Searched full:amount (Results 26 - 50 of 2473) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libvpx/
y4minput.h 45 /*The amount to read directly into the converted frame buffer.*/
49 /*The amount to read into the auxilliary buffer.*/
  /external/zlib/contrib/puff/
puff.h 29 unsigned long *destlen, /* amount of output space */
31 unsigned long *sourcelen); /* amount of input available */
  /frameworks/base/graphics/java/android/graphics/
EmbossMaskFilter.java 24 * @param ambient 0...1 amount of ambient light
26 * @param blurRadius amount to blur before applying lighting (e.g. 3)
CornerPathEffect.java 25 * @param radius Amount to round sharp angles between line segments.
  /prebuilt/sdk/11/renderscript/include/
rs_cl.rsh 364 _RS_RUNTIME float __attribute__((overloadable)) clamp(float amount, float low, float high);
365 _RS_RUNTIME float2 __attribute__((overloadable)) clamp(float2 amount, float2 low, float2 high);
366 _RS_RUNTIME float3 __attribute__((overloadable)) clamp(float3 amount, float3 low, float3 high);
367 _RS_RUNTIME float4 __attribute__((overloadable)) clamp(float4 amount, float4 low, float4 high);
368 _RS_RUNTIME float2 __attribute__((overloadable)) clamp(float2 amount, float low, float high);
369 _RS_RUNTIME float3 __attribute__((overloadable)) clamp(float3 amount, float low, float high);
370 _RS_RUNTIME float4 __attribute__((overloadable)) clamp(float4 amount, float low, float high);
375 _RS_RUNTIME float __attribute__((overloadable)) mix(float start, float stop, float amount);
376 _RS_RUNTIME float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float2 amount);
377 _RS_RUNTIME float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float3 amount);
    [all...]
  /prebuilt/sdk/12/renderscript/include/
rs_cl.rsh 364 _RS_RUNTIME float __attribute__((overloadable)) clamp(float amount, float low, float high);
365 _RS_RUNTIME float2 __attribute__((overloadable)) clamp(float2 amount, float2 low, float2 high);
366 _RS_RUNTIME float3 __attribute__((overloadable)) clamp(float3 amount, float3 low, float3 high);
367 _RS_RUNTIME float4 __attribute__((overloadable)) clamp(float4 amount, float4 low, float4 high);
368 _RS_RUNTIME float2 __attribute__((overloadable)) clamp(float2 amount, float low, float high);
369 _RS_RUNTIME float3 __attribute__((overloadable)) clamp(float3 amount, float low, float high);
370 _RS_RUNTIME float4 __attribute__((overloadable)) clamp(float4 amount, float low, float high);
375 _RS_RUNTIME float __attribute__((overloadable)) mix(float start, float stop, float amount);
376 _RS_RUNTIME float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float2 amount);
377 _RS_RUNTIME float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float3 amount);
    [all...]
  /prebuilt/sdk/13/renderscript/include/
rs_cl.rsh 364 _RS_RUNTIME float __attribute__((overloadable)) clamp(float amount, float low, float high);
365 _RS_RUNTIME float2 __attribute__((overloadable)) clamp(float2 amount, float2 low, float2 high);
366 _RS_RUNTIME float3 __attribute__((overloadable)) clamp(float3 amount, float3 low, float3 high);
367 _RS_RUNTIME float4 __attribute__((overloadable)) clamp(float4 amount, float4 low, float4 high);
368 _RS_RUNTIME float2 __attribute__((overloadable)) clamp(float2 amount, float low, float high);
369 _RS_RUNTIME float3 __attribute__((overloadable)) clamp(float3 amount, float low, float high);
370 _RS_RUNTIME float4 __attribute__((overloadable)) clamp(float4 amount, float low, float high);
375 _RS_RUNTIME float __attribute__((overloadable)) mix(float start, float stop, float amount);
376 _RS_RUNTIME float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float2 amount);
377 _RS_RUNTIME float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float3 amount);
    [all...]
  /frameworks/base/core/java/android/webkit/
ByteArrayBuilder.java 59 int amount = Math.min(length, c.mArray.length - c.mLength); local
60 System.arraycopy(array, offset, c.mArray, c.mLength, amount);
61 c.mLength += amount;
62 length -= amount;
63 offset += amount;
  /frameworks/base/libs/utils/
VectorImpl.cpp 319 ssize_t amount = new_capacity - size();
320 if (amount <= 0) {
347 void* VectorImpl::_grow(size_t where, size_t amount)
349 // LOGV("_grow(this=%p, where=%d, amount=%d) count=%d, capacity=%d",
350 // this, (int)where, (int)amount, (int)mCount, (int)capacity());
353 "[%p] _grow: where=%d, amount=%d, count=%d",
354 this, (int)where, (int)amount, (int)mCount); // caller already checked
356 const size_t new_size = mCount + amount;
377 void* dest = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize;
388 void* to = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize
    [all...]
  /sdk/chimpchat/src/com/android/chimpchat/adb/
LinearInterpolator.java 101 private static float lerp(float start, float stop, float amount) {
102 return start + (stop - start) * amount;
115 float amount = (float) (1.0 / steps); local
120 float newX = lerp(start.getX(), end.getX(), amount * i);
121 float newY = lerp(start.getY(), end.getY(), amount * i);
  /frameworks/base/libs/rs/scriptc/
rs_atomic.rsh 72 * @param value Amount to add to the value at addr
82 * @param value Amount to add to the value at addr
93 * @param value Amount to subtract from the value at addr
103 * @param value Amount to subtract from the value at addr
114 * @param value Amount to and with the value at addr
124 * @param value Amount to and with the value at addr
135 * @param value Amount to or with the value at addr
145 * @param value Amount to or with the value at addr
156 * @param value Amount to xor with the value at addr
166 * @param value Amount to xor with the value at add
    [all...]
  /prebuilt/sdk/14/renderscript/include/
rs_atomic.rsh 71 * @param value Amount to add to the value at addr
81 * @param value Amount to add to the value at addr
92 * @param value Amount to subtract from the value at addr
102 * @param value Amount to subtract from the value at addr
113 * @param value Amount to and with the value at addr
123 * @param value Amount to and with the value at addr
134 * @param value Amount to or with the value at addr
144 * @param value Amount to or with the value at addr
155 * @param value Amount to xor with the value at addr
165 * @param value Amount to xor with the value at add
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_nss.c 56 static PRInt32 nss_io_read(PRFileDesc *fd, void *buf, PRInt32 amount)
58 wpa_printf(MSG_DEBUG, "NSS: I/O read(%d)", amount);
63 static PRInt32 nss_io_write(PRFileDesc *fd, const void *buf, PRInt32 amount)
65 wpa_printf(MSG_DEBUG, "NSS: I/O write(%d)", amount);
78 static PRInt32 nss_io_recv(PRFileDesc *fd, void *buf, PRInt32 amount,
84 wpa_printf(MSG_DEBUG, "NSS: I/O recv(%d)", amount);
92 if (end - conn->pull_buf_offset < amount)
93 amount = end - conn->pull_buf_offset;
94 os_memcpy(buf, conn->pull_buf_offset, amount);
95 conn->pull_buf_offset += amount;
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreRegisterInfo.cpp 124 uint64_t Amount = Old->getOperand(0).getImm();
125 if (Amount != 0) {
127 // amount of space needed for the outgoing arguments up to the next
130 Amount = (Amount+Align-1)/Align*Align;
132 assert(Amount%4 == 0);
133 Amount /= 4;
135 bool isU6 = isImmU6(Amount);
136 if (!isU6 && !isImmU16(Amount)) {
140 << Amount << "\n"
    [all...]
  /external/chromium/chrome/browser/download/
download_status_updater_delegate.h 19 // Returns the amount of received data, in bytes.
  /external/chromium/chrome/browser/ui/cocoa/
dock_icon.h 27 // Indicates the amount of progress made of the download. Ranges from [0..1].
styled_text_field.h 20 // Returns the amount of the field's width which is not being taken up
  /external/dropbear/libtomcrypt/src/misc/
burn_stack.c 20 @param len amount of stack to burn in bytes
  /external/icu4c/i18n/unicode/
measure.h 30 * An amount of a specified unit, consisting of a number and a Unit.
48 * Construct an object with the given numeric amount and the given
51 * @param number a numeric object; amount.isNumeric() must be TRUE
53 * @param ec input-output error code. If the amount or the unit
  /frameworks/base/core/jni/
android_ddm_DdmHandleNativeHeap.cpp 77 int amount = 0; local
80 amount = read(fd, ptr, MAPS_FILE_SIZE);
81 if (amount <= 0) {
87 header.mapSize += amount;
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/
ButtonsWithTallTextViewInBetweenTest.java 68 assertTrue("top button should be shorter than max scroll amount",
71 assertTrue("bottom button should be further than max scroll amount off screen",
79 assertEquals("scroll view should be scrolled by the max amount for one "
129 assertEquals("scroll view should have scrolled by the max amount for one "
  /libcore/luni/src/test/resources/
recipe.xml 10 <ingredient name="beef cube steak" amount="1.5" unit="pound"/>
recipe1.xml 10 <ingredient name="beef cube steak" amount="1.5" unit="pound"/>
recipt.xml 10 <ingredient name="beef cube steak" amount="1.5" unit="pound"/>
reciptWrong.xml 7 <ingredient name="beef cube steak" amount="1.5" unit="pound"/>

Completed in 1423 milliseconds

12 3 4 5 6 7 8 91011>>