/development/tools/zoneinfo/tzdata2010k/ |
D | solar88 | 7 # Times were computed using formulas in the U.S. Naval Observatory's 12 # 256 different "time types"--a limit that's faced because time types are 16 Rule sol88 1988 only - Jan 1 12:03:15s -0:03:15 - 17 Rule sol88 1988 only - Jan 2 12:03:40s -0:03:40 - 18 Rule sol88 1988 only - Jan 3 12:04:10s -0:04:10 - 19 Rule sol88 1988 only - Jan 4 12:04:40s -0:04:40 - 20 Rule sol88 1988 only - Jan 5 12:05:05s -0:05:05 - 21 Rule sol88 1988 only - Jan 6 12:05:30s -0:05:30 - 22 Rule sol88 1988 only - Jan 7 12:06:00s -0:06:00 - 23 Rule sol88 1988 only - Jan 8 12:06:25s -0:06:25 - [all …]
|
D | solar87 | 8 # Times were computed using formulas in the U.S. Naval Observatory's 13 # 256 different "time types"--a limit that's faced because time types are 17 Rule sol87 1987 only - Jan 1 12:03:20s -0:03:20 - 18 Rule sol87 1987 only - Jan 2 12:03:50s -0:03:50 - 19 Rule sol87 1987 only - Jan 3 12:04:15s -0:04:15 - 20 Rule sol87 1987 only - Jan 4 12:04:45s -0:04:45 - 21 Rule sol87 1987 only - Jan 5 12:05:10s -0:05:10 - 22 Rule sol87 1987 only - Jan 6 12:05:40s -0:05:40 - 23 Rule sol87 1987 only - Jan 7 12:06:05s -0:06:05 - 24 Rule sol87 1987 only - Jan 8 12:06:30s -0:06:30 - [all …]
|
D | solar89 | 18 # 256 different "time types"--a limit that's faced because time types are 22 Rule sol89 1989 only - Jan 1 12:03:35s -0:03:35 - 23 Rule sol89 1989 only - Jan 2 12:04:05s -0:04:05 - 24 Rule sol89 1989 only - Jan 3 12:04:30s -0:04:30 - 25 Rule sol89 1989 only - Jan 4 12:05:00s -0:05:00 - 26 Rule sol89 1989 only - Jan 5 12:05:25s -0:05:25 - 27 Rule sol89 1989 only - Jan 6 12:05:50s -0:05:50 - 28 Rule sol89 1989 only - Jan 7 12:06:15s -0:06:15 - 29 Rule sol89 1989 only - Jan 8 12:06:45s -0:06:45 - 30 Rule sol89 1989 only - Jan 9 12:07:10s -0:07:10 - [all …]
|
D | europe | 17 # Association's Standard Schedules Information Manual (IATA SSIM), 19 # of the IATA's data after 1990. 34 # Brazil's Departamento Servico da Hora (DSH), 69 # on a turnout of 88.6%. This was almost the same result as Norway's previous 102 # I have a one inch to one mile map of London and my estimate of the stone's 121 # and presumably other railways; the January 1848 Bradshaw's lists many 165 # term appears only in quotes taken from DST's opponents, whereas the 170 # A source at the British Information Office in New York avers that it's 221 # see Lord Tanlaw's speech 230 # Given Ilieve and Myers's data, the following claims by Shanks & Pottenger [all …]
|
D | antarctica | 26 Rule RussAQ 1984 1991 - Sep lastSun 2:00s 0 - 27 Rule RussAQ 1985 1991 - Mar lastSun 2:00s 1:00 S 30 Rule RussAQ 1993 max - Mar lastSun 2:00s 1:00 S 31 Rule RussAQ 1993 1995 - Sep lastSun 2:00s 0 - 32 Rule RussAQ 1996 max - Oct lastSun 2:00s 0 - 68 Rule ATAQ 1967 only - Oct Sun>=1 2:00s 1:00 - 69 Rule ATAQ 1968 only - Mar lastSun 2:00s 0 - 70 Rule ATAQ 1968 1985 - Oct lastSun 2:00s 1:00 - 71 Rule ATAQ 1969 1971 - Mar Sun>=8 2:00s 0 - 72 Rule ATAQ 1972 only - Feb lastSun 2:00s 0 - [all …]
|
/development/ndk/platforms/android-3/include/sys/ |
D | wait.h | 38 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8) argument 39 #define WCOREDUMP(s) ((s) & 0x80) argument 40 #define WTERMSIG(s) ((s) & 0x7f) argument 41 #define WSTOPSIG(s) WEXITSTATUS(s) argument 43 #define WIFEXITED(s) (WTERMSIG(s) == 0) argument 44 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f) argument 45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2) argument
|
/development/ndk/platforms/android-9/include/sys/ |
D | wait.h | 39 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8) argument 40 #define WCOREDUMP(s) ((s) & 0x80) argument 41 #define WTERMSIG(s) ((s) & 0x7f) argument 42 #define WSTOPSIG(s) WEXITSTATUS(s) argument 44 #define WIFEXITED(s) (WTERMSIG(s) == 0) argument 45 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f) argument 46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2) argument
|
/development/ndk/platforms/android-3/include/ |
D | termios.h | 49 static __inline__ int tcgetattr(int fd, struct termios *s) in tcgetattr() argument 51 return ioctl(fd, TCGETS, s); in tcgetattr() 54 static __inline__ int tcsetattr(int fd, int __opt, const struct termios *s) in tcsetattr() argument 56 return ioctl(fd, __opt, (void *)s); in tcsetattr() 80 static __inline__ speed_t cfgetospeed(const struct termios *s) in cfgetospeed() argument 82 return (speed_t)(s->c_cflag & CBAUD); in cfgetospeed() 85 static __inline__ int cfsetospeed(struct termios *s, speed_t speed) in cfsetospeed() argument 87 s->c_cflag = (s->c_cflag & ~CBAUD) | (speed & CBAUD); in cfsetospeed() 91 static __inline__ speed_t cfgetispeed(const struct termios *s) in cfgetispeed() argument 93 return (speed_t)(s->c_cflag & CBAUD); in cfgetispeed() [all …]
|
/development/tools/yuv420sp2rgb/ |
D | debug.c | 7 int dump_hex_buffer(FILE *s, void *b, size_t len, size_t elsize) { in dump_hex_buffer() argument 11 fputc('\n', s); in dump_hex_buffer() 12 fprintf(s, "%p: ", b); in dump_hex_buffer() 15 if (i && !(i % 4)) fprintf(s, " "); in dump_hex_buffer() 16 if (i && !(i % 8)) fprintf(s, " "); in dump_hex_buffer() 18 if (i && !(i % elsize)) fprintf(s, " "); in dump_hex_buffer() 24 fputc(pchr[last], s); in dump_hex_buffer() 26 fputc('.', s); in dump_hex_buffer() 31 fprintf(s, " (%d)\n%p: ", i, b); in dump_hex_buffer() 33 fprintf(s, "%02x", (unsigned char)pchr[i]); in dump_hex_buffer() [all …]
|
/development/ndk/platforms/android-5/arch-x86/include/asm/ |
D | byteorder.h | 35 struct { __u32 a,b; } s; in ___arch__swab64() member 39 v.s.a = ___arch__swab32(v.s.a); in ___arch__swab64() 40 v.s.b = ___arch__swab32(v.s.b); in ___arch__swab64() 41 __asm__("xchgl %0,%1" : "=r" (v.s.a), "=r" (v.s.b) : "0" (v.s.a), "1" (v.s.b)); in ___arch__swab64()
|
D | dma-mapping_32.h | 22 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f) argument 23 #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h) argument
|
D | apic_32.h | 28 #define apic_printk(v, s, a...) do { if ((v) <= apic_verbosity) printk(s, ##a); } while (0) argument
|
/development/tools/mkstubs/src/com/android/mkstubs/ |
D | Main.java | 187 private void addString(Params p, String s) throws IOException { in addString() argument 188 if (s == null) { in addString() 192 s = s.trim(); in addString() 194 if (s.length() < 2) { in addString() 198 char mode = s.charAt(0); in addString() 199 s = s.substring(1).trim(); in addString() 202 addStringsFromFile(p, s); in addString() 205 s = s.replace('.', '/'); // transform FQCN into ASM internal name in addString() 206 if (s.endsWith("*")) { in addString() 207 p.getFilter().getExcludePrefix().add(s.substring(0, s.length() - 1)); in addString() [all …]
|
D | Filter.java | 76 public boolean accept(String s) { in accept() argument 79 boolean accept = mIncludeFull.contains(s); in accept() 83 if (s.startsWith(prefix)) { in accept() 92 accept = !mExcludeFull.contains(s); in accept() 97 if (s.startsWith(prefix)) { in accept()
|
/development/ndk/platforms/android-3/include/net/ |
D | if_dl.h | 73 #define LLADDR(s) ((char *)((s)->sdl_data + (s)->sdl_nlen)) argument 74 #define CLLADDR(s) ((const char *)((s)->sdl_data + (s)->sdl_nlen)) argument
|
/development/ndk/platforms/android-8/samples/bitmap-plasma/jni/ |
D | plasma.c | 289 stats_init( Stats* s ) in stats_init() argument 291 s->lastTime = now_ms(); in stats_init() 292 s->firstTime = 0.; in stats_init() 293 s->firstFrame = 0; in stats_init() 294 s->numFrames = 0; in stats_init() 298 stats_startFrame( Stats* s ) in stats_startFrame() argument 300 s->frameTime = now_ms(); in stats_startFrame() 304 stats_endFrame( Stats* s ) in stats_endFrame() argument 307 double renderTime = now - s->frameTime; in stats_endFrame() 308 double frameTime = now - s->lastTime; in stats_endFrame() [all …]
|
/development/ndk/platforms/android-3/include/linux/ |
D | lockdep.h | 20 #define lock_acquire(l, s, t, r, c, i) do { } while (0) argument 38 #define spin_acquire(l, s, t, i) do { } while (0) argument 41 #define rwlock_acquire(l, s, t, i) do { } while (0) argument 42 #define rwlock_acquire_read(l, s, t, i) do { } while (0) argument 45 #define mutex_acquire(l, s, t, i) do { } while (0) argument 48 #define rwsem_acquire(l, s, t, i) do { } while (0) argument 49 #define rwsem_acquire_read(l, s, t, i) do { } while (0) argument
|
D | vt_buffer.h | 18 #define scr_memcpyw(d, s, c) memcpy(d, s, c) argument 19 #define scr_memmovew(d, s, c) memmove(d, s, c) argument
|
D | ext2_fs.h | 47 #define EXT2_BLOCK_SIZE(s) (EXT2_MIN_BLOCK_SIZE << (s)->s_log_block_size) argument 48 #define EXT2_ADDR_PER_BLOCK(s) (EXT2_BLOCK_SIZE(s) / sizeof (__u32)) argument 49 #define EXT2_BLOCK_SIZE_BITS(s) ((s)->s_log_block_size + 10) argument 50 #define EXT2_INODE_SIZE(s) (((s)->s_rev_level == EXT2_GOOD_OLD_REV) ? EXT2_GOOD_OLD_INODE_SIZE : … argument 51 #define EXT2_FIRST_INO(s) (((s)->s_rev_level == EXT2_GOOD_OLD_REV) ? EXT2_GOOD_OLD_FIRST_INO : … argument 56 #define EXT2_FRAG_SIZE(s) (EXT2_MIN_FRAG_SIZE << (s)->s_log_frag_size) argument 57 #define EXT2_FRAGS_PER_BLOCK(s) (EXT2_BLOCK_SIZE(s) / EXT2_FRAG_SIZE(s)) argument 71 #define EXT2_BLOCKS_PER_GROUP(s) ((s)->s_blocks_per_group) argument 72 #define EXT2_DESC_PER_BLOCK(s) (EXT2_BLOCK_SIZE(s) / sizeof (struct ext2_group_desc)) argument 73 #define EXT2_INODES_PER_GROUP(s) ((s)->s_inodes_per_group) argument
|
D | ext3_fs.h | 48 #define EXT3_BLOCK_SIZE(s) (EXT3_MIN_BLOCK_SIZE << (s)->s_log_block_size) argument 49 #define EXT3_ADDR_PER_BLOCK(s) (EXT3_BLOCK_SIZE(s) / sizeof (__u32)) argument 50 #define EXT3_BLOCK_SIZE_BITS(s) ((s)->s_log_block_size + 10) argument 51 #define EXT3_INODE_SIZE(s) (((s)->s_rev_level == EXT3_GOOD_OLD_REV) ? EXT3_GOOD_OLD_INODE_SIZE : … argument 52 #define EXT3_FIRST_INO(s) (((s)->s_rev_level == EXT3_GOOD_OLD_REV) ? EXT3_GOOD_OLD_FIRST_INO : … argument 57 #define EXT3_FRAG_SIZE(s) (EXT3_MIN_FRAG_SIZE << (s)->s_log_frag_size) argument 58 #define EXT3_FRAGS_PER_BLOCK(s) (EXT3_BLOCK_SIZE(s) / EXT3_FRAG_SIZE(s)) argument 72 #define EXT3_BLOCKS_PER_GROUP(s) ((s)->s_blocks_per_group) argument 73 #define EXT3_DESC_PER_BLOCK(s) (EXT3_BLOCK_SIZE(s) / sizeof (struct ext3_group_desc)) argument 74 #define EXT3_INODES_PER_GROUP(s) ((s)->s_inodes_per_group) argument
|
/development/ndk/platforms/android-9/samples/native-plasma/jni/ |
D | plasma.c | 298 stats_init( Stats* s ) in stats_init() argument 300 s->lastTime = now_ms(); in stats_init() 301 s->firstTime = 0.; in stats_init() 302 s->firstFrame = 0; in stats_init() 303 s->numFrames = 0; in stats_init() 307 stats_startFrame( Stats* s ) in stats_startFrame() argument 309 s->frameTime = now_ms(); in stats_startFrame() 313 stats_endFrame( Stats* s ) in stats_endFrame() argument 316 double renderTime = now - s->frameTime; in stats_endFrame() 317 double frameTime = now - s->lastTime; in stats_endFrame() [all …]
|
/development/tools/zoneinfo/ |
D | ZoneCompactor.java | 90 String s; in ZoneCompactor() local 91 while ((s = rdr.readLine()) != null) { in ZoneCompactor() 92 s = s.trim(); in ZoneCompactor() 93 if (s.startsWith("Link")) { in ZoneCompactor() 94 StringTokenizer st = new StringTokenizer(s); in ZoneCompactor() 100 String link = links.get(s); in ZoneCompactor() 102 File f = new File(dirName, s); in ZoneCompactor() 104 starts.put(s, new Integer(start)); in ZoneCompactor() 105 lengths.put(s, new Integer((int)length)); in ZoneCompactor() 110 TimeZone tz = ZoneInfo.make(s, data); in ZoneCompactor() [all …]
|
/development/tools/mkstubs/tests/com/android/mkstubs/sourcer/ |
D | FieldSourcerTest.java | 56 String s = mWriter.toString(); in testStringField() local 57 Assert.assertEquals("public java.lang.String mArg;\n", s); in testStringField() 71 String s = mWriter.toString(); in testTemplateTypeField() local 72 Assert.assertEquals("private final java.util.ArrayList<java.lang.String> mList;\n", s); in testTemplateTypeField()
|
D | AccessSourcerTest.java | 50 String s = mWriter.toString(); in testAbstractPublic() local 51 Assert.assertEquals("public abstract", s); in testAbstractPublic() 59 String s = mWriter.toString(); in testPrivateFinalStatic() local 60 Assert.assertEquals("private static final", s); in testPrivateFinalStatic()
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
D | MonkeySourceScript.java | 229 private void handleEvent(String s, String[] args) { in handleEvent() argument 231 if (s.indexOf(EVENT_KEYWORD_KEY) >= 0 && args.length == 8) { in handleEvent() 255 if ((s.indexOf(EVENT_KEYWORD_POINTER) >= 0 || s.indexOf(EVENT_KEYWORD_TRACKBALL) >= 0) in handleEvent() 271 if (s.indexOf("Pointer") > 0) { in handleEvent() 283 if ((s.indexOf(EVENT_KEYWORD_TAP) >= 0) && args.length == 2) { in handleEvent() 317 if (s.indexOf(EVENT_KEYWORD_FLIP) >= 0 && args.length == 1) { in handleEvent() 324 if (s.indexOf(EVENT_KEYWORD_ACTIVITY) >= 0 && args.length >= 2) { in handleEvent() 351 if (s.indexOf(EVENT_KEYWORD_DEVICE_WAKEUP) >= 0){ in handleEvent() 368 if (s.indexOf(EVENT_KEYWORD_INSTRUMENTATION) >= 0 && args.length == 2) { in handleEvent() 377 if (s.indexOf(EVENT_KEYWORD_WAIT) >= 0 && args.length == 1) { in handleEvent() [all …]
|