Searched refs:dt (Results 126 - 150 of 344) sorted by relevance

1234567891011>>

/external/skia/src/shaders/gradients/
H A DSk4fGradientBase.cpp71 const SkScalar dt = fAdvance * SK_Scalar1 / (fShader.fColorCount - 1); local
80 const SkScalar currPos = prevPos + dt;
131 const auto dt = t1 - t0; local
134 SkASSERT(SkScalarIsFinite(dt) || (c0 == c1).allTrue());
136 const Sk4f dc = SkScalarIsFinite(dt) ? (c1 - c0) / dt : 0;
/external/skia/tests/
H A DGeometryTest.cpp55 const SkScalar dt = SK_Scalar1 / 128; local
56 SkScalar t = dt;
68 t += dt;
98 const SkScalar dt = SK_Scalar1 / 128; local
99 SkScalar t = dt;
103 t += dt;
/external/deqp/modules/gles3/scripts/
H A Dgen-swizzle-math-operations.py55 def getDataTypeScalarSize (dt):
63 }[dt]
H A Dgen-swizzles.py74 def getDataTypeScalarSize (dt):
91 }[dt]
/external/eigen/unsupported/test/
H A Dautodiff.cpp125 void operator() (const T1 &input, T2 *output, const Scalar dt) const
130 o[0] = input[0] + input[1] * dt * _gain;
136 void operator() (const T1 &input, T2 *output, T3 *jacobian, const Scalar dt) const
141 o[0] = input[0] + input[1] * dt * _gain;
149 j(0, 1) = dt * _gain;
168 const Scalar dt = internal::random<double>(); local
172 f(x, &yref, &jref, dt);
180 autoj(x, &y, &j, dt);
/external/libvncserver/webclients/novnc/include/
H A Djsunzip.js278 this.build_fixed_trees = function(lt, dt)
295 for (i = 0; i < 5; ++i) dt.table[i] = 0;
297 dt.table[5] = 32;
299 for (i = 0; i < 32; ++i) dt.trans[i] = i;
405 this.decode_trees = function(d, lt, dt)
475 this.build_tree(dt, lengths, hlit, hdist);
483 this.inflate_block_data = function(d, lt, dt)
513 dist = this.decode_symbol(d, dt);
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/tirpc_svc_8/
H A Dtirpc_svc_8.c116 char *pingProc(int *dt) argument
118 //Makes a + b * c from structure dt and returns double
121 result = *dt;
122 //printf("Received : %lf, %lf, %lf\n", dt->a, dt->b, dt->c);
/external/markdown/markdown/extensions/
H A Ddef_list.py65 dt = etree.SubElement(dl, 'dt')
66 dt.text = term
/external/r8/tools/
H A Dtest_framework.py98 dt = time.time() - t0
110 .format(args.name, 1000.0 * dt))
/external/toybox/toys/posix/
H A Dps.c883 struct dirtree *dt; local
909 if (new->child) for (dt = new->child->child; dt; dt = dt->next) {
910 tb = (void *)dt->extra;
918 dt = new->child;
920 while (dt->child) {
921 new = dt->child->next;
922 TT.show_process((void *)dt
1114 collate_leaves(struct carveup **tb, struct dirtree *dt) argument
1128 collate(int count, struct dirtree *dt) argument
1176 struct dirtree *dt; local
1365 struct dirtree *dt; local
[all...]
/external/ImageMagick/www/api/
H A Dmorphology.php100 <dt>kernel_string</dt>
125 <dt>type</dt>
129 <dt>args</dt>
295 <dt>kernel</dt>
317 <dt>kernel</dt>
[all...]
/external/mesa3d/src/gallium/winsys/virgl/vtest/
H A Dvirgl_vtest_winsys.c122 if (res->dt)
123 vtws->sws->displaytarget_destroy(vtws->sws, res->dt);
227 res->dt = vtws->sws->displaytarget_create(vtws->sws, bind, format,
264 if (res->dt) {
265 return vtws->sws->displaytarget_map(vtws->sws, res->dt, 0);
279 if (res->dt)
280 vtws->sws->displaytarget_unmap(vtws->sws, res->dt);
583 if (!res->dt)
602 map = vtws->sws->displaytarget_map(vtws->sws, res->dt, 0);
609 vtws->sws->displaytarget_unmap(vtws->sws, res->dt);
[all...]
/external/walt/pywalt/pywalt/
H A Dwalt.py132 dt = (t1 - t0)
133 log('sndrcv(): round trip %.3fms, reply=%s' % (dt / MS, reply.strip()))
134 return dt, reply
137 dt, s = self.sndrcv(Walt.CMD_GSHOCK)
155 dt, _ = self.sndrcv(Walt.CMD_TIME_NOW)
156 times[i] = dt
186 dt, _ = self.sndrcv(Walt.CMD_SYNC_ZERO)
187 if dt < max_delay:
188 print('Clock zeroed at %.0f (rt %.3f ms)' % (t0, dt / MS))
190 self.max_lag = dt
[all...]
/external/libchrome/base/time/
H A Dtime.cc163 Time Time::FromDoubleT(double dt) { argument
164 if (dt == 0 || std::isnan(dt))
166 return Time(kTimeTToMicrosecondsOffset) + TimeDelta::FromSecondsD(dt);
/external/skia/src/utils/
H A DSkInterpolator.cpp253 Dot14 dt = Dot14_HALF; local
255 dt >>= 1;
258 t -= dt;
260 t += dt;
/external/vixl/src/aarch32/
H A Dmacro-assembler-aarch32.cc1611 DataType dt,
1616 if (operand.IsImmediate() && dt.Is(F32)) {
1635 Assembler::Delegate(type, instruction, cond, dt, rd, operand);
1642 DataType dt,
1649 switch (dt.GetValue()) {
1735 VIXL_ASSERT(!dt.Is(I8)); // I8 cases should have been handled already.
1736 if ((dt.Is(I16) || dt.Is(I32)) && neon_imm.CanConvert<uint32_t>()) {
1746 switch (dt.GetValue()) {
1760 if (dt
1608 Delegate(InstructionType type, InstructionCondDtSSop instruction, Condition cond, DataType dt, SRegister rd, const SOperand& operand) argument
1639 Delegate(InstructionType type, InstructionCondDtDDop instruction, Condition cond, DataType dt, DRegister rd, const DOperand& operand) argument
1785 Delegate(InstructionType type, InstructionCondDtQQop instruction, Condition cond, DataType dt, QRegister rd, const QOperand& operand) argument
2387 Delegate(InstructionType type, InstructionCondDtSMop instruction, Condition cond, DataType dt, SRegister rd, const MemOperand& operand) argument
2460 Delegate(InstructionType type, InstructionCondDtDMop instruction, Condition cond, DataType dt, DRegister rd, const MemOperand& operand) argument
2555 Delegate(InstructionType type, InstructionCondDtDL instruction, Condition cond, DataType dt, DRegister rd, Label* label) argument
2578 Delegate(InstructionType type, InstructionCondDtSL instruction, Condition cond, DataType dt, SRegister rd, Label* label) argument
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/cldr/
H A DTestCLDRVsICU.java468 SimpleDateFormat dt = getDateFormat(locale, dateFormat, timeFormat);
469 dt.setTimeZone(utc);
470 String temp = dt.format(date).trim();
489 DateFormat dt;
491 dt = DateFormat.getTimeInstance(DateFormatValues[timeFormat], locale);
495 dt = DateFormat.getDateInstance(DateFormatValues[dateFormat], locale);
499 dt = DateFormat.getDateTimeInstance(DateFormatValues[dateFormat], DateFormatValues[timeFormat],
505 logln("\tinput:\t" + dateFormat + ", " + timeFormat + " => " + ((SimpleDateFormat) dt).toPattern());
506 return (SimpleDateFormat) dt;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/cldr/
H A DTestCLDRVsICU.java467 SimpleDateFormat dt = getDateFormat(locale, dateFormat, timeFormat);
468 dt.setTimeZone(utc);
469 String temp = dt.format(date).trim();
488 DateFormat dt;
490 dt = DateFormat.getTimeInstance(DateFormatValues[timeFormat], locale);
494 dt = DateFormat.getDateInstance(DateFormatValues[dateFormat], locale);
498 dt = DateFormat.getDateTimeInstance(DateFormatValues[dateFormat], DateFormatValues[timeFormat],
504 logln("\tinput:\t" + dateFormat + ", " + timeFormat + " => " + ((SimpleDateFormat) dt).toPattern());
505 return (SimpleDateFormat) dt;
/external/libnl/doc/stylesheets/
H A Ddocbook-xsl.css158 div.glossary dt {
170 dt {
174 dt span.term {
217 div.toc dl, div.toc dt,
218 div.list-of-figures dl, div.list-of-figures dt,
219 div.list-of-tables dl, div.list-of-tables dt,
220 div.indexdiv dl, div.indexdiv dt
/external/pdfium/fpdfsdk/javascript/
H A DJS_Value.cpp633 int JS_GetYearFromTime(double dt) { argument
634 return _YearFromTime(dt);
637 int JS_GetMonthFromTime(double dt) { argument
638 return _MonthFromTime(dt);
641 int JS_GetDayFromTime(double dt) { argument
642 return _DateFromTime(dt);
645 int JS_GetHourFromTime(double dt) { argument
646 return (int)_Mod(floor(dt / (60 * 60 * 1000)), 24);
649 int JS_GetMinFromTime(double dt) { argument
650 return (int)_Mod(floor(dt / (6
653 JS_GetSecFromTime(double dt) argument
701 double dt = _toInteger(nDate); local
[all...]
/external/skia/samplecode/
H A DSamplePatch.cpp72 SkScalar dt = SK_Scalar1 / segs; local
76 t += dt;
166 const SkScalar dt = SK_Scalar1 * fH / nv; local
177 tex[i*2 + 1].set(s, t + dt);
179 colors[i*2 + 1] = make_color(s/fW, (t + dt)/fH);
182 t += dt;
H A DSampleSVGPong.cpp182 SkScalar dt = (timer.msec() - fLastTick) * fTimeScale; variable
185 fPaddle0.posTick(dt);
186 fPaddle1.posTick(dt);
187 fBall.posTick(dt);
213 void posTick(SkScalar dt) { argument
214 pos += spd * dt;
/external/bzip2/
H A Dbzip.css19 dt { color: #336699; font-weight: bold }
/external/deqp/modules/gles2/scripts/
H A Dgen-swizzles.py74 def getDataTypeScalarSize (dt):
91 }[dt]
/external/dng_sdk/source/
H A Ddng_parse_utils.h134 void DumpDateTime (const dng_date_time &dt);
226 dng_date_time &dt);

Completed in 1253 milliseconds

1234567891011>>