Searched refs:amount (Results 1 - 25 of 234) sorted by relevance

12345678910

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
H A DAtomicJavaBean.java21 private float amount; field in class:AtomicJavaBean
25 return amount;
28 public void setAmount(float amount) { argument
29 this.amount = amount;
H A DBigDecimalJavaBean.java22 private float amount; field in class:BigDecimalJavaBean
33 return amount;
36 public void setAmount(float amount) { argument
37 this.amount = amount;
H A DIncompleteJavaBean.java21 private float amount; field in class:IncompleteJavaBean
29 amount += number;
/external/tpm2/
H A DEntropy.c36 // >= 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;
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DKerning.java45 private int amount; field in class:Kerning
56 return amount;
59 public void setAmount(int amount) { argument
60 this.amount = amount;
66 oc.write(amount, "amount", 0);
72 amount = ic.readInt("amount", 0);
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mturk/
H A Dprice.py24 def __init__(self, amount=0.0, currency_code='USD'):
25 self.amount = amount
33 return str(self.amount)
40 self.amount = float(value)
47 return {'%s.%d.Amount'%(label, ord) : str(self.amount),
/external/icu/icu4c/source/i18n/
H A Dcurramt.cpp20 CurrencyAmount::CurrencyAmount(const Formattable& amount, const UChar* isoCode, argument
22 Measure(amount, new CurrencyUnit(isoCode, ec), ec) {
25 CurrencyAmount::CurrencyAmount(double amount, const UChar* isoCode, argument
27 Measure(Formattable(amount), new CurrencyUnit(isoCode, ec), ec) {
H A Dtmutamt.cpp24 TimeUnitAmount::TimeUnitAmount(double amount, argument
27 : Measure(Formattable(amount),
H A Dhebrwcal.h233 * (Overrides Calendar) UDate Arithmetic function. Adds the specified (signed) amount
238 * @param amount The amount of date or time to be added to the field.
243 virtual void add(UCalendarDateFields field, int32_t amount, UErrorCode& status);
247 virtual void add(EDateFields field, int32_t amount, UErrorCode& status);
251 * (Overrides Calendar) Rolls up or down by the given amount in the specified field.
255 * @param amount Indicates amount to roll.
261 virtual void roll(UCalendarDateFields field, int32_t amount, UErrorCode& status);
264 * (Overrides Calendar) Rolls up or down by the given amount i
[all...]
H A Dhebrwcal.cpp185 * Add a signed amount to a specified field, using this calendar's rules.
205 * @param amount the amount to add to the field.
211 void HebrewCalendar::add(UCalendarDateFields field, int32_t amount, UErrorCode& status) argument
219 // We can't just do a set(MONTH, get(MONTH) + amount). The
220 // reason is ADAR_1. Suppose amount is +2 and we land in
222 // if amount is -2 and we land in ADAR_1, then we have to
227 if (amount > 0) {
229 month += amount;
243 month += amount;
271 add(EDateFields field, int32_t amount, UErrorCode& status) argument
308 roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) argument
342 roll(EDateFields field, int32_t amount, UErrorCode& status) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DJoyInput.java52 * the given amount.
55 * @param amount Rumble amount. Should be between 0 and 1.
57 public void setJoyRumble(int joyId, float amount); argument
/external/lldb/source/Plugins/Process/Utility/
H A DARMUtils.h95 static inline uint32_t LSL_C(const uint32_t value, const uint32_t amount, uint32_t &carry_out, bool *success) argument
97 if (amount == 0) {
102 carry_out = amount <= 32 ? Bit32(value, 32 - amount) : 0;
103 return value << amount;
106 static inline uint32_t LSL(const uint32_t value, const uint32_t amount, bool *success) argument
109 if (amount == 0)
112 uint32_t result = LSL_C(value, amount, dont_care, success);
119 static inline uint32_t LSR_C(const uint32_t value, const uint32_t amount, uint32_t &carry_out, bool *success) argument
121 if (amount
130 LSR(const uint32_t value, const uint32_t amount, bool *success) argument
143 ASR_C(const uint32_t value, const uint32_t amount, uint32_t &carry_out, bool *success) argument
164 ASR(const uint32_t value, const uint32_t amount, bool *success) argument
177 ROR_C(const uint32_t value, const uint32_t amount, uint32_t &carry_out, bool *success) argument
190 ROR(const uint32_t value, const uint32_t amount, bool *success) argument
221 Shift_C(const uint32_t value, ARM_ShifterType type, const uint32_t amount, const uint32_t carry_in, uint32_t &carry_out, bool *success) argument
261 Shift(const uint32_t value, ARM_ShifterType type, const uint32_t amount, const uint32_t carry_in, bool *success) argument
[all...]
/external/snakeyaml/src/test/java/examples/
H A DSelectiveConstructorTest.java58 .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) { argument
78 this.amount = amount;
90 return amount;
93 public void setAmount(int amount) { argument
94 this.amount = amount;
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DBaseCodeCursor.java56 * Advance the cursor by the indicated amount.
58 protected final void advance(int amount) { argument
59 cursor += amount;
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DDnaBlockData.java81 int amount = inputStream.readInt();
82 if (amount <= 0) {
83 throw new BlenderFileException("The names amount number should be positive!");
85 String[] names = new String[amount];
86 for (int i = 0; i < amount; ++i) {
97 amount = inputStream.readInt();
98 if (amount <= 0) {
99 throw new BlenderFileException("The types amount number should be positive!");
101 String[] types = new String[amount];
102 for (int i = 0; i < amount;
[all...]
/external/icu/icu4c/source/i18n/unicode/
H A Dcurramt.h30 * 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 currency
60 CurrencyAmount(double amount, cons
[all...]
/external/zopfli/src/zopfli/
H A Dzlib_container.c36 size_t amount = size > sums_overflow ? sums_overflow : size; local
37 size -= amount;
38 while (amount > 0) {
41 amount--;
H A Dhash.c95 size_t amount = 0; local
110 amount = h->same[(pos - 1) & ZOPFLI_WINDOW_MASK] - 1;
112 while (pos + amount + 1 < end &&
113 array[pos] == array[pos + amount + 1] && amount < (unsigned short)(-1)) {
114 amount++;
116 h->same[hpos] = amount;
/external/autotest/client/site_tests/hardware_TPMTakeOwnership/
H A Dhardware_TPMTakeOwnership.py59 def _sleep(self, amount):
60 """Sleeps for 'amount' of time and logs a message.
63 amount: an integer or float in seconds.
65 time.sleep(amount)
66 if amount >= 1:
67 logging.debug('Slept for %0.2f second', amount)
68 elif amount >= 0.001:
69 logging.debug('Slept for %0.2f millisecond', (amount * 1000))
71 logging.debug('Slept for %0.2f microsecond', (amount * 1000000))
/external/curl/lib/
H A Dgopher.c85 ssize_t amount, k; local
121 result = Curl_write(conn, sockfd, sel, k, &amount);
123 result = Curl_client_write(conn, CLIENTWRITE_HEADER, sel, amount);
128 k -= amount;
129 sel += amount;
/external/valgrind/none/tests/s390x/
H A Ddfp-2.c54 void iedtr(_Decimal64 in, long amount) argument
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) argument
73 asm volatile (".insn rrf, 0xb3fe0000, %[out], %[amount], %[in], 0\n\t"
75 :[in]"f"(in), [amount]"d"(amount));
79 printf(", %ld -> ", amount);
212 sldt(_Decimal64 in, unsigned long amount) argument
228 slxt(_Decimal128 in, unsigned long amount) argument
244 srdt(_Decimal64 in, unsigned long amount) argument
260 srxt(_Decimal128 in, unsigned long amount) argument
[all...]
/external/skia/src/core/
H A DSkFontStream.cpp39 static bool read(SkStream* stream, void* buffer, size_t amount) { argument
40 return stream->read(buffer, amount) == amount;
43 static bool skip(SkStream* stream, size_t amount) { argument
44 return stream->skip(amount) == amount;
77 size_t amount = sizeof(SkSharedTTHeader) + ttcIndex * sizeof(uint32_t); local
78 header = (SkSharedTTHeader*)storage.reset(amount);
79 if (!read(stream, header, amount)) {
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A Doutput_unknown.properties44 {http\u003a//xml.apache.org/xalan}indent-amount=0
/external/libchrome/base/metrics/
H A Dhistogram_flattener.h38 // argument |amount| is the non-zero discrepancy.
39 virtual void InconsistencyDetectedInLoggedCount(int amount) = 0;
/external/valgrind/memcheck/tests/vbit-test/
H A Dvbits.h76 vbits_t shl_vbits(vbits_t, unsigned amount);
77 vbits_t shr_vbits(vbits_t, unsigned amount);
78 vbits_t sar_vbits(vbits_t, unsigned amount);

Completed in 859 milliseconds

12345678910