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

1 2 3 4 5 6 7 8 91011>>

  /external/curl/tests/libtest/
lib1525.c 37 size_t amount = nmemb * size; /* Total bytes curl wants */ local
38 if(amount < strlen(data)) {
lib1526.c 36 size_t amount = nmemb * size; /* Total bytes curl wants */ local
37 if(amount < strlen(data)) {
lib1527.c 36 size_t amount = nmemb * size; /* Total bytes curl wants */ local
37 if(amount < strlen(data)) {
lib552.c 132 size_t amount = nmemb * size; /* Total bytes curl wants */ local
135 size_t given = amount < available ? amount : available; /* What is given */
146 int amount = curlx_uztosi(size * nmemb); local
147 printf("%.*s", amount, (char *)ptr);
  /external/libvncserver/libvncserver/
cargs.c 70 int amount=(*argc)-(*position)-count; local
71 if(amount)
72 memmove(argv+(*position),argv+(*position)+count,sizeof(char*)*amount);
  /external/zopfli/src/zopfli/
hash.c 95 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;
zlib_container.c 36 size_t amount = size > sums_overflow ? sums_overflow : size; local
37 size -= amount;
38 while (amount > 0) {
41 amount--;
  /external/curl/lib/
gopher.c 84 ssize_t amount, k; local
120 result = Curl_write(conn, sockfd, sel, k, &amount);
122 result = Curl_client_write(conn, CLIENTWRITE_HEADER, sel, amount);
126 k -= amount;
127 sel += amount;
  /external/libchrome/base/
sys_info_unittest.cc 30 // The maxmimal amount of virtual memory can be zero which means unlimited.
44 const int64_t amount = SysInfo::AmountOfAvailablePhysicalMemory(info); local
46 EXPECT_GT(amount, static_cast<int64_t>(info.free) * 1024);
47 EXPECT_LT(amount / 1024, info.available);
53 const int64_t amount = SysInfo::AmountOfAvailablePhysicalMemory(info); local
55 EXPECT_GT(amount, static_cast<int64_t>(info.free) * 1024);
56 EXPECT_LT(amount / 1024, info.total);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
AtomicJavaBean.java 21 private float amount; field in class:AtomicJavaBean
25 return amount;
28 public void setAmount(float amount) {
29 this.amount = amount;
BigDecimalJavaBean.java 22 private float amount; field in class:BigDecimalJavaBean
33 return amount;
36 public void setAmount(float amount) {
37 this.amount = amount;
IncompleteJavaBean.java 21 private float amount; field in class:IncompleteJavaBean
29 amount += number;
  /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/vixl/test/aarch32/
test-assembler-cond-rd-operand-rn-ror-amount-a32.cc 75 uint32_t amount; member in struct:vixl::aarch32::__anon43302::Operands
1346 uint32_t amount = kTests[i].operands.amount; local
    [all...]
test-assembler-cond-rd-operand-rn-ror-amount-t32.cc 75 uint32_t amount; member in struct:vixl::aarch32::__anon43303::Operands
1234 uint32_t amount = kTests[i].operands.amount; local
    [all...]
test-assembler-cond-rd-operand-rn-shift-amount-1to31-a32.cc 77 uint32_t amount; member in struct:vixl::aarch32::__anon43304::Operands
1442 uint32_t amount = kTests[i].operands.amount; local
    [all...]
test-assembler-cond-rd-operand-rn-shift-amount-1to31-in-it-block-t32.cc 69 uint32_t amount; member in struct:vixl::aarch32::__anon43305::Operands
1123 uint32_t amount = kTests[i].operands.amount; local
    [all...]
test-assembler-cond-rd-operand-rn-shift-amount-1to31-t32.cc 77 uint32_t amount; member in struct:vixl::aarch32::__anon43306::Operands
1466 uint32_t amount = kTests[i].operands.amount; local
    [all...]
test-assembler-cond-rd-operand-rn-shift-amount-1to32-a32.cc 77 uint32_t amount; member in struct:vixl::aarch32::__anon43307::Operands
814 uint32_t amount = kTests[i].operands.amount; local
    [all...]
test-assembler-cond-rd-operand-rn-shift-amount-1to32-in-it-block-t32.cc 69 uint32_t amount; member in struct:vixl::aarch32::__anon43308::Operands
623 uint32_t amount = kTests[i].operands.amount; local
    [all...]
test-assembler-cond-rd-operand-rn-shift-amount-1to32-t32.cc 77 uint32_t amount; member in struct:vixl::aarch32::__anon43309::Operands
842 uint32_t amount = kTests[i].operands.amount; local
    [all...]
  /frameworks/base/core/jni/android/graphics/
Utils.cpp 85 ssize_t amount; local
92 // we want to return amount that was skipped
104 amount = newOffset - oldOffset;
106 amount = fAsset->read(buffer, size);
109 if (amount < 0) {
110 amount = 0;
112 return amount;
  /libcore/ojluni/src/main/java/java/time/
DayOfWeek.java 366 int amount = (int) (days % 7); local
367 return ENUMS[(ordinal() + (amount + 7)) % 7];
  /libcore/ojluni/src/test/java/time/tck/java/time/
MockSimplePeriod.java 89 * The amount of the period.
91 private final long amount; field in class:MockSimplePeriod
98 * Obtains a {@code MockSimplePeriod} from an amount and unit.
102 * @param amount the amount of the period, measured in terms of the unit, positive or negative
107 public static MockSimplePeriod of(long amount, TemporalUnit unit) {
108 return new MockSimplePeriod(amount, unit);
111 private MockSimplePeriod(long amount, TemporalUnit unit) {
116 this.amount = amount;
    [all...]
  /libcore/ojluni/src/test/java/time/test/java/time/
MockSimplePeriod.java 89 * The amount of the period.
91 private final long amount; field in class:MockSimplePeriod
98 * Obtains a {@code MockSimplePeriod} from an amount and unit.
102 * @param amount the amount of the period, measured in terms of the unit, positive or negative
107 public static MockSimplePeriod of(long amount, TemporalUnit unit) {
108 return new MockSimplePeriod(amount, unit);
111 private MockSimplePeriod(long amount, TemporalUnit unit) {
116 this.amount = amount;
    [all...]

Completed in 549 milliseconds

1 2 3 4 5 6 7 8 91011>>