Searched refs:status (Results 51 - 75 of 5927) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/icu/source/samples/datecal/
H A Dcal.cpp18 UErrorCode status = U_ZERO_ERROR; local
20 GregorianCalendar* gc = new GregorianCalendar(status);
21 if (U_FAILURE(status)) {
36 gc->get(UCAL_YEAR, status),
37 gc->get(UCAL_MONTH, status) + 1,
38 gc->get(UCAL_MONTH, status),
39 gc->get(UCAL_DATE, status));
40 if (U_FAILURE(status))
46 gc->add(UCAL_DATE, 1, status);
47 if (U_FAILURE(status)) {
[all...]
H A Dccal.c18 UErrorCode status = U_ZERO_ERROR; local
20 UCalendar *cal = ucal_open(NULL, -1, NULL, UCAL_GREGORIAN, &status);
21 if (U_FAILURE(status)) {
38 ucal_get(cal, UCAL_YEAR, &status),
39 ucal_get(cal, UCAL_MONTH, &status) + 1,
40 ucal_get(cal, UCAL_MONTH, &status),
41 ucal_get(cal, UCAL_DATE, &status));
42 if (U_FAILURE(status)) {
47 ucal_add(cal, UCAL_DATE, 1, &status);
48 if (U_FAILURE(status))
[all...]
/external/icu/icu4c/source/common/
H A Dures_cnv.c30 UErrorCode *status)
36 if(status==NULL || U_FAILURE(*status)) {
45 *status=U_ILLEGAL_ARGUMENT_ERROR;
56 UConverter *cnv=u_getDefaultConverter(status);
57 length=ucnv_fromUChars(cnv, path, (int32_t)sizeof(pathBuffer), myPath, length, status);
59 if(U_FAILURE(*status)) {
64 *status=U_ILLEGAL_ARGUMENT_ERROR;
69 *status=U_UNSUPPORTED_ERROR;
75 return ures_open(path, localeID, status);
28 ures_openU(const UChar *myPath, const char *localeID, UErrorCode *status) argument
[all...]
H A Dservls.cpp45 ICULocaleService::get(const Locale& locale, UErrorCode& status) const
47 return get(locale, LocaleKey::KIND_ANY, NULL, status);
51 ICULocaleService::get(const Locale& locale, int32_t kind, UErrorCode& status) const
53 return get(locale, kind, NULL, status);
57 ICULocaleService::get(const Locale& locale, Locale* actualReturn, UErrorCode& status) const
59 return get(locale, LocaleKey::KIND_ANY, actualReturn, status);
63 ICULocaleService::get(const Locale& locale, int32_t kind, Locale* actualReturn, UErrorCode& status) const
66 if (U_FAILURE(status)) {
72 status = U_MEMORY_ALLOCATION_ERROR;
74 ICUServiceKey* key = createKey(&locName, kind, status);
95 registerInstance(UObject* objToAdopt, const UnicodeString& locale, UBool visible, UErrorCode& status) argument
105 registerInstance(UObject* objToAdopt, const Locale& locale, UErrorCode& status) argument
111 registerInstance(UObject* objToAdopt, const Locale& locale, int32_t kind, UErrorCode& status) argument
117 registerInstance(UObject* objToAdopt, const Locale& locale, int32_t kind, int32_t coverage, UErrorCode& status) argument
162 ServiceEnumeration(const ICULocaleService* service, UErrorCode &status) argument
171 ServiceEnumeration(const ServiceEnumeration &other, UErrorCode &status) argument
193 UErrorCode status = U_ZERO_ERROR; local
205 UErrorCode status = U_ZERO_ERROR; local
228 snext(UErrorCode& status) argument
235 reset(UErrorCode& status) argument
[all...]
/external/icu/icu4c/source/samples/datecal/
H A Dcal.cpp18 UErrorCode status = U_ZERO_ERROR; local
20 GregorianCalendar* gc = new GregorianCalendar(status);
21 if (U_FAILURE(status)) {
36 gc->get(UCAL_YEAR, status),
37 gc->get(UCAL_MONTH, status) + 1,
38 gc->get(UCAL_MONTH, status),
39 gc->get(UCAL_DATE, status));
40 if (U_FAILURE(status))
46 gc->add(UCAL_DATE, 1, status);
47 if (U_FAILURE(status)) {
[all...]
H A Dccal.c18 UErrorCode status = U_ZERO_ERROR; local
20 UCalendar *cal = ucal_open(NULL, -1, NULL, UCAL_GREGORIAN, &status);
21 if (U_FAILURE(status)) {
38 ucal_get(cal, UCAL_YEAR, &status),
39 ucal_get(cal, UCAL_MONTH, &status) + 1,
40 ucal_get(cal, UCAL_MONTH, &status),
41 ucal_get(cal, UCAL_DATE, &status));
42 if (U_FAILURE(status)) {
47 ucal_add(cal, UCAL_DATE, 1, &status);
48 if (U_FAILURE(status))
[all...]
/external/qemu/android/emulation/
H A DCpuAccelerator.cpp63 char status[256]; member in struct:android::__anon29111::GlobalState
81 // |*status| will be set to a small status string explaining the
82 // status of KVM on success or failure.
83 bool ProbeKVM(String *status) { argument
86 status->assign(
92 status->assign(
99 status->assign("Could not open /dev/kvm :");
100 status->append(strerror(errno));
107 status
164 ProbeHAX(String* status) argument
236 ProbeHAX(String* status) argument
309 String status; local
338 SetCurrentCpuAcceleratorForTesting(CpuAccelerator accel, const char* status) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dsdtfmtts.cpp28 UErrorCode status = U_ZERO_ERROR; local
30 Locale::setDefault(Locale::getEnglish(), status); local
31 if(U_FAILURE(status)) {
35 Locale::setDefault(saveLocale, status);
48 UErrorCode status = U_ZERO_ERROR; local
54 SimpleDateFormat def(status);
55 if(U_FAILURE(status)) {
60 status = U_ZERO_ERROR;
65 SimpleDateFormat pat(pattern, status);
66 if(U_FAILURE(status)) {
[all...]
H A Ddadrcal.cpp31 UErrorCode status = U_ZERO_ERROR; local
32 driver = TestDataModule::getTestDataModule("calendar", *this, status);
46 UErrorCode status= U_ZERO_ERROR; local
47 TestData *testData = driver->createTestData(index, status);
48 if (U_SUCCESS(status)) {
50 if (testData->getInfo(info, status)) {
51 log(info->getString("Description", status));
73 UErrorCode status = U_ZERO_ERROR; local
89 status);
90 if (U_FAILURE(status)) {
290 UErrorCode status = U_ZERO_ERROR; local
366 UErrorCode status = U_ZERO_ERROR; local
455 UErrorCode status = U_ZERO_ERROR; local
[all...]
H A Ditercoll.cpp23 static UErrorCode status = U_ZERO_ERROR; variable
29 en_us = (RuleBasedCollator *)Collator::createInstance(Locale::getUS(), status);
30 if(U_FAILURE(status)) {
33 errcheckln(status, "Collator creation failed with %s", u_errorName(status));
86 UErrorCode status = U_ZERO_ERROR; local
97 (UnicodeString)"&a,A < b,B < c,C, d,D < z,Z < ch,cH,Ch,CH", status);
99 if (c1 == NULL || U_FAILURE(status))
114 c2 = new RuleBasedCollator((UnicodeString)"&a < b < c/abd < d", status);
116 if (c2 == NULL || U_FAILURE(status))
176 UErrorCode status = U_ZERO_ERROR; local
231 UErrorCode status = U_ZERO_ERROR; local
296 UErrorCode status = U_ZERO_ERROR; local
337 UErrorCode status = U_ZERO_ERROR; local
405 UErrorCode status = U_ZERO_ERROR; local
485 UErrorCode status = U_ZERO_ERROR; local
542 UErrorCode status = U_ZERO_ERROR; local
587 UErrorCode status = U_ZERO_ERROR; local
602 UErrorCode status = U_ZERO_ERROR; local
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dsdtfmtts.cpp28 UErrorCode status = U_ZERO_ERROR; local
30 Locale::setDefault(Locale::getEnglish(), status); local
31 if(U_FAILURE(status)) {
35 Locale::setDefault(saveLocale, status);
48 UErrorCode status = U_ZERO_ERROR; local
54 SimpleDateFormat def(status);
55 if(U_FAILURE(status)) {
60 status = U_ZERO_ERROR;
65 SimpleDateFormat pat(pattern, status);
66 if(U_FAILURE(status)) {
[all...]
H A Ddadrcal.cpp31 UErrorCode status = U_ZERO_ERROR; local
32 driver = TestDataModule::getTestDataModule("calendar", *this, status);
46 UErrorCode status= U_ZERO_ERROR; local
47 TestData *testData = driver->createTestData(index, status);
48 if (U_SUCCESS(status)) {
50 if (testData->getInfo(info, status)) {
51 log(info->getString("Description", status));
73 UErrorCode status = U_ZERO_ERROR; local
89 status);
90 if (U_FAILURE(status)) {
290 UErrorCode status = U_ZERO_ERROR; local
366 UErrorCode status = U_ZERO_ERROR; local
455 UErrorCode status = U_ZERO_ERROR; local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextEncodingDetector.cpp45 UErrorCode status = U_ZERO_ERROR; local
46 UCharsetDetector* detector = ucsdet_open(&status);
47 if (U_FAILURE(status))
50 ucsdet_setText(detector, data, static_cast<int32_t>(length), &status);
51 if (U_FAILURE(status))
64 const UCharsetMatch** matches = ucsdet_detectAll(detector, &matchesCount, &status);
65 if (U_FAILURE(status)) {
83 int32_t confidence = ucsdet_getConfidence(matches[i], &status);
84 if (U_FAILURE(status)) {
85 status
[all...]
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dprscmnts.cpp37 UnicodeString replaceText, UErrorCode *status){
39 if(status == NULL || U_FAILURE(*status)){
45 RegexMatcher myMatcher(patString, src, options, *status);
46 if(U_FAILURE(*status)){
52 dest = myMatcher.replaceAll(replaceText,*status);
55 return dest.extract(source, srcLen, *status);
59 trim(UChar *src, int32_t srcLen, UErrorCode *status){ argument
60 srcLen = removeText(src, srcLen, "^[ \\r\\n]+ ", 0, "", status); // remove leading new lines
61 srcLen = removeText(src, srcLen, "^\\s+", 0, "", status); // remov
35 removeText(UChar *source, int32_t srcLen, UnicodeString patString,uint32_t options, UnicodeString replaceText, UErrorCode *status) argument
67 removeCmtText(UChar* source, int32_t srcLen, UErrorCode* status) argument
75 getText(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UnicodeString patternString, UErrorCode* status) argument
112 getDescription( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
136 getCount(const UChar* source, int32_t srcLen, UParseCommentsOption option, UErrorCode *status) argument
172 getAt(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, int32_t index, UParseCommentsOption option, UErrorCode* status) argument
213 getTranslate( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
223 getNote(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-70066.js37 var status;
38 with ({}) { status = delete value; }
39 return value + ":" + status;
52 var status = f(); variable
53 return value + ":" + status;
62 var status;
63 with ({}) { status = delete value; }
64 return value + ":" + status;
76 var status = f(); variable
77 return value + ":" + status;
98 var status = f(); variable
[all...]
/external/icu/icu4c/source/tools/genrb/
H A Dprscmnts.cpp47 UnicodeString replaceText, UErrorCode *status){
49 if(status == NULL || U_FAILURE(*status)){
55 RegexMatcher myMatcher(patString, src, options, *status);
56 if(U_FAILURE(*status)){
62 dest = myMatcher.replaceAll(replaceText,*status);
65 return dest.extract(source, srcLen, *status);
69 trim(UChar *src, int32_t srcLen, UErrorCode *status){ argument
70 srcLen = removeText(src, srcLen, UnicodeString("^[ \\r\\n]+ "), 0, UnicodeString(), status); // remove leading new lines
71 srcLen = removeText(src, srcLen, UnicodeString("^\\s+"), 0, UnicodeString(), status); // remov
45 removeText(UChar *source, int32_t srcLen, UnicodeString patString,uint32_t options, UnicodeString replaceText, UErrorCode *status) argument
77 removeCmtText(UChar* source, int32_t srcLen, UErrorCode* status) argument
85 getText(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UnicodeString patternString, UErrorCode* status) argument
122 getDescription( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
146 getCount(const UChar* source, int32_t srcLen, UParseCommentsOption option, UErrorCode *status) argument
183 getAt(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, int32_t index, UParseCommentsOption option, UErrorCode* status) argument
225 getTranslate( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
235 getNote(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
[all...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/kernel/
H A Dcrypto_kernel.c96 err_status_t status; local
109 status = err_reporting_init("crypto");
110 if (status)
111 return status;
114 status = crypto_kernel_load_debug_module(&mod_crypto_kernel);
115 if (status)
116 return status;
117 status = crypto_kernel_load_debug_module(&mod_auth);
118 if (status)
119 return status;
177 err_status_t status; local
254 err_status_t status; local
304 err_status_t status; local
374 err_status_t status; local
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcnumtst.c96 UErrorCode* status = &st; local
108 nf = unum_open(UNUM_DEFAULT, NULL, -1, NULL, NULL, status);
110 if(U_FAILURE(*status))
112 log_data_err("Error in unum_open() %s \n", myErrorName(*status));
118 a = unum_parseInt64(nf, text, size, 0, status);
122 if(!U_FAILURE(*status))
124 log_err("Error in unum_parseInt64(): %s \n", myErrorName(*status));
163 UErrorCode status=U_ZERO_ERROR; local
170 status = U_ZERO_ERROR;
172 def=unum_open(style, NULL,0,NULL, NULL,&status);
1046 UErrorCode status; local
1121 UErrorCode status; member in struct:__anon22043
1155 UErrorCode status = U_ZERO_ERROR; local
1178 UErrorCode status = U_ZERO_ERROR; local
1217 UErrorCode status = U_ZERO_ERROR; local
1257 UErrorCode status=U_ZERO_ERROR; local
1372 UErrorCode status = U_ZERO_ERROR; local
1508 UErrorCode status = U_ZERO_ERROR; local
1520 UErrorCode status = U_ZERO_ERROR; local
1561 UErrorCode status = U_ZERO_ERROR; local
1615 UErrorCode status = U_ZERO_ERROR; local
1628 UErrorCode status = U_ZERO_ERROR; local
1643 UErrorCode status = U_ZERO_ERROR; local
1666 UErrorCode status; local
1805 UErrorCode status = U_ZERO_ERROR; local
1844 UErrorCode status = U_ZERO_ERROR; local
1881 UErrorCode status = U_ZERO_ERROR; local
1909 UErrorCode status = U_ZERO_ERROR; local
1960 UErrorCode status = U_ZERO_ERROR; local
2023 UErrorCode status = U_ZERO_ERROR; local
2117 UErrorCode status = U_ZERO_ERROR; local
2192 UErrorCode status = U_ZERO_ERROR; local
2212 UErrorCode status = U_ZERO_ERROR; local
2258 UErrorCode status = U_ZERO_ERROR; local
2330 UErrorCode status; local
2428 UErrorCode status = U_ZERO_ERROR; local
2480 UErrorCode status = U_ZERO_ERROR; local
[all...]
H A Dcitertst.c65 UErrorCode status = U_ZERO_ERROR; local
75 UCollator *coll = ucol_open(LOCALES[i], &status);
77 &status);
79 &status);
80 if (U_FAILURE(status)) {
81 log_err_status(status, "ERROR: in creation of either the collator or the collation iterator :%s\n",
82 myErrorName(status));
88 while (ucol_next(pitr, &status) != UCOL_NULLORDER &&
89 U_SUCCESS(status)) {
91 if (U_FAILURE(status)) {
138 UErrorCode status = U_ZERO_ERROR; local
221 UErrorCode status = U_ZERO_ERROR; local
287 UErrorCode status = U_ZERO_ERROR; local
348 UErrorCode status = U_ZERO_ERROR; local
424 UErrorCode status = U_ZERO_ERROR; local
559 UErrorCode status= U_ZERO_ERROR; local
705 UErrorCode status = U_ZERO_ERROR; local
777 UErrorCode status = U_ZERO_ERROR; local
912 UErrorCode status = U_ZERO_ERROR; local
935 UErrorCode status = U_ZERO_ERROR; local
1044 UErrorCode status = U_ZERO_ERROR; local
1187 UErrorCode status = U_ZERO_ERROR; local
[all...]
/external/libnfc-nxp/src/
H A DphHciNfc_Pipe.c150 NFCSTATUS status = NFCSTATUS_SUCCESS; local
173 status = phHciNfc_Send_Admin_Cmd( psHciContext, pHwRef,
180 status = PHNFCSTVAL(CID_NFC_HCI, NFCSTATUS_INSUFFICIENT_RESOURCES);
182 return status;
195 NFCSTATUS status = NFCSTATUS_SUCCESS; local
203 status = phHciNfc_Allocate_Resource((void **)&p_pipe_info,
206 if( (NFCSTATUS_SUCCESS == status)
224 status = phHciNfc_Create_All_Pipes(psHciContext,
227 if( NFCSTATUS_SUCCESS == status )
230 status
287 NFCSTATUS status=NFCSTATUS_SUCCESS; local
317 NFCSTATUS status = NFCSTATUS_SUCCESS; local
435 NFCSTATUS status = NFCSTATUS_SUCCESS; local
744 NFCSTATUS status = NFCSTATUS_SUCCESS; local
788 NFCSTATUS status = NFCSTATUS_SUCCESS; local
1053 NFCSTATUS status = NFCSTATUS_SUCCESS; local
1096 NFCSTATUS status = NFCSTATUS_SUCCESS; local
[all...]
/external/chromium_org/content/browser/battery_status/
H A Dbattery_status_manager_win_unittest.cc19 blink::WebBatteryStatus status = ComputeWebBatteryStatus(win_status); local
20 EXPECT_FALSE(status.charging);
21 EXPECT_EQ(std::numeric_limits<double>::infinity(), status.chargingTime);
22 EXPECT_EQ(200, status.dischargingTime);
23 EXPECT_EQ(1, status.level);
32 blink::WebBatteryStatus status = ComputeWebBatteryStatus(win_status); local
33 EXPECT_FALSE(status.charging);
34 EXPECT_EQ(std::numeric_limits<double>::infinity(), status.chargingTime);
35 EXPECT_EQ(std::numeric_limits<double>::infinity(), status.dischargingTime);
36 EXPECT_EQ(1, status
45 blink::WebBatteryStatus status = ComputeWebBatteryStatus(win_status); local
58 blink::WebBatteryStatus status = ComputeWebBatteryStatus(win_status); local
71 blink::WebBatteryStatus status = ComputeWebBatteryStatus(win_status); local
[all...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/test/
H A Dkernel_driver.c61 err_status_t status; local
67 status = crypto_kernel_init();
68 if (status) {
84 status = crypto_kernel_set_debug_module(optarg, 1);
85 if (status) {
96 printf("checking crypto_kernel status...\n");
97 status = crypto_kernel_status();
98 if (status) {
105 status = crypto_kernel_shutdown();
106 if (status) {
[all...]
/external/srtp/crypto/test/
H A Dkernel_driver.c61 err_status_t status; local
67 status = crypto_kernel_init();
68 if (status) {
84 status = crypto_kernel_set_debug_module(optarg, 1);
85 if (status) {
96 printf("checking crypto_kernel status...\n");
97 status = crypto_kernel_status();
98 if (status) {
105 status = crypto_kernel_shutdown();
106 if (status) {
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dservls.cpp45 ICULocaleService::get(const Locale& locale, UErrorCode& status) const
47 return get(locale, LocaleKey::KIND_ANY, NULL, status);
51 ICULocaleService::get(const Locale& locale, int32_t kind, UErrorCode& status) const
53 return get(locale, kind, NULL, status);
57 ICULocaleService::get(const Locale& locale, Locale* actualReturn, UErrorCode& status) const
59 return get(locale, LocaleKey::KIND_ANY, actualReturn, status);
63 ICULocaleService::get(const Locale& locale, int32_t kind, Locale* actualReturn, UErrorCode& status) const
66 if (U_FAILURE(status)) {
72 status = U_MEMORY_ALLOCATION_ERROR;
74 ICUServiceKey* key = createKey(&locName, kind, status);
95 registerInstance(UObject* objToAdopt, const UnicodeString& locale, UBool visible, UErrorCode& status) argument
105 registerInstance(UObject* objToAdopt, const Locale& locale, UErrorCode& status) argument
111 registerInstance(UObject* objToAdopt, const Locale& locale, int32_t kind, UErrorCode& status) argument
117 registerInstance(UObject* objToAdopt, const Locale& locale, int32_t kind, int32_t coverage, UErrorCode& status) argument
162 ServiceEnumeration(const ICULocaleService* service, UErrorCode &status) argument
171 ServiceEnumeration(const ServiceEnumeration &other, UErrorCode &status) argument
193 UErrorCode status = U_ZERO_ERROR; local
205 UErrorCode status = U_ZERO_ERROR; local
228 snext(UErrorCode& status) argument
235 reset(UErrorCode& status) argument
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcnumtst.c90 UErrorCode* status = &st; local
102 nf = unum_open(UNUM_DEFAULT, NULL, -1, NULL, NULL, status);
104 if(U_FAILURE(*status))
106 log_data_err("Error in unum_open() %s \n", myErrorName(*status));
112 a = unum_parseInt64(nf, text, size, 0, status);
116 if(!U_FAILURE(*status))
118 log_err("Error in unum_parseInt64(): %s \n", myErrorName(*status));
157 UErrorCode status=U_ZERO_ERROR; local
164 status = U_ZERO_ERROR;
166 def=unum_open(style, NULL,0,NULL, NULL,&status);
1040 UErrorCode status; local
1118 UErrorCode status; member in struct:__anon12244
1152 UErrorCode status = U_ZERO_ERROR; local
1175 UErrorCode status = U_ZERO_ERROR; local
1214 UErrorCode status = U_ZERO_ERROR; local
1254 UErrorCode status=U_ZERO_ERROR; local
1369 UErrorCode status = U_ZERO_ERROR; local
1505 UErrorCode status = U_ZERO_ERROR; local
1517 UErrorCode status = U_ZERO_ERROR; local
1558 UErrorCode status = U_ZERO_ERROR; local
1612 UErrorCode status = U_ZERO_ERROR; local
1625 UErrorCode status = U_ZERO_ERROR; local
1640 UErrorCode status = U_ZERO_ERROR; local
1663 UErrorCode status; local
1802 UErrorCode status = U_ZERO_ERROR; local
1841 UErrorCode status = U_ZERO_ERROR; local
1878 UErrorCode status = U_ZERO_ERROR; local
1906 UErrorCode status = U_ZERO_ERROR; local
1957 UErrorCode status = U_ZERO_ERROR; local
2020 UErrorCode status = U_ZERO_ERROR; local
2114 UErrorCode status = U_ZERO_ERROR; local
2189 UErrorCode status = U_ZERO_ERROR; local
2209 UErrorCode status = U_ZERO_ERROR; local
2255 UErrorCode status = U_ZERO_ERROR; local
2327 UErrorCode status; local
[all...]

Completed in 494 milliseconds

1234567891011>>