Home
last modified time | relevance | path

Searched refs:tval (Results 1 – 25 of 55) sorted by relevance

123

/external/llvm/lib/Target/Hexagon/
DHexagonSelectCCInfo.td14 def : Pat <(i32 (selectcc IntRegs:$lhs, IntRegs:$rhs, IntRegs:$tval,
17 IntRegs:$tval, IntRegs:$fval))>;
19 def : Pat <(i32 (selectcc IntRegs:$lhs, IntRegs:$rhs, IntRegs:$tval,
22 IntRegs:$tval, IntRegs:$fval))>;
24 def : Pat <(i32 (selectcc IntRegs:$lhs, IntRegs:$rhs, IntRegs:$tval,
27 IntRegs:$tval, IntRegs:$fval))>;
29 def : Pat <(i32 (selectcc IntRegs:$lhs, IntRegs:$rhs, IntRegs:$tval,
32 IntRegs:$tval, IntRegs:$fval))>;
36 def : Pat <(i32 (selectcc IntRegs:$lhs, IntRegs:$rhs, IntRegs:$tval,
40 IntRegs:$tval, IntRegs:$fval))>;
[all …]
/external/tcpdump/
Dprint-lldp.c653 u_int tval; in lldp_private_8021_print() local
712 tval=*(tptr+4); in lldp_private_8021_print()
717 ND_PRINT((ndo, "%-2d ", (tval >> i) & 0x01)); in lldp_private_8021_print()
718 tval=*(tptr+5); in lldp_private_8021_print()
723 ND_PRINT((ndo, "%-2d ", (tval >> i) & 0x01)); in lldp_private_8021_print()
730 tval=*(tptr+4); in lldp_private_8021_print()
732 tval >> 7, (tval >> 6) & 0x02, (tval >> 3) & 0x07, tval & 0x07)); in lldp_private_8021_print()
762 tval=*(tptr+4); in lldp_private_8021_print()
764 tval >> 7, (tval >> 6) & 0x01, (tval >> 4) & 0x03, (tval & 0x0f))); in lldp_private_8021_print()
766 tval=*(tptr+5); in lldp_private_8021_print()
[all …]
/external/libcups/cups/
Dbackchannel.c29 static void cups_setup(fd_set *set, struct timeval *tval,
49 struct timeval tval; /* Timeout value */ in cupsBackChannelRead() local
59 cups_setup(&input, &tval, timeout); in cupsBackChannelRead()
64 status = select(4, &input, NULL, NULL, &tval); in cupsBackChannelRead()
101 struct timeval tval; /* Timeout value */ in cupsBackChannelWrite() local
121 cups_setup(&output, &tval, timeout); in cupsBackChannelWrite()
126 status = select(4, NULL, &output, NULL, &tval); in cupsBackChannelWrite()
173 struct timeval *tval, /* I - Timer value */ in cups_setup() argument
176 tval->tv_sec = (int)timeout; in cups_setup()
177 tval->tv_usec = (int)(1000000.0 * (timeout - tval->tv_sec)); in cups_setup()
/external/one-true-awk/
Dtran.c80 vp->tval |= DONTFREE; in setfree()
82 vp->tval &= ~DONTFREE; in setfree()
241 (void*)p, NN(p->nval), NN(p->sval), p->fval, p->tval); in setsymtab()
250 p->tval = t; in setsymtab()
260 (void*)p, p->nval, p->sval, p->fval, p->tval); in setsymtab()
312 if ((vp->tval & (NUM | STR)) == 0) in setfval()
334 vp->tval &= ~(STR|CONVC|CONVO); /* mark string invalid */ in setfval()
336 vp->tval |= NUM; /* mark number ok */ in setfval()
339 DPRINTF("setfval %p: %s = %g, t=%o\n", (void*)vp, NN(vp->nval), f, vp->tval); in setfval()
347 if (vp->tval & FCN) in funnyvar()
[all …]
Dawk.h99 int tval; /* type info: STR|NUM|ARR|FCN|FLD|CON|DONTFREE|CONVC|CONVO */ member
214 #define isrec(n) ((n)->tval & REC)
215 #define isfld(n) ((n)->tval & FLD)
216 #define isstr(n) ((n)->tval & STR)
217 #define isnum(n) ((n)->tval & NUM)
218 #define isarr(n) ((n)->tval & ARR)
219 #define isfcn(n) ((n)->tval & FCN)
224 #define freeable(p) ( ((p)->tval & (STR|DONTFREE)) == STR )
Drun.c261 i, NN(y->nval), y->fval, isarr(y) ? "(array)" : NN(y->sval), y->tval); in call()
300 oargs[i]->tval = t->tval; in call()
301 oargs[i]->tval &= ~(STR|NUM|DONTFREE); in call()
322 DPRINTF("%s returns %g |%s| %o\n", s, getfval(z), getsval(z), z->tval); in call()
334 y->tval = x->tval & ~(CON|FLD|REC); in copycell()
339 y->tval &= ~DONTFREE; in copycell()
341 y->tval |= DONTFREE; in copycell()
372 if ((y->tval & (STR|NUM)) == (STR|NUM)) { in jump()
375 frp->retval->tval |= NUM; in jump()
377 else if (y->tval & STR) in jump()
[all …]
Dlib.c191 fldtab[0]->tval = REC | STR | DONTFREE; in getrec()
194 fldtab[0]->tval |= NUM; in getrec()
310 q->tval |= NUM; in setclvar()
355 fldtab[i]->tval = FLD | STR | DONTFREE; in fldbld()
377 fldtab[i]->tval = FLD | STR; in fldbld()
395 fldtab[i]->tval = FLD | STR | DONTFREE; in fldbld()
415 p->tval |= NUM; in fldbld()
438 p->tval = FLD | STR | DONTFREE; in cleanfld()
520 fldtab[i]->tval = FLD | STR | DONTFREE; in refldbld()
569 fldtab[0]->tval = REC | STR | DONTFREE; in recbld()
/external/flatbuffers/include/flatbuffers/
Dminireflect.h108 template<typename T> const char *EnumName(T tval, const TypeTable *type_table) { in EnumName() argument
110 auto i = LookupEnum(static_cast<int64_t>(tval), type_table->values, in EnumName()
126 auto tval = ReadScalar<uint8_t>(val); in IterateValue() local
127 visitor->UType(tval, EnumName(tval, type_table)); in IterateValue()
135 auto tval = ReadScalar<int8_t>(val); in IterateValue() local
136 visitor->Char(tval, EnumName(tval, type_table)); in IterateValue()
140 auto tval = ReadScalar<uint8_t>(val); in IterateValue() local
141 visitor->UChar(tval, EnumName(tval, type_table)); in IterateValue()
145 auto tval = ReadScalar<int16_t>(val); in IterateValue() local
146 visitor->Short(tval, EnumName(tval, type_table)); in IterateValue()
[all …]
/external/oj-libjdwp/src/solaris/back/
Dproc_md.h44 struct timeval tval; \
45 (void)gettimeofday(&tval,NULL); \
46 millisecs = ((int)(tval.tv_usec/1000)); \
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCInstrQPX.td1114 def : Pat<(v4f64 (selectcc i1:$lhs, i1:$rhs, v4f64:$tval, v4f64:$fval, SETLT)),
1115 (SELECT_QFRC (CRANDC $lhs, $rhs), $tval, $fval)>;
1116 def : Pat<(v4f64 (selectcc i1:$lhs, i1:$rhs, v4f64:$tval, v4f64:$fval, SETULT)),
1117 (SELECT_QFRC (CRANDC $rhs, $lhs), $tval, $fval)>;
1118 def : Pat<(v4f64 (selectcc i1:$lhs, i1:$rhs, v4f64:$tval, v4f64:$fval, SETLE)),
1119 (SELECT_QFRC (CRORC $lhs, $rhs), $tval, $fval)>;
1120 def : Pat<(v4f64 (selectcc i1:$lhs, i1:$rhs, v4f64:$tval, v4f64:$fval, SETULE)),
1121 (SELECT_QFRC (CRORC $rhs, $lhs), $tval, $fval)>;
1122 def : Pat<(v4f64 (selectcc i1:$lhs, i1:$rhs, v4f64:$tval, v4f64:$fval, SETEQ)),
1123 (SELECT_QFRC (CREQV $lhs, $rhs), $tval, $fval)>;
[all …]
DPPCInstrSPE.td848 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETLT)),
849 (SELECT_SPE4 (CRANDC $lhs, $rhs), $tval, $fval)>;
850 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETULT)),
851 (SELECT_SPE4 (CRANDC $rhs, $lhs), $tval, $fval)>;
852 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETLE)),
853 (SELECT_SPE4 (CRORC $lhs, $rhs), $tval, $fval)>;
854 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETULE)),
855 (SELECT_SPE4 (CRORC $rhs, $lhs), $tval, $fval)>;
856 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETEQ)),
857 (SELECT_SPE4 (CREQV $lhs, $rhs), $tval, $fval)>;
[all …]
DPPCInstrInfo.td3923 def : Pat<(i1 (select i1:$cond, i1:$tval, i1:$fval)),
3924 (CROR (CRAND $cond , $tval),
3928 // select (lhs == rhs), tval, fval is:
3929 // ((lhs == rhs) & tval) | (!(lhs == rhs) & fval)
3930 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETLT)),
3931 (CROR (CRAND (CRANDC $lhs, $rhs), $tval),
3933 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETULT)),
3934 (CROR (CRAND (CRANDC $rhs, $lhs), $tval),
3936 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETLE)),
3937 (CROR (CRAND (CRORC $lhs, $rhs), $tval),
[all …]
/external/llvm/lib/Target/PowerPC/
DPPCInstrQPX.td1117 def : Pat<(v4f64 (selectcc i1:$lhs, i1:$rhs, v4f64:$tval, v4f64:$fval, SETLT)),
1118 (SELECT_QFRC (CRANDC $lhs, $rhs), $tval, $fval)>;
1119 def : Pat<(v4f64 (selectcc i1:$lhs, i1:$rhs, v4f64:$tval, v4f64:$fval, SETULT)),
1120 (SELECT_QFRC (CRANDC $rhs, $lhs), $tval, $fval)>;
1121 def : Pat<(v4f64 (selectcc i1:$lhs, i1:$rhs, v4f64:$tval, v4f64:$fval, SETLE)),
1122 (SELECT_QFRC (CRORC $lhs, $rhs), $tval, $fval)>;
1123 def : Pat<(v4f64 (selectcc i1:$lhs, i1:$rhs, v4f64:$tval, v4f64:$fval, SETULE)),
1124 (SELECT_QFRC (CRORC $rhs, $lhs), $tval, $fval)>;
1125 def : Pat<(v4f64 (selectcc i1:$lhs, i1:$rhs, v4f64:$tval, v4f64:$fval, SETEQ)),
1126 (SELECT_QFRC (CREQV $lhs, $rhs), $tval, $fval)>;
[all …]
DPPCInstrInfo.td3351 def : Pat<(i1 (select i1:$cond, i1:$tval, i1:$fval)),
3352 (CROR (CRAND $cond , $tval),
3356 // select (lhs == rhs), tval, fval is:
3357 // ((lhs == rhs) & tval) | (!(lhs == rhs) & fval)
3358 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETLT)),
3359 (CROR (CRAND (CRANDC $lhs, $rhs), $tval),
3361 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETULT)),
3362 (CROR (CRAND (CRANDC $rhs, $lhs), $tval),
3364 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETLE)),
3365 (CROR (CRAND (CRORC $lhs, $rhs), $tval),
[all …]
/external/eigen/Eigen/src/SparseQR/
DSparseQR.h359 …ScalarVector tval(m); // The dense vector used to compute the …
423 tval.setZero();
458 if(itp) tval(curIdx) = itp.value();
459 else tval(curIdx) = Scalar(0);
479 tdot = m_Q.col(curIdx).dot(tval);
486 tval(itq.row()) -= itq.value() * tdot;
510 Scalar c0 = nzcolQ ? tval(Qidx(0)) : Scalar(0);
514 for (Index itq = 1; itq < nzcolQ; ++itq) sqrNorm += numext::abs2(tval(Qidx(itq)));
518 tval(Qidx(0)) = 1;
526 tval(Qidx(0)) = 1;
[all …]
/external/libaom/libaom/av1/common/
Dscale.c23 const int64_t tval = (int64_t)val * sf->x_scale_fp + off; in scaled_x() local
24 return (int)ROUND_POWER_OF_TWO_SIGNED_64(tval, in scaled_x()
32 const int64_t tval = (int64_t)val * sf->y_scale_fp + off; in scaled_y() local
33 return (int)ROUND_POWER_OF_TWO_SIGNED_64(tval, in scaled_y()
/external/toybox/toys/pending/
Darping.c121 struct timeval tval; in send_packet() local
123 gettimeofday(&tval, NULL); in send_packet()
124 TT.sent_at = tval.tv_sec * 1000000ULL + tval.tv_usec; in send_packet()
164 struct timeval tval; in recv_from() local
166 gettimeofday(&tval, NULL); in recv_from()
167 delta = (tval.tv_sec * 1000000ULL + (tval.tv_usec)) - TT.sent_at; in recv_from()
/external/ltp/testcases/kernel/sched/process_stress/
Dprocess.c171 Pinfo *put_proc_info(int tval);
382 Pinfo *put_proc_info(int tval) in put_proc_info() argument
391 smp = shmaddr + tval; in put_proc_info()
400 if (!tval) in put_proc_info()
404 smp->list = (int *)(Pinfo *) (shmaddr + nodesum) + (BVAL * tval); in put_proc_info()
405 *smp->list = (tval - 1) / BVAL; in put_proc_info()
411 if (tval != sibslot) in put_proc_info()
539 static int tval = 1; /* tree node value of child. */ local
546 tval = (val * BVAL) + i;
551 sprintf(foo, "%sslot%d", SLOTDIR, tval);
[all …]
/external/llvm-project/llvm/lib/Target/PowerPC/
DPPCInstrSPE.td838 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETLT)),
839 (SELECT_SPE4 (CRANDC $lhs, $rhs), $tval, $fval)>;
840 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETULT)),
841 (SELECT_SPE4 (CRANDC $rhs, $lhs), $tval, $fval)>;
842 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETLE)),
843 (SELECT_SPE4 (CRORC $lhs, $rhs), $tval, $fval)>;
844 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETULE)),
845 (SELECT_SPE4 (CRORC $rhs, $lhs), $tval, $fval)>;
846 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETEQ)),
847 (SELECT_SPE4 (CREQV $lhs, $rhs), $tval, $fval)>;
[all …]
DPPCInstrInfo.td4104 def : Pat<(i1 (select i1:$cond, i1:$tval, i1:$fval)),
4105 (CROR (CRAND $cond , $tval),
4109 // select (lhs == rhs), tval, fval is:
4110 // ((lhs == rhs) & tval) | (!(lhs == rhs) & fval)
4111 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETLT)),
4112 (CROR (CRAND (CRANDC $lhs, $rhs), $tval),
4114 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETULT)),
4115 (CROR (CRAND (CRANDC $rhs, $lhs), $tval),
4117 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETLE)),
4118 (CROR (CRAND (CRORC $lhs, $rhs), $tval),
[all …]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_delete/speculative/
D5-1.c23 int tval = BOGUSTIMERID; in main() local
24 tid = (timer_t) & tval; in main()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_getoverrun/speculative/
D6-1.c23 int tval = BOGUSTID; in main() local
24 tid = (timer_t) & tval; in main()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_gettime/speculative/
D6-1.c24 int tval = BOGUSTID; in main() local
25 tid = (timer_t) & tval; in main()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_settime/speculative/
D12-1.c23 int tval = BOGUSTID; in main() local
24 tid = (timer_t) & tval; in main()
/external/llvm-project/openmp/runtime/src/
Dkmp_stub.cpp297 struct timeval tval; in __kmps_get_wtime() local
299 rc = gettimeofday(&tval, NULL); in __kmps_get_wtime()
301 wtime = (double)(tval.tv_sec) + 1.0E-06 * (double)(tval.tv_usec); in __kmps_get_wtime()

123