-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathesp32.txt
93 lines (93 loc) · 3.6 KB
/
esp32.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
SIZEOF
sizeof(LocalDate): 4
sizeof(LocalTime): 4
sizeof(LocalDateTime): 8
sizeof(TimeOffset): 4
sizeof(OffsetDateTime): 12
sizeof(TimeZone): 12
sizeof(TimeZoneData): 8
sizeof(ZonedDateTime): 24
sizeof(ZonedExtra): 28
sizeof(TimePeriod): 4
Basic:
sizeof(basic::Info::ZoneContext): 28
sizeof(basic::Info::ZoneEra): 16
sizeof(basic::Info::ZoneInfo): 24
sizeof(basic::Info::ZoneRule): 9
sizeof(basic::Info::ZonePolicy): 8
sizeof(basic::ZoneRegistrar): 8
sizeof(BasicZoneProcessor): 208
sizeof(BasicZoneProcessorCache<1>): 216
sizeof(BasicZoneManager): 12
sizeof(BasicZoneProcessor::Transition): 36
Extended:
sizeof(extended::Info::ZoneContext): 28
sizeof(extended::Info::ZoneEra): 16
sizeof(extended::Info::ZoneInfo): 24
sizeof(extended::Info::ZoneRule): 9
sizeof(extended::Info::ZonePolicy): 8
sizeof(extended::ZoneRegistrar): 8
sizeof(ExtendedZoneProcessor): 752
sizeof(ExtendedZoneProcessorCache<1>): 760
sizeof(ExtendedZoneManager): 12
sizeof(ExtendedZoneProcessor::Transition): 64
sizeof(ExtendedZoneProcessor::TransitionStorage): 548
sizeof(ExtendedZoneProcessor::MatchingEra): 44
Complete:
sizeof(complete::Info::ZoneContext): 28
sizeof(complete::Info::ZoneEra): 20
sizeof(complete::Info::ZoneInfo): 24
sizeof(complete::Info::ZoneRule): 12
sizeof(complete::Info::ZonePolicy): 8
sizeof(complete::ZoneRegistrar): 8
sizeof(CompleteZoneProcessor): 752
sizeof(CompleteZoneProcessorCache<1>): 760
sizeof(CompleteZoneManager): 12
sizeof(CompleteZoneProcessor::Transition): 64
sizeof(CompleteZoneProcessor::TransitionStorage): 548
sizeof(CompleteZoneProcessor::MatchingEra): 44
BENCHMARKS
EmptyLoop 1.200
LocalDate::forEpochDays() 0.800
LocalDate::toEpochDays() 0.300
LocalDate::dayOfWeek() 0.400
OffsetDateTime::forEpochSeconds() 1.300
OffsetDateTime::toEpochSeconds() 1.500
ZonedDateTime::toEpochSeconds() 1.300
ZonedDateTime::toEpochDays() 1.150
ZonedDateTime::forEpochSeconds(UTC) 2.000
ZonedDateTime::forEpochSeconds(Basic_nocache) 23.200
ZonedDateTime::forEpochSeconds(Basic_cached) 2.350
ZonedDateTime::forEpochSeconds(Extended_nocache) 69.250
ZonedDateTime::forEpochSeconds(Extended_cached) 4.000
ZonedDateTime::forEpochSeconds(Complete_nocache) 75.000
ZonedDateTime::forEpochSeconds(Complete_cached) 4.000
ZonedDateTime::forComponents(Basic_nocache) 29.800
ZonedDateTime::forComponents(Basic_cached) 9.650
ZonedDateTime::forComponents(Extended_nocache) 55.850
ZonedDateTime::forComponents(Extended_cached) 1.000
ZonedDateTime::forComponents(Complete_nocache) 61.850
ZonedDateTime::forComponents(Complete_cached) 1.050
ZonedExtra::forEpochSeconds(Basic_nocache) 23.100
ZonedExtra::forEpochSeconds(Basic_cached) 1.550
ZonedExtra::forEpochSeconds(Extended_nocache) 68.250
ZonedExtra::forEpochSeconds(Extended_cached) 3.000
ZonedExtra::forEpochSeconds(Complete_nocache) 79.350
ZonedExtra::forEpochSeconds(Complete_cached) 3.000
ZonedExtra::forComponents(Basic_nocache) 37.200
ZonedExtra::forComponents(Basic_cached) 9.950
ZonedExtra::forComponents(Extended_nocache) 56.100
ZonedExtra::forComponents(Extended_cached) 1.250
ZonedExtra::forComponents(Complete_nocache) 63.900
ZonedExtra::forComponents(Complete_cached) 1.250
BasicZoneRegistrar::findIndexForName(binary) 3.050
BasicZoneRegistrar::findIndexForIdBinary() 0.700
BasicZoneRegistrar::findIndexForIdLinear() 2.700
ExtendedZoneRegistrar::findIndexForName(binary) 3.000
ExtendedZoneRegistrar::findIndexForIdBinary() 0.700
ExtendedZoneRegistrar::findIndexForIdLinear() 2.750
CompleteZoneRegistrar::findIndexForName(binary) 3.050
CompleteZoneRegistrar::findIndexForIdBinary() 0.650
CompleteZoneRegistrar::findIndexForIdLinear() 2.900
Iterations_per_run 20000
END