HomeSort by relevance Sort by last modified time
    Searched full:amount (Results 1 - 25 of 5206) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/rs/driver/runtime/arch/
clamp.c 25 extern T __attribute__((overloadable)) clamp(T amount, T low, T high) { \
26 return amount < low ? low : (amount > high ? high : amount); \
46 extern T##2 __attribute__((overloadable)) clamp(T##2 amount, T##2 low, T##2 high) { \
48 r.x = amount.x < low.x ? low.x : (amount.x > high.x ? high.x : amount.x); \
49 r.y = amount.y < low.y ? low.y : (amount.y > high.y ? high.y : amount.y);
    [all...]
  /frameworks/support/design/base/android/support/design/widget/
MathUtils.java 21 static int constrain(int amount, int low, int high) {
22 return amount < low ? low : (amount > high ? high : amount);
25 static float constrain(float amount, float low, float high) {
26 return amount < low ? low : (amount > high ? high : amount);
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicInlines.h 85 static inline int4 clamp(int4 amount, int low, int high) {
87 r.x = amount.x < low ? low : (amount.x > high ? high : amount.x);
88 r.y = amount.y < low ? low : (amount.y > high ? high : amount.y);
89 r.z = amount.z < low ? low : (amount.z > high ? high : amount.z)
    [all...]
  /external/libgdx/tests/gdx-tests-android/assets/data/
verdana39.fnt 102 kerning first=81 second=44 amount=-1
103 kerning first=81 second=46 amount=-1
104 kerning first=98 second=44 amount=-1
105 kerning first=121 second=44 amount=-4
106 kerning first=121 second=45 amount=-1
107 kerning first=121 second=46 amount=-4
108 kerning first=121 second=97 amount=-1
109 kerning first=112 second=44 amount=-1
110 kerning first=107 second=45 amount=-2
111 kerning first=102 second=34 amount=1
    [all...]
verdana39distancefield.fnt 102 kerning first=81 second=44 amount=-1
103 kerning first=81 second=46 amount=-1
104 kerning first=112 second=44 amount=-1
105 kerning first=107 second=45 amount=-2
106 kerning first=102 second=34 amount=1
107 kerning first=102 second=39 amount=1
108 kerning first=102 second=41 amount=2
109 kerning first=102 second=42 amount=1
110 kerning first=102 second=44 amount=-2
111 kerning first=102 second=45 amount=-
    [all...]
arial-32.fnt 102 kerning first=49 second=49 amount=-2
103 kerning first=121 second=44 amount=-2
104 kerning first=121 second=46 amount=-2
105 kerning first=102 second=102 amount=-1
106 kerning first=89 second=44 amount=-4
107 kerning first=89 second=45 amount=-3
108 kerning first=89 second=46 amount=-4
109 kerning first=89 second=58 amount=-2
110 kerning first=89 second=59 amount=-2
111 kerning first=89 second=65 amount=-
    [all...]
font.fnt 102 kerning first=107 second=45 amount=-1
103 kerning first=121 second=44 amount=-1
104 kerning first=121 second=46 amount=-1
105 kerning first=102 second=41 amount=1
106 kerning first=102 second=44 amount=-1
107 kerning first=102 second=46 amount=-1
108 kerning first=102 second=63 amount=1
109 kerning first=102 second=92 amount=1
110 kerning first=102 second=93 amount=1
111 kerning first=102 second=125 amount=1
    [all...]
arial-32-pad.fnt 102 kerning first=49 second=49 amount=-2
103 kerning first=121 second=44 amount=-2
104 kerning first=121 second=46 amount=-2
105 kerning first=102 second=102 amount=-1
106 kerning first=89 second=44 amount=-4
107 kerning first=89 second=45 amount=-3
108 kerning first=89 second=46 amount=-4
109 kerning first=89 second=58 amount=-2
110 kerning first=89 second=59 amount=-2
111 kerning first=89 second=65 amount=-
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/aarch64/
movi.s 48 .macro all_8bit_imm_movi_sft dst, from=0, to=255, shift_op, amount
49 movi \dst, \from, \shift_op \amount
51 all_8bit_imm_movi_sft \dst, "(\from+1)", \to, \shift_op, \amount
56 // MOVI <Vd>.<T>, #<imm8>, MSL #<amount>
58 .irp amount, 8, 16
61 all_8bit_imm_movi_sft v7.\T, 0, 63, MSL, \amount
62 all_8bit_imm_movi_sft v7.\T, 64, 127, MSL, \amount
63 all_8bit_imm_movi_sft v7.\T, 128, 191, MSL, \amount
64 all_8bit_imm_movi_sft v7.\T, 192, 255, MSL, \amount
70 // MOVI <Vd>.<T>, #<imm8> {, LSL #<amount>}
    [all...]
addsub.s 27 .macro adjust_rm op, rd, rn, rm_r, rm_n, extend, amount
34 .ifb \amount
37 \op \rd, \rn, W\()\rm_n, \extend #\amount
45 .ifb \amount
48 \op \rd, \rn, \rm_r\()\rm_n, \extend #\amount
55 .macro do_addsub_ext type, op, Rn, reg, extend, amount
61 .ifb \amount
64 adjust_rm \op, \reg\()16, \Rn, \reg, 1, \extend, \amount
73 .ifb \amount
76 adjust_rm \op, \reg\()ZR, \Rn, \reg, 1, \extend, \amount
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
BigDecimalJavaBean.java 22 private float amount; field in class:BigDecimalJavaBean
33 return amount;
36 public void setAmount(float amount) {
37 this.amount = amount;
AtomicJavaBean.java 21 private float amount; field in class:AtomicJavaBean
25 return amount;
28 public void setAmount(float amount) {
29 this.amount = amount;
  /external/snakeyaml/src/test/java/examples/
SelectiveConstructorTest.java 58 .load("- 1\n- 2\n- !!examples.MyPersistentObject {amount: 222, id: persistent}");
69 private int amount; field in class:MyPersistentObject
73 this.amount = 222;
76 public MyPersistentObject(String id, int amount) {
78 this.amount = amount;
90 return amount;
93 public void setAmount(int amount) {
94 this.amount = amount;
    [all...]
  /external/icu/icu4c/source/i18n/
curramt.cpp 20 CurrencyAmount::CurrencyAmount(const Formattable& amount, const UChar* isoCode,
22 Measure(amount, new CurrencyUnit(isoCode, ec), ec) {
25 CurrencyAmount::CurrencyAmount(double amount, const UChar* isoCode,
27 Measure(Formattable(amount), new CurrencyUnit(isoCode, ec), ec) {
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
RotateByAction.java 22 private float amount; field in class:RotateByAction
25 target.rotateBy(amount * percentDelta);
29 return amount;
33 amount = rotationAmount;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mturk/
price.py 24 def __init__(self, amount=0.0, currency_code='USD'):
25 self.amount = amount
33 return str(self.amount)
39 if name == 'Amount':
40 self.amount = float(value)
47 return {'%s.%d.Amount'%(label, ord) : str(self.amount),
  /external/jetty/src/resources/org/eclipse/jetty/servlets/jmx/
QoSFilter-mbean.properties 3 waitMs: (short) amount of time (in milliseconds) that the filter would wait for the semaphore to become available before suspending a request.
4 suspendMs: amount of time (in milliseconds) that the filter would suspend a request for while waiting for the semaphore to become available.
  /external/tpm2/
Entropy.c 36 // >= 0 the returned amount of entropy (bytes)
41 uint32_t amount // amount requested
46 if(amount == 0)
58 if(amount > sizeof(rndNum))
59 amount = sizeof(rndNum);
60 memcpy(entropy, &rndNum, amount);
62 return (int32_t)amount;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
NotificationUtils.java 43 public static float interpolate(float start, float end, float amount) {
44 return start * (1.0f - amount) + end * amount;
47 public static int interpolateColors(int startColor, int endColor, float amount) {
49 (int) interpolate(Color.alpha(startColor), Color.alpha(endColor), amount),
50 (int) interpolate(Color.red(startColor), Color.red(endColor), amount),
51 (int) interpolate(Color.green(startColor), Color.green(endColor), amount),
52 (int) interpolate(Color.blue(startColor), Color.blue(endColor), amount));
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/lns/
lns-common-1-alt.d 13 \[0x.*\] Advance PC by fixed size amount .* to .*
17 \[0x.*\] Advance PC by fixed size amount .* to .*
22 \[0x.*\] Advance PC by fixed size amount .* to .*
27 \[0x.*\] Advance PC by fixed size amount .* to .*
31 \[0x.*\] Advance PC by fixed size amount .* to .*
35 \[0x.*\] Advance PC by fixed size amount .* to .*
39 \[0x.*\] Advance PC by fixed size amount .* to .*
41 \[0x.*\] Advance PC by fixed size amount .* to .*
  /external/valgrind/none/tests/s390x/
dfp-2.c 54 void iedtr(_Decimal64 in, long amount)
58 asm volatile (".insn rrf, 0xb3f60000, %[out], %[amount], %[in], 0\n\t"
60 :[in]"f"(in), [amount]"d"(amount));
64 printf(", %ld -> ", amount);
69 void iextr(_Decimal128 in, long amount)
73 asm volatile (".insn rrf, 0xb3fe0000, %[out], %[amount], %[in], 0\n\t"
75 :[in]"f"(in), [amount]"d"(amount));
79 printf(", %ld -> ", amount);
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
MemInfoReader.java 38 * Total amount of RAM available to the kernel.
45 * Amount of RAM that is not being used for anything.
52 * Amount of RAM that the kernel is being used for caches, not counting caches
60 * Amount of RAM that is in use by the kernel for actual allocations.
67 * Total amount of RAM available to the kernel.
74 * Amount of RAM that is not being used for anything.
81 * Amount of RAM that the kernel is being used for caches, not counting caches
90 * Amount of RAM that is in use by the kernel for actual allocations.
  /external/icu/icu4c/source/i18n/unicode/
curramt.h 23 * \brief C++ API: Currency Amount Object.
30 * A currency together with a numeric amount, such as 200 USD.
38 * Construct an object with the given numeric amount and the given
40 * @param amount a numeric object; amount.isNumeric() must be TRUE
43 * @param ec input-output error code. If the amount or the isoCode
47 CurrencyAmount(const Formattable& amount, const UChar* isoCode,
51 * Construct an object with the given numeric amount and the given
53 * @param amount the amount of the given currenc
    [all...]
  /external/jetty/src/resources/org/eclipse/jetty/server/session/jmx/
AbstractSessionManager-mbean.properties 16 sessionTimeMax: Maximum amount of time in seconds session remained valid since statsReset() was called
17 sessionTimeTotal: Total amount of time in seconds sessions remained valid since statsReset() was called
18 sessionTimeMean: Mean amount of time in seconds a session remained valid since statsReset() was called
19 sessionTimeStdDev: Standard deviation of amount of time in seconds a session remained valid since statsReset() was calle
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
MemoryLimitException.java 16 * The amount of memory required and the memory usage limit are
28 * The amount of memory needed and the memory usage limit are
31 * @param memoryNeeded amount of memory needed as kibibytes (KiB)
45 * @return amount of memory needed as kibibytes (KiB)

Completed in 638 milliseconds

1 2 3 4 5 6 7 8 91011>>