HomeSort by relevance Sort by last modified time
    Searched refs:amount (Results 126 - 150 of 996) sorted by null

1 2 3 4 56 7 8 91011>>

  /device/linaro/bootloader/edk2/ArmPlatformPkg/PrePeiCore/Arm/
SwitchStack.asm 22 ; @param StackDelta Signed amount by which to modify the stack pointer
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
FieldsSet.java 55 public void set(int field, int amount) {
56 fValues[field] = amount;
  /external/icu/icu4c/source/i18n/unicode/
gregocal.h 354 * (Overrides Calendar) Rolls up or down by the given amount in the specified field.
358 * @param amount Indicates amount to roll.
362 * @deprecated ICU 2.6. Use roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) instead.
364 virtual void roll(EDateFields field, int32_t amount, UErrorCode& status);
367 * (Overrides Calendar) Rolls up or down by the given amount in the specified field.
371 * @param amount Indicates amount to roll.
377 virtual void roll(UCalendarDateFields field, int32_t amount, UErrorCode& status);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
FieldsSet.java 54 public void set(int field, int amount) {
55 fValues[field] = amount;
  /external/protobuf/src/google/protobuf/stubs/
bytestream.cc 121 void GrowingArrayByteSink::Expand(size_t amount) { // Expand by at least 50%.
122 size_t new_capacity = std::max(capacity_ + amount, (3 * capacity_) / 2);
  /frameworks/base/core/java/com/android/internal/graphics/
ColorUtils.java 560 private static float constrain(float amount, float low, float high) {
561 return amount < low ? low : (amount > high ? high : amount);
564 private static int constrain(int amount, int low, int high) {
565 return amount < low ? low : (amount > high ? high : amount);
  /frameworks/support/core-utils/java/android/support/v4/graphics/
ColorUtils.java 516 private static float constrain(float amount, float low, float high) {
517 return amount < low ? low : (amount > high ? high : amount);
520 private static int constrain(int amount, int low, int high) {
521 return amount < low ? low : (amount > high ? high : amount);
  /libcore/ojluni/src/main/java/java/time/
Month.java 393 int amount = (int) (months % 12); local
394 return ENUMS[(ordinal() + (amount + 12)) % 12];
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue16249.go 52 for j := 0; j < 4; j++ { // j controls amount of B's stack dribble
  /prebuilts/go/linux-x86/test/fixedbugs/
issue16249.go 52 for j := 0; j < 4; j++ { // j controls amount of B's stack dribble
  /system/core/libutils/include/utils/
VectorImpl.h 110 void* _grow(size_t where, size_t amount);
111 void _shrink(size_t where, size_t amount);
  /toolchain/binutils/binutils-2.25/opcodes/
aarch64-opc.c 877 amount will be returned in *SHIFT_AMOUNT. */
882 int amount;
899 amount = -1;
901 amount = 0;
903 amount = 16;
905 amount = 32;
907 amount = 48;
909 if (amount == -1)
916 *shift_amount = amount;
918 DEBUG_TRACE ("exit TRUE with amount %d", amount)
880 int amount; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_gzip.py 154 amount = 10
156 amount = len(line1)
157 line2 = f.read(amount)
158 self.assertEqual(line1[:amount], line2)
  /external/skia/src/core/
SkRWBuffer.cpp 41 size_t amount = SkTMin(this->avail(), length); local
42 memcpy(this->availData(), src, amount);
43 fUsed += amount;
45 return amount;
  /external/swiftshader/third_party/LLVM/test/MC/ARM/
diagnostics.s 182 @ CHECK-ERRORS: error: 'lsr' shift amount must be in range [0,31]
185 @ CHECK-ERRORS: error: 'lsr' shift amount must be in range [0,31]
188 @ CHECK-ERRORS: error: 'asr' shift amount must be in range [1,32]
191 @ CHECK-ERRORS: error: 'asr' shift amount must be in range [1,32]
200 @ CHECK-ERRORS: error: shift amount must be an immediate
263 @ CHECK-ERRORS: error: rotate amount must be an immediate
266 @ CHECK-ERRORS: error: 'ror' rotate amount must be 8, 16, or 24
269 @ CHECK-ERRORS: error: 'ror' rotate amount must be 8, 16, or 24
  /external/webrtc/talk/app/webrtc/objc/public/
RTCDataChannel.h 87 // Called when the buffered amount has changed.
89 didChangeBufferedAmount:(NSUInteger)amount;
  /frameworks/base/libs/hwui/
Caches.h 109 * amount of overdraw (1 for 1x, 2 for 2x, etc.)
111 uint32_t getOverdrawColor(uint32_t amount) const;
  /frameworks/support/content/tests/java/android/support/content/
TestContentProvider.java 342 private static int constrain(int amount, int low, int high) {
343 return amount < low ? low : (amount > high ? high : amount);
  /libcore/ojluni/src/main/java/java/time/chrono/
MinguoDate.java 350 public MinguoDate plus(TemporalAmount amount) {
351 return super.plus(amount);
360 public MinguoDate minus(TemporalAmount amount) {
361 return super.minus(amount);
ThaiBuddhistDate.java 350 public ThaiBuddhistDate plus(TemporalAmount amount) {
351 return super.plus(amount);
360 public ThaiBuddhistDate minus(TemporalAmount amount) {
361 return super.minus(amount);
  /libcore/ojluni/src/test/java/time/tck/java/time/
TCKDayOfWeek.java 305 public void test_plus_long(int base, long amount, int expected) {
306 assertEquals(DayOfWeek.of(base).plus(amount), DayOfWeek.of(expected));
336 public void test_minus_long(int base, long amount, int expected) {
337 assertEquals(DayOfWeek.of(base).minus(amount), DayOfWeek.of(expected));
  /test/vts-testcase/kernel/api/proc/
ProcSimpleFileTests.py 98 '''/proc/sys/vm/mmap_rnd_(compat_)bits specifies the amount of randomness in mmap'd
  /tools/test/connectivity/acts/tests/google/tel/config/
README.md 12 - **pass_criteria_call_(3g/volte/2g/wfc)** - The maximum amount of power in mW that can be used in steady state during calling power tests in order to pass the test.
13 - **pass_criteria_idle_(3g/volte/2g/wfc)** - The maximum amount of power in mW that can be used in steady state during idle power tests in order to pass the test.
  /build/make/tools/
fat16copy.py 81 def seek(self, amount, direction=0):
84 self.idx += amount
86 self.idx = self.size - amount
88 self.idx = amount
583 assert size >= 0, "Can't read a negative amount"
632 def allocate(self, amount):
634 Allocate a new cluster chain big enough to hold at least the given amount
637 assert amount > 0, "Must allocate a non-zero amount."
670 while grabbed < amount and len(free_zones) > 0
    [all...]
  /external/ImageMagick/coders/
xcf.c 645 /* read in the offset of the next tile so we can calculate the amount
873 ssize_t amount;
878 amount = (ssize_t) MagickMin(16, prop_size);
879 amount = ReadBlob(image, (size_t) amount, (unsigned char *) &buf);
880 if (!amount)
883 prop_size -= (size_t) MagickMin(16, (size_t) amount);
868 ssize_t amount; local
1237 ssize_t amount; local
    [all...]

Completed in 2250 milliseconds

1 2 3 4 56 7 8 91011>>