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

1 2 3 4 5 6 7

  /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 75 ssize_t amt; local
82 amt = write(m_fd, &padding, paddingSize);
83 if (amt != paddingSize) {
87 m_pos += amt;
99 ssize_t amt; local
101 amt = write_padding_for(m_pos);
102 if (amt != 0) {
103 return amt;
129 amt = write(m_fd, &header, sizeof(entity_header_v1));
130 if (amt != sizeof(entity_header_v1))
166 ssize_t amt = write(m_fd, data, size); local
235 int amt; local
278 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 93 int amt; local
96 amt = read(fd, &header, sizeof(header));
97 if (amt != sizeof(header)) {
100 bytesRead += amt;
111 amt = read(fd, &file, sizeof(FileState));
112 if (amt != sizeof(FileState)) {
116 bytesRead += amt;
123 amt = read(fd, filename, nameBufSize);
124 if (amt == nameBufSize) {
127 bytesRead += amt;
164 int amt; local
222 int amt; local
316 int amt; local
743 ssize_t amt; local
828 int amt; local
854 int amt; local
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
FileUtils.java 110 long amt = in.skip(at); local
111 if (amt == -1) {
114 at -= amt;
130 int amt = in.read(result, at, length); local
131 if (amt == -1) {
134 at += amt;
135 length -= amt;
AnnotatedOutput.java 66 * @param amt &gt;= 0; the amount of output for this annotation to
70 public void annotate(int amt, String msg);
  /external/valgrind/main/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);
  /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...]
  /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/main/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...]
  /hardware/akm/AK8975_FS/libsensors/
SensorBase.cpp 72 int fd, amt; local
81 amt = write(fd, value, bytes);
82 amt = ((amt == -1) ? -errno : 0);
83 ALOGE_IF(amt < 0, "SensorBase: write_int failed to write %s (%s)",
86 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) {
  /frameworks/base/tools/aapt/
printapk.cpp 29 ssize_t amt; local
51 amt = lseek(fd, 0, SEEK_SET);
53 if (size < 0 || amt < 0) {
64 amt = read(fd, buf, size);
65 if (amt != size) {
  /system/extras/tests/lib/testUtil/
testUtil.c 68 struct timespec double2ts(double amt)
72 rv.tv_sec = floor(amt);
73 rv.tv_nsec = (amt - rv.tv_sec) * nSecsPerSec;
74 // TODO: Handle cases where amt is negative
84 struct timeval double2tv(double amt)
88 rv.tv_sec = floor(amt);
89 rv.tv_usec = (amt - rv.tv_sec) * uSecsPerSec;
90 // TODO: Handle cases where amt is negative
259 // Delays for the number of seconds specified by amt or a greater amount.
260 // The amt variable is of type float and thus non-integer amount
    [all...]
  /frameworks/base/core/java/android/util/
TimeUtils.java 253 static private int accumField(int amt, int suffix, boolean always, int zeropad) {
254 if (amt > 99 || (always && zeropad >= 3)) {
257 if (amt > 9 || (always && zeropad >= 2)) {
260 if (always || amt > 0) {
266 static private int printField(char[] formatStr, int amt, char suffix, int pos,
268 if (always || amt > 0) {
270 if ((always && zeropad >= 3) || amt > 99) {
271 int dig = amt/100;
274 amt -= (dig*100);
276 if ((always && zeropad >= 2) || amt > 9 || startPos != pos)
    [all...]
  /external/tcpdump/
print-ripng.c 66 register u_int amt; local
73 amt = snapend - dat;
74 i = min(length, amt);
  /external/arduino/hardware/arduino/cores/arduino/
wiring.h 78 #define constrain(amt,low,high) ((amt)<(low)?(low):((amt)>(high)?(high):(amt)))
  /external/grub/netboot/
fsys_tftp.c 359 int amt = buf_read + saved_filepos - filepos; local
363 if (amt > size)
364 amt = size;
366 if (amt > 0)
369 grub_memmove (addr, buf + filepos - saved_filepos, amt);
370 size -= amt;
371 addr += amt;
372 filepos += amt;
373 ret += amt;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
httplib.py 534 def read(self, amt=None):
543 return self._read_chunked(amt)
545 if amt is None:
560 if amt > self.length:
562 amt = self.length
567 s = self.fp.read(amt)
579 def _read_chunked(self, amt):
600 if amt is None:
602 elif amt < chunk_left:
603 value.append(self._safe_read(amt))
    [all...]

Completed in 593 milliseconds

1 2 3 4 5 6 7