Searched defs:tm (Results 176 - 200 of 263) sorted by relevance

1234567891011

/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlvm.c113 const TValue *tm; local
118 (tm = fasttm(L, h->metatable, TM_INDEX)) == NULL) { /* or no TM? */
124 else if (ttisnil(tm = luaT_gettmbyobj(L, t, TM_INDEX)))
126 if (ttisfunction(tm)) {
127 callTM(L, tm, t, key, val, 1);
130 t = tm; /* else repeat with 'tm' */
139 const TValue *tm; local
147 ((tm = fasttm(L, h->metatable, TM_NEWINDEX)) == NULL &&
162 if (ttisnil(tm
177 const TValue *tm = luaT_gettmbyobj(L, p1, event); /* try first operand */ local
261 const TValue *tm; local
336 const TValue *tm; local
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Ducm.c916 UCMapping *tm; local
1003 tm=table->mappings+table->mappingsLength++;
1004 uprv_memcpy(tm, m, sizeof(UCMapping));
/external/iproute2/tc/
H A Dm_ipt.c604 struct tcf_t *tm = RTA_DATA(tb[TCA_IPT_TM]); local
605 print_tm(f,tm);
/external/llvm/lib/CodeGen/
H A DRegAllocPBQP.cpp125 const TargetMachine *tm; member in class:__anon25793::RegAllocPBQP
319 const TargetMachine &tm = mf->getTarget(); local
320 CoalescerPair cp(*tm.getRegisterInfo());
534 tm = &mf->getTarget();
535 tri = tm->getRegisterInfo();
536 tii = tm->getInstrInfo();
H A DTargetLoweringBase.cpp669 TargetLoweringBase::TargetLoweringBase(const TargetMachine &tm, argument
671 : TM(tm), DL(TM.getDataLayout()), TLOF(*tlof) {
/external/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp137 JIT::JIT(Module *M, TargetMachine &tm, TargetJITInfo &tji, argument
139 : ExecutionEngine(M), TM(tm), TJI(tji),
/external/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp169 Filler(TargetMachine &tm) argument
170 : MachineFunctionPass(ID), TM(tm) { }
529 FunctionPass *llvm::createMipsDelaySlotFillerPass(MipsTargetMachine &tm) { argument
530 return new Filler(tm);
H A DMipsSEInstrInfo.cpp27 MipsSEInstrInfo::MipsSEInstrInfo(MipsTargetMachine &tm) argument
28 : MipsInstrInfo(tm,
29 tm.getRelocationModel() == Reloc::PIC_ ? Mips::B : Mips::J),
30 RI(*tm.getSubtargetImpl()),
31 IsN64(tm.getSubtarget<MipsSubtarget>().isABI_N64()) {}
/external/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp1120 static AsmPrinter *createPPCAsmPrinterPass(TargetMachine &tm, argument
1122 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1125 return new PPCDarwinAsmPrinter(tm, Streamer);
1126 return new PPCLinuxAsmPrinter(tm, Streamer);
/external/llvm/lib/Target/R600/
H A DR600ControlFlowFinalizer.cpp472 R600ControlFlowFinalizer(TargetMachine &tm) : MachineFunctionPass(ID), argument
474 ST(tm.getSubtarget<AMDGPUSubtarget>()) {
475 const AMDGPUSubtarget &ST = tm.getSubtarget<AMDGPUSubtarget>();
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_utils.cpp235 CFX_AffineMatrix tm; local
237 return tm;
245 tm.Set(f[0], f[1], f[2], f[3], f[4], f[5]);
247 return tm;
/external/qemu/hw/timer/
H A Dmc146818rtc.c68 struct tm current_tm;
287 struct tm *tm = &s->current_tm; local
289 tm->tm_sec = rtc_from_bcd(s, s->cmos_data[RTC_SECONDS]);
290 tm->tm_min = rtc_from_bcd(s, s->cmos_data[RTC_MINUTES]);
291 tm->tm_hour = rtc_from_bcd(s, s->cmos_data[RTC_HOURS] & 0x7f);
294 tm->tm_hour += 12;
296 tm->tm_wday = rtc_from_bcd(s, s->cmos_data[RTC_DAY_OF_WEEK]) - 1;
297 tm->tm_mday = rtc_from_bcd(s, s->cmos_data[RTC_DAY_OF_MONTH]);
298 tm
304 const struct tm *tm = &s->current_tm; local
345 rtc_next_second(struct tm *tm) argument
485 rtc_set_date(RTCState *s, const struct tm *tm) argument
497 struct tm tm; local
[all...]
/external/qemu/util/
H A Dcutils.c131 time_t mktimegm(struct tm *tm) argument
134 int y = tm->tm_year + 1900, m = tm->tm_mon + 1, d = tm->tm_mday;
141 t += 3600 * tm->tm_hour + 60 * tm->tm_min + tm->tm_sec;
/external/skia/src/effects/gradients/
H A DSkLinearGradient.cpp486 SkShader::TileMode tm) {
487 AutoEffectUnref effect(SkNEW_ARGS(GrLinearGradient, (ctx, shader, matrix, tm)));
504 SkShader::TileMode tm)
505 : INHERITED(ctx, shader, matrix, tm) { }
525 SkShader::TileMode tm; local
526 int colorCount = RandomGradientParams(random, colors, &stops, &tm);
529 tm));
483 Create(GrContext* ctx, const SkLinearGradient& shader, const SkMatrix& matrix, SkShader::TileMode tm) argument
501 GrLinearGradient(GrContext* ctx, const SkLinearGradient& shader, const SkMatrix& matrix, SkShader::TileMode tm) argument
H A DSkRadialGradient.cpp495 SkShader::TileMode tm) {
496 AutoEffectUnref effect(SkNEW_ARGS(GrRadialGradient, (ctx, shader, matrix, tm)));
513 SkShader::TileMode tm)
514 : INHERITED(ctx, shader, matrix, tm) {
536 SkShader::TileMode tm; local
537 int colorCount = RandomGradientParams(random, colors, &stops, &tm);
540 tm));
492 Create(GrContext* ctx, const SkRadialGradient& shader, const SkMatrix& matrix, SkShader::TileMode tm) argument
510 GrRadialGradient(GrContext* ctx, const SkRadialGradient& shader, const SkMatrix& matrix, SkShader::TileMode tm) argument
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_internal.c58 struct tm tm; local
65 os_memset(&tm, 0, sizeof(tm));
66 tm.tm_year = year - 1900;
67 tm.tm_mon = month - 1;
68 tm.tm_mday = day;
69 tm.tm_hour = hour;
70 tm.tm_min = min;
71 tm
78 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
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_internal.c58 struct tm tm; local
65 os_memset(&tm, 0, sizeof(tm));
66 tm.tm_year = year - 1900;
67 tm.tm_mon = month - 1;
68 tm.tm_mday = day;
69 tm.tm_hour = hour;
70 tm.tm_min = min;
71 tm
78 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
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_internal.c58 struct tm tm; local
65 os_memset(&tm, 0, sizeof(tm));
66 tm.tm_year = year - 1900;
67 tm.tm_mon = month - 1;
68 tm.tm_mday = day;
69 tm.tm_hour = hour;
70 tm.tm_min = min;
71 tm
78 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
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/sync/protocol/
H A Dproto_value_conversions.cc88 base::StringValue* MakeTimestampValue(int64 tm) { argument
90 base::TimeFormatShortDateAndTime(syncer::ProtoTimeToTime(tm)));
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dzdump.c20 #include "time.h" /* for struct tm */
164 static char * abbr(struct tm * tmp);
166 static long delta(struct tm * newp, struct tm * oldp);
167 static void dumptime(const struct tm * tmp);
189 static struct tm *
193 register struct tm * tmp;
197 struct tm tm; local
200 tm
289 struct tm tm; local
679 struct tm tm; local
877 struct tm tm; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILPeepholeOptimizer.cpp44 AMDGPUPeepholeOpt(TargetMachine &tm);
156 createAMDGPUPeepholeOpt(TargetMachine &tm) argument
158 return new AMDGPUPeepholeOpt(tm);
162 AMDGPUPeepholeOpt::AMDGPUPeepholeOpt(TargetMachine &tm) argument
163 : FunctionPass(ID), TM(tm)
/external/chromium_org/third_party/skia/samplecode/
H A DSampleSlides.cpp181 static SkShader* MakeLinear(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
182 return SkGradientShader::CreateLinear(pts, data.fColors, data.fPos, data.fCount, tm);
185 static SkShader* MakeRadial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
190 data.fPos, data.fCount, tm);
193 static SkShader* MakeSweep(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
200 static SkShader* Make2Radial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
209 data.fColors, data.fPos, data.fCount, tm);
212 typedef SkShader* (*GradMaker)(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm);
222 SkShader::TileMode tm = SkShader::kClamp_TileMode; local
232 SkShader* shader = gGradMakers[j](pts, gGradData[i], tm);
[all...]

Completed in 1078 milliseconds

1234567891011