Searched refs:tm (Results 101 - 125 of 545) sorted by relevance

1234567891011>>

/external/libcxx/test/localization/locale.categories/category.time/locale.time.get.byname/
H A Dget_time.pass.cpp16 // ios_base::iostate& err, tm* t) const;
40 std::tm t;
45 t = std::tm();
57 t = std::tm();
69 t = std::tm();
81 t = std::tm();
H A Dget_time_wide.pass.cpp16 // ios_base::iostate& err, tm* t) const;
40 std::tm t;
45 t = std::tm();
57 t = std::tm();
69 t = std::tm();
81 t = std::tm();
H A Dget_weekday.pass.cpp16 // ios_base::iostate& err, tm* t) const;
40 std::tm t;
45 t = std::tm();
55 t = std::tm();
67 t = std::tm();
77 t = std::tm();
H A Dget_weekday_wide.pass.cpp16 // ios_base::iostate& err, tm* t) const;
40 std::tm t;
45 t = std::tm();
55 t = std::tm();
65 t = std::tm();
75 t = std::tm();
H A Dget_year.pass.cpp15 // ios_base::iostate& err, tm* t) const;
39 std::tm t;
44 t = std::tm();
54 t = std::tm();
64 t = std::tm();
74 t = std::tm();
H A Dget_year_wide.pass.cpp15 // ios_base::iostate& err, tm* t) const;
39 std::tm t;
44 t = std::tm();
54 t = std::tm();
64 t = std::tm();
74 t = std::tm();
H A Dget_one.pass.cpp15 // ios_base::iostate& err, tm *t, char format, char modifier = 0) const;
39 std::tm t;
44 t = std::tm();
60 t = std::tm();
72 t = std::tm();
88 t = std::tm();
107 t = std::tm();
123 t = std::tm();
136 t = std::tm();
152 t = std::tm();
[all...]
H A Dget_one_wide.pass.cpp15 // ios_base::iostate& err, tm *t, char format, char modifier = 0) const;
39 std::tm t;
44 t = std::tm();
60 t = std::tm();
72 t = std::tm();
88 t = std::tm();
106 t = std::tm();
123 t = std::tm();
137 t = std::tm();
154 t = std::tm();
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
H A Dbnspeed.c186 double tm; local
200 tm=Time_F(STOP);
201 printf("mul %4d x %4d -> %8.3fms\n",sizes[i],sizes[j],tm*1000.0/num);
213 tm=Time_F(STOP);
214 printf("sqr %4d x %4d -> %8.3fms\n",sizes[i],sizes[i],tm*1000.0/num);
228 tm=Time_F(STOP);
229 printf("div %4d / %4d -> %8.3fms\n",sizes[j],sizes[i]-1,tm*1000.0/num);
/external/chromium_org/third_party/skia/gm/
H A DgradientDirtyLaundry.cpp38 static SkShader* MakeLinear(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
39 return SkGradientShader::CreateLinear(pts, data.fColors, data.fPos, data.fCount, tm);
42 static SkShader* MakeRadial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
47 data.fPos, data.fCount, tm);
58 typedef SkShader* (*GradMaker)(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm);
84 SkShader::TileMode tm = SkShader::kClamp_TileMode; variable
93 SkShader* shader = gGradMakers[j](pts, gGradData[i], tm);
/external/libcxx/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/
H A Dget_one.pass.cpp15 // ios_base::iostate& err, tm *t, char format, char modifier = 0) const;
38 std::tm t;
42 t = std::tm();
51 t = std::tm();
60 t = std::tm();
69 t = std::tm();
78 t = std::tm();
93 t = std::tm();
102 t = std::tm();
113 t = std::tm();
[all...]
/external/openssl/crypto/bn/
H A Dbnspeed.c186 double tm; local
200 tm=Time_F(STOP);
201 printf("mul %4d x %4d -> %8.3fms\n",sizes[i],sizes[j],tm*1000.0/num);
213 tm=Time_F(STOP);
214 printf("sqr %4d x %4d -> %8.3fms\n",sizes[i],sizes[i],tm*1000.0/num);
228 tm=Time_F(STOP);
229 printf("div %4d / %4d -> %8.3fms\n",sizes[j],sizes[i]-1,tm*1000.0/num);
/external/qemu/android/
H A Diolooper-select.c173 struct timeval tm0, *tm = NULL; local
181 tm = NULL;
183 tm = &tm0;
184 tm->tv_sec = duration / 1000;
185 tm->tv_usec = (duration - 1000*tm->tv_sec) * 1000;
194 ret = select( count, iol->reads_result, iol->writes_result, &errs, tm);
/external/skia/gm/
H A DgradientDirtyLaundry.cpp38 static SkShader* MakeLinear(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
39 return SkGradientShader::CreateLinear(pts, data.fColors, data.fPos, data.fCount, tm);
42 static SkShader* MakeRadial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
47 data.fPos, data.fCount, tm);
58 typedef SkShader* (*GradMaker)(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm);
84 SkShader::TileMode tm = SkShader::kClamp_TileMode; variable
93 SkShader* shader = gGradMakers[j](pts, gGradData[i], tm);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_unix.c104 struct tm tm, *tm1; local
113 memset(&tm, 0, sizeof(tm));
114 tm.tm_year = year - 1900;
115 tm.tm_mon = month - 1;
116 tm.tm_mday = day;
117 tm.tm_hour = hour;
118 tm.tm_min = min;
119 tm
141 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dos_unix.c104 struct tm tm, *tm1; local
113 memset(&tm, 0, sizeof(tm));
114 tm.tm_year = year - 1900;
115 tm.tm_mon = month - 1;
116 tm.tm_mday = day;
117 tm.tm_hour = hour;
118 tm.tm_min = min;
119 tm
141 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_unix.c104 struct tm tm, *tm1; local
113 memset(&tm, 0, sizeof(tm));
114 tm.tm_year = year - 1900;
115 tm.tm_mon = month - 1;
116 tm.tm_mday = day;
117 tm.tm_hour = hour;
118 tm.tm_min = min;
119 tm
141 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
/external/chromium_org/third_party/skia/include/gpu/
H A DGrTextureAccess.h80 void setTileModeX(const SkShader::TileMode tm) { fTileModes[0] = tm; } argument
81 void setTileModeY(const SkShader::TileMode tm) { fTileModes[1] = tm; } argument
82 void setTileModeXAndY(const SkShader::TileMode tm) { fTileModes[0] = fTileModes[1] = tm; } argument
/external/skia/include/gpu/
H A DGrTextureAccess.h80 void setTileModeX(const SkShader::TileMode tm) { fTileModes[0] = tm; } argument
81 void setTileModeY(const SkShader::TileMode tm) { fTileModes[1] = tm; } argument
82 void setTileModeXAndY(const SkShader::TileMode tm) { fTileModes[0] = fTileModes[1] = tm; } argument
/external/bluetooth/bluedroid/main/
H A Dbte_logmsg.c231 struct tm *tm; local
236 tm = localtime(&t);
238 sprintf(buffer, "%02d:%02d:%02d.%03d ", tm->tm_hour, tm->tm_min, tm->tm_sec,
283 struct tm *tm; local
290 tm = localtime(&t);
292 sprintf(buffer, "%02d:%02d:%02d.%03ld ", tm
[all...]
/external/chromium_org/third_party/skia/samplecode/
H A DSampleRepeatTile.cpp36 static void make_paint(SkPaint* paint, SkShader::TileMode tm) { argument
40 SkShader* shader = SkShader::CreateBitmapShader(bm, tm, tm);
/external/skia/samplecode/
H A DSampleRepeatTile.cpp36 static void make_paint(SkPaint* paint, SkShader::TileMode tm) { argument
40 SkShader* shader = SkShader::CreateBitmapShader(bm, tm, tm);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILIntrinsicInfo.h35 AMDGPUIntrinsicInfo(TargetMachine *tm);
H A DR600RegisterInfo.h30 R600RegisterInfo(AMDGPUTargetMachine &tm, const TargetInstrInfo &tii);
H A DSIAssignInterpRegs.cpp42 SIAssignInterpRegsPass(TargetMachine &tm) : argument
43 MachineFunctionPass(ID), TM(tm) { }
63 FunctionPass *llvm::createSIAssignInterpRegsPass(TargetMachine &tm) { argument
64 return new SIAssignInterpRegsPass(tm);

Completed in 478 milliseconds

1234567891011>>