HomeSort by relevance Sort by last modified time
    Searched full:amount (Results 51 - 75 of 6068) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/zopfli/src/zopfli/
blocksplitter.h 42 maxblocks: set a limit to the amount of blocks. Set to 0 to mean no limit.
58 maxblocks: maximum amount of blocks to split into, or 0 for no limit
61 npoints: pointer to amount of splitpoints, for the dynamic array. The amount of
62 blocks is the amount of splitpoitns + 1.
  /packages/apps/TV/tests/common/src/com/android/tv/testing/
FakeClock.java 79 * Increment the current time by {@code amount} unit of time.
82 * @param amount The amount of time units to increment by.
84 public void increment(TimeUnit unit, long amount) {
85 mCurrentTimeMillis += unit.toMillis(amount);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/WatchdogTimerDxe/
WatchdogTimer.h 60 Sets the amount of time in the future to fire the watchdog timer.
62 This function sets the amount of time to wait before firing the watchdog
67 @param TimerPeriod The amount of time in 100 ns units to wait before the watchdog
85 Retrieves the amount of time in 100 ns units that the system will wait before firing the watchdog timer.
87 This function retrieves the amount of time the system will wait before firing
92 @param TimerPeriod A pointer to the amount of time in 100 ns units that the system
96 @retval EFI_SUCCESS The amount of time that the system will wait before
  /frameworks/base/core/jni/android/graphics/
Utils.cpp 53 ssize_t amount; local
60 // we want to return amount that was skipped
72 amount = newOffset - oldOffset;
74 amount = fAsset->read(buffer, size);
77 if (amount < 0) {
78 amount = 0;
80 return amount;
  /frameworks/rs/driver/runtime/arch/
generic.c 20 extern short __attribute__((overloadable, always_inline)) rsClamp(short amount, short low, short high);
30 extern T __attribute__((overloadable)) clamp(T amount, T low, T high) { \
31 return amount < low ? low : (amount > high ? high : amount); \
34 extern T##2 __attribute__((overloadable)) clamp(T##2 amount, T##2 low, T##2 high) { \
36 r.x = amount.x < low.x ? low.x : (amount.x > high.x ? high.x : amount.x); \
37 r.y = amount.y < low.y ? low.y : (amount.y > high.y ? high.y : amount.y);
    [all...]
  /external/freetype/src/autofit/
afglobal.h 121 /* Compute darkening amount once per size. Use this to check whether */
125 /* to compute the darkening amount. */
128 /* to compute the darkening amount. */
130 /* The actual amount to darken a glyph along the X axis. */
132 /* The actual amount to darken a glyph along the Y axis. */
134 /* Amount to scale down by to keep emboldened points */
  /external/icu/icu4c/source/i18n/unicode/
tmutamt.h 16 * \brief C++ API: time unit amount object.
52 * Construct TimeUnitAmount object with the given numeric amount and the
54 * @param amount a numeric amount.
55 * @param timeUnitField the time unit field on which a time unit amount
63 TimeUnitAmount(double amount, TimeUnit::UTimeUnitFields timeUnitField,
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9.x/include/
loongson.h 463 psllh_u (uint16x4_t s, uint8_t amount)
465 return __builtin_loongson_psllh_u (s, amount);
469 psllh_s (int16x4_t s, uint8_t amount)
471 return __builtin_loongson_psllh_s (s, amount);
475 psllw_u (uint32x2_t s, uint8_t amount)
477 return __builtin_loongson_psllw_u (s, amount);
481 psllw_s (int32x2_t s, uint8_t amount)
483 return __builtin_loongson_psllw_s (s, amount);
488 psrlh_u (uint16x4_t s, uint8_t amount)
490 return __builtin_loongson_psrlh_u (s, amount);
    [all...]
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9.x/include/
loongson.h 463 psllh_u (uint16x4_t s, uint8_t amount)
465 return __builtin_loongson_psllh_u (s, amount);
469 psllh_s (int16x4_t s, uint8_t amount)
471 return __builtin_loongson_psllh_s (s, amount);
475 psllw_u (uint32x2_t s, uint8_t amount)
477 return __builtin_loongson_psllw_u (s, amount);
481 psllw_s (int32x2_t s, uint8_t amount)
483 return __builtin_loongson_psllw_s (s, amount);
488 psrlh_u (uint16x4_t s, uint8_t amount)
490 return __builtin_loongson_psrlh_u (s, amount);
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
BigDecimalBeanConstructorTest.java 33 assertEquals("!!" + className + ".BigDecimalJavaBean {amount: 1.5, number: 3.1416}\n",
39 + ".BigDecimalJavaBean {amount: 1.5, number: 3.1416}";
49 + ".AtomicJavaBean {amount: 1.5, atomic: 0}";
  /external/valgrind/none/tests/x86/
shift_ndep.c 7 shift when the shift amount happens to be zero. */
14 CC_NDEP. Then we left shift %x by a variable amount that happens
21 the shift amount were non-zero), this will be interpeted as
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsPreference.java 51 double amount = avg ? (statsForeground ? entry.mRunWeight : entry.mBgWeight) * weightToRam local
53 setSummary(Formatter.formatShortFileSize(getContext(), (long) amount));
54 setProgress((int) (100 * amount / maxMemory));
  /external/autotest/client/site_tests/hardware_Memtester/
control 14 This test uses memtester to find memory subsystem faults. Amount of memory
  /external/autotest/client/site_tests/hardware_TPMTakeOwnership/
hardware_TPMTakeOwnership.py 59 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/autotest/client/site_tests/kernel_Ktime/
control 8 over a short amount of time.
  /external/autotest/client/site_tests/network_TwoShills/
control 16 amount of time.
  /external/autotest/client/tests/wb_kupdate/
README 9 taken to write the user specified amount of data to disk.
  /external/libchrome/base/message_loop/
timer_slack.h 10 // Amount of timer slack to use for delayed timers. Increasing timer slack
  /external/llvm/lib/Fuzzer/test/
fuzzer-trace-pc.test 4 // FIXME: The test below uses a significant amount of memory on OSX and
  /external/llvm/utils/lit/examples/many-tests/
README.txt 7 do a small amount of work in the Python test execution code.
lit.cfg 17 # Do a "non-trivial" amount of Python work.
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_nanosleep/
4-1.sh 8 # Test that clock_nanosleep() always sleeps for at least the amount
  /external/ltp/testcases/realtime/func/sched_jitter/
README 6 fixed amount of work. It then prints out the maximum jitter seen (longest
  /external/skia/src/core/
SkFontStream.cpp 40 static bool read(SkStream* stream, void* buffer, size_t amount) {
41 return stream->read(buffer, amount) == amount;
44 static bool skip(SkStream* stream, size_t amount) {
45 return stream->skip(amount) == amount;
78 size_t amount = sizeof(SkSharedTTHeader) + ttcIndex * sizeof(uint32_t); local
79 header = (SkSharedTTHeader*)storage.reset(amount);
80 if (!read(stream, header, amount)) {
  /external/tpm2/
HandleProcess_fp.h 15 INT32 *req_buffer_remaining_size, // IN/OUT: indicates the amount of data left

Completed in 786 milliseconds

1 23 4 5 6 7 8 91011>>