HomeSort by relevance Sort by last modified time
    Searched refs:amt (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /libcore/luni/src/test/java/libcore/java/util/
OldAbstractMapTest.java 31 AMT amt = new AMT(); local
32 assertNotNull(amt);
36 AbstractMap<String, String> amt1 = new AMT();
37 AbstractMap<String, String> amt2 = new AMT();
54 AMT amt1 = new AMT();
55 AMT amt2 = new AMT();
62 AMT amt = new AMT(); local
69 AMT amt = new AMT(); local
80 AMT amt = new AMT(); local
91 AMT amt = new AMT(); local
    [all...]
  /frameworks/base/libs/androidfw/
BackupData.cpp 70 ssize_t amt; local
77 amt = write(m_fd, &padding, paddingSize);
78 if (amt != paddingSize) {
82 m_pos += amt;
94 ssize_t amt; local
96 amt = write_padding_for(m_pos);
97 if (amt != 0) {
98 return amt;
124 amt = write(m_fd, &header, sizeof(entity_header_v1));
125 if (amt != sizeof(entity_header_v1))
161 ssize_t amt = write(m_fd, data, size); local
231 int amt; local
274 int amt = read(m_fd, buf, size+1); local
352 int amt = read(m_fd, data, size); local
368 ssize_t amt; local
    [all...]
BackupHelpers.cpp 90 int amt; local
93 amt = read(fd, &header, sizeof(header));
94 if (amt != sizeof(header)) {
97 bytesRead += amt;
108 amt = read(fd, &file, sizeof(FileState));
109 if (amt != sizeof(FileState)) {
113 bytesRead += amt;
120 amt = read(fd, filename, nameBufSize);
121 if (amt == nameBufSize) {
124 bytesRead += amt;
161 int amt; local
219 int amt; local
315 int amt; local
744 ssize_t amt; local
829 int amt; local
855 int amt; local
    [all...]
  /external/valgrind/none/tests/
pth_cancel2.c 26 #define async_cancel_safe_read(fd,buf,amt) \
30 if (read(fd,buf,amt) < 0) \
37 #define async_cancel_safe_write(fd,buf,amt) \
41 if (write(fd,buf,amt) < 0) \
54 int amt=20; local
57 async_cancel_safe_write(*fd2,buf,amt);
58 async_cancel_safe_read(*fd2,buf,amt);
  /cts/tools/cfassembler/src/dxconvext/util/
FileUtils.java 78 int amt = in.read(result, at, length); local
79 if (amt == -1) {
82 at += amt;
83 length -= amt;
  /dalvik/dexgen/src/com/android/dexgen/util/
AnnotatedOutput.java 58 * @param amt {@code >= 0;} the amount of output for this annotation to
62 public void annotate(int amt, String msg);
FileUtils.java 78 int amt = in.read(result, at, length); local
79 if (amt == -1) {
82 at += amt;
83 length -= amt;
  /dalvik/dx/src/com/android/dx/util/
AnnotatedOutput.java 58 * @param amt {@code >= 0;} the amount of output for this annotation to
62 public void annotate(int amt, String msg);
  /external/dexmaker/src/dx/java/com/android/dx/util/
AnnotatedOutput.java 58 * @param amt {@code >= 0;} the amount of output for this annotation to
62 public void annotate(int amt, String msg);
FileUtils.java 78 int amt = in.read(result, at, length); local
79 if (amt == -1) {
82 at += amt;
83 length -= amt;
  /system/extras/tests/include/
testUtil.h 28 struct timespec double2ts(double amt);
29 struct timeval double2tv(double amt);
37 void testDelay(float amt);
38 void testDelaySpin(float amt);
  /device/htc/flounder/sensor_hub/libsensors/
SensorBase.cpp 74 int fd, amt; local
83 amt = write(fd, value, bytes);
84 amt = ((amt == -1) ? -errno : 0);
85 ALOGE_IF(amt < 0, "SensorBase: write_int failed to write %s (%s)",
88 return amt;
  /frameworks/support/v4/java/android/support/v4/util/
TimeUtils.java 38 static private int accumField(int amt, int suffix, boolean always, int zeropad) {
39 if (amt > 99 || (always && zeropad >= 3)) {
42 if (amt > 9 || (always && zeropad >= 2)) {
45 if (always || amt > 0) {
51 static private int printField(char[] formatStr, int amt, char suffix, int pos,
53 if (always || amt > 0) {
55 if ((always && zeropad >= 3) || amt > 99) {
56 int dig = amt/100;
59 amt -= (dig*100);
61 if ((always && zeropad >= 2) || amt > 9 || startPos != pos)
    [all...]
  /external/lldb/source/Plugins/Process/Utility/
InstructionUtils.h 68 Rotr32 (uint32_t bits, uint32_t amt)
70 assert(amt < 32 && "Invalid rotate amount");
71 return (bits >> amt) | (bits << ((32-amt)&31));
76 Rotl32 (uint32_t bits, uint32_t amt)
78 assert(amt < 32 && "Invalid rotate amount");
79 return (bits << amt) | (bits >> ((32-amt)&31));
  /frameworks/av/media/img_utils/src/
Input.cpp 34 size_t amt = (SKIP_BUF_SIZE > remaining) ? remaining : SKIP_BUF_SIZE; local
35 ssize_t ret = read(skipBuf, 0, amt);
  /libcore/dex/src/main/java/com/android/dex/util/
FileUtils.java 74 int amt = in.read(result, at, length); local
75 if (amt == -1) {
78 at += amt;
79 length -= amt;
  /external/valgrind/none/tests/amd64/
shrld.c 8 ULong amt; variable
39 "\tmovq amt, %rcx\n"
60 "\tmovq amt, %rcx\n"
81 "\tmovq amt, %rcx\n"
103 "\tmovq amt, %rcx\n"
124 "\tmovq amt, %rcx\n"
145 "\tmovq amt, %rcx\n"
172 amt = (ULong)i;
185 amt = (ULong)i;
199 amt = (ULong)i
    [all...]
  /frameworks/base/core/java/android/util/
TimeUtils.java 255 static private int accumField(int amt, int suffix, boolean always, int zeropad) {
256 if (amt > 999) {
258 while (amt != 0) {
260 amt /= 10;
264 if (amt > 99 || (always && zeropad >= 3)) {
267 if (amt > 9 || (always && zeropad >= 2)) {
270 if (always || amt > 0) {
277 static private int printFieldLocked(char[] formatStr, int amt, char suffix, int pos,
279 if (always || amt > 0) {
281 if (amt > 999)
    [all...]
  /hardware/akm/AK8975_FS/libsensors/
SensorBase.cpp 73 int fd, amt; local
82 amt = write(fd, value, bytes);
83 amt = ((amt == -1) ? -errno : 0);
84 ALOGE_IF(amt < 0, "SensorBase: write_int failed to write %s (%s)",
87 return amt;
  /development/tools/line_endings/
line_endings.c 72 ssize_t amt; local
74 amt = read(fd, buf, amt2);
75 if (amt != amt2) {
96 ssize_t amt = write(fd, root->buf, amt2); local
97 if (amt != amt2) {
  /system/extras/tests/lib/testUtil/
testUtil.c 69 struct timespec double2ts(double amt)
73 rv.tv_sec = floor(amt);
74 rv.tv_nsec = (amt - rv.tv_sec) * nSecsPerSec;
75 // TODO: Handle cases where amt is negative
85 struct timeval double2tv(double amt)
89 rv.tv_sec = floor(amt);
90 rv.tv_usec = (amt - rv.tv_sec) * uSecsPerSec;
91 // TODO: Handle cases where amt is negative
260 // Delays for the number of seconds specified by amt or a greater amount.
261 // The amt variable is of type float and thus non-integer amount
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
TwoColumnOutput.java 147 * @param amt &gt;= 0; the number of spaces to write
149 private static void writeSpaces(Writer out, int amt) throws IOException {
150 while (amt > 0) {
152 amt--;
  /external/tcpdump/
print-ripng.c 66 register u_int amt; local
73 amt = snapend - dat;
74 i = min(length, amt);
  /art/tools/dexfuzz/src/dexfuzz/
MutationStats.java 48 public void increaseStat(String statName, long amt) {
53 stats.put(statName, stats.get(statName) + amt);
  /external/openssh/openbsd-compat/
bcrypt_pbkdf.c 117 size_t i, j, amt, stride; local
130 amt = (keylen + stride - 1) / stride;
161 amt = MIN(amt, keylen);
162 for (i = 0; i < amt; i++) {

Completed in 675 milliseconds

1 2 3 4 5 6 7 8