/external/llvm/lib/Target/Hexagon/ |
D | HexagonSelectCCInfo.td | 14 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/ |
D | print-lldp.c | 653 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/one-true-awk/ |
D | tran.c | 81 vp->tval |= DONTFREE; in setfree() 83 vp->tval &= ~DONTFREE; in setfree() 235 (void*)p, NN(p->nval), NN(p->sval), p->fval, p->tval) ); in setsymtab() 244 p->tval = t; in setsymtab() 254 (void*)p, p->nval, p->sval, p->fval, p->tval) ); in setsymtab() 306 if ((vp->tval & (NUM | STR)) == 0) in setfval() 327 vp->tval &= ~(STR|CONVC|CONVO); /* mark string invalid */ in setfval() 329 vp->tval |= NUM; /* mark number ok */ in setfval() 332 dprintf( ("setfval %p: %s = %g, t=%o\n", (void*)vp, NN(vp->nval), f, vp->tval) ); in setfval() 340 if (vp->tval & FCN) in funnyvar() [all …]
|
D | awk.h | 84 int tval; /* type info: STR|NUM|ARR|FCN|FLD|CON|DONTFREE|CONVC|CONVO */ member 198 #define isrec(n) ((n)->tval & REC) 199 #define isfld(n) ((n)->tval & FLD) 200 #define isstr(n) ((n)->tval & STR) 201 #define isnum(n) ((n)->tval & NUM) 202 #define isarr(n) ((n)->tval & ARR) 203 #define isfcn(n) ((n)->tval & FCN) 208 #define freeable(p) ( ((p)->tval & (STR|DONTFREE)) == STR )
|
D | run.c | 257 i, NN(y->nval), y->fval, isarr(y) ? "(array)" : NN(y->sval), y->tval) ); in call() 297 oargs[i]->tval = t->tval; in call() 298 oargs[i]->tval &= ~(STR|NUM|DONTFREE); in call() 319 dprintf( ("%s returns %g |%s| %o\n", s, getfval(z), getsval(z), z->tval) ); in call() 331 y->tval = x->tval & ~(CON|FLD|REC); in copycell() 336 y->tval &= ~DONTFREE; in copycell() 338 y->tval |= DONTFREE; in copycell() 369 if ((y->tval & (STR|NUM)) == (STR|NUM)) { in jump() 372 fp->retval->tval |= NUM; in jump() 374 else if (y->tval & STR) in jump() [all …]
|
D | lib.c | 155 fldtab[0]->tval = REC | STR | DONTFREE; in getrec() 158 fldtab[0]->tval |= NUM; in getrec() 258 q->tval |= NUM; in setclvar() 304 fldtab[i]->tval = FLD | STR | DONTFREE; in fldbld() 322 fldtab[i]->tval = FLD | STR; in fldbld() 340 fldtab[i]->tval = FLD | STR | DONTFREE; in fldbld() 358 p->tval |= NUM; in fldbld() 381 p->tval = FLD | STR | DONTFREE; in cleanfld() 463 fldtab[i]->tval = FLD | STR | DONTFREE; in refldbld() 512 fldtab[0]->tval = REC | STR | DONTFREE; in recbld()
|
/external/libcups/cups/ |
D | backchannel.c | 34 static void cups_setup(fd_set *set, struct timeval *tval, 54 struct timeval tval; /* Timeout value */ in cupsBackChannelRead() local 64 cups_setup(&input, &tval, timeout); in cupsBackChannelRead() 69 status = select(4, &input, NULL, NULL, &tval); in cupsBackChannelRead() 106 struct timeval tval; /* Timeout value */ in cupsBackChannelWrite() local 126 cups_setup(&output, &tval, timeout); in cupsBackChannelWrite() 131 status = select(4, NULL, &output, NULL, &tval); in cupsBackChannelWrite() 178 struct timeval *tval, /* I - Timer value */ in cups_setup() argument 181 tval->tv_sec = (int)timeout; in cups_setup() 182 tval->tv_usec = (int)(1000000.0 * (timeout - tval->tv_sec)); in cups_setup()
|
/external/flatbuffers/include/flatbuffers/ |
D | minireflect.h | 107 template<typename T> const char *EnumName(T tval, const TypeTable *type_table) { in EnumName() argument 109 auto i = LookupEnum(static_cast<int64_t>(tval), type_table->values, in EnumName() 125 auto tval = ReadScalar<uint8_t>(val); in IterateValue() local 126 visitor->UType(tval, EnumName(tval, type_table)); in IterateValue() 134 auto tval = ReadScalar<int8_t>(val); in IterateValue() local 135 visitor->Char(tval, EnumName(tval, type_table)); in IterateValue() 139 auto tval = ReadScalar<uint8_t>(val); in IterateValue() local 140 visitor->UChar(tval, EnumName(tval, type_table)); in IterateValue() 144 auto tval = ReadScalar<int16_t>(val); in IterateValue() local 145 visitor->Short(tval, EnumName(tval, type_table)); in IterateValue() [all …]
|
/external/webrtc/webrtc/base/ |
D | httpcommon.cc | 345 struct tm tval; in HttpDateToSeconds() local 346 memset(&tval, 0, sizeof(tval)); in HttpDateToSeconds() 352 &tval.tm_mday, month, &tval.tm_year, in HttpDateToSeconds() 353 &tval.tm_hour, &tval.tm_min, &tval.tm_sec, zone)) { in HttpDateToSeconds() 357 case 'N': tval.tm_mon = (month[1] == 'A') ? 0 : 5; break; in HttpDateToSeconds() 358 case 'B': tval.tm_mon = 1; break; in HttpDateToSeconds() 359 case 'R': tval.tm_mon = (month[0] == 'M') ? 2 : 3; break; in HttpDateToSeconds() 360 case 'Y': tval.tm_mon = 4; break; in HttpDateToSeconds() 361 case 'L': tval.tm_mon = 6; break; in HttpDateToSeconds() 362 case 'G': tval.tm_mon = 7; break; in HttpDateToSeconds() [all …]
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCInstrQPX.td | 1117 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 …]
|
D | PPCInstrInfo.td | 3351 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 …]
|
D | PPCInstrVSX.td | 972 def : Pat<(v2f64 (selectcc i1:$lhs, i1:$rhs, v2f64:$tval, v2f64:$fval, SETLT)), 973 (SELECT_VSRC (CRANDC $lhs, $rhs), $tval, $fval)>; 974 def : Pat<(v2f64 (selectcc i1:$lhs, i1:$rhs, v2f64:$tval, v2f64:$fval, SETULT)), 975 (SELECT_VSRC (CRANDC $rhs, $lhs), $tval, $fval)>; 976 def : Pat<(v2f64 (selectcc i1:$lhs, i1:$rhs, v2f64:$tval, v2f64:$fval, SETLE)), 977 (SELECT_VSRC (CRORC $lhs, $rhs), $tval, $fval)>; 978 def : Pat<(v2f64 (selectcc i1:$lhs, i1:$rhs, v2f64:$tval, v2f64:$fval, SETULE)), 979 (SELECT_VSRC (CRORC $rhs, $lhs), $tval, $fval)>; 980 def : Pat<(v2f64 (selectcc i1:$lhs, i1:$rhs, v2f64:$tval, v2f64:$fval, SETEQ)), 981 (SELECT_VSRC (CREQV $lhs, $rhs), $tval, $fval)>; [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/ |
D | PPCInstrQPX.td | 1117 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 …]
|
D | PPCInstrSPE.td | 851 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETLT)), 852 (SELECT_SPE4 (CRANDC $lhs, $rhs), $tval, $fval)>; 853 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETULT)), 854 (SELECT_SPE4 (CRANDC $rhs, $lhs), $tval, $fval)>; 855 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETLE)), 856 (SELECT_SPE4 (CRORC $lhs, $rhs), $tval, $fval)>; 857 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETULE)), 858 (SELECT_SPE4 (CRORC $rhs, $lhs), $tval, $fval)>; 859 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETEQ)), 860 (SELECT_SPE4 (CREQV $lhs, $rhs), $tval, $fval)>; [all …]
|
D | PPCInstrInfo.td | 3766 def : Pat<(i1 (select i1:$cond, i1:$tval, i1:$fval)), 3767 (CROR (CRAND $cond , $tval), 3771 // select (lhs == rhs), tval, fval is: 3772 // ((lhs == rhs) & tval) | (!(lhs == rhs) & fval) 3773 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETLT)), 3774 (CROR (CRAND (CRANDC $lhs, $rhs), $tval), 3776 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETULT)), 3777 (CROR (CRAND (CRANDC $rhs, $lhs), $tval), 3779 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETLE)), 3780 (CROR (CRAND (CRORC $lhs, $rhs), $tval), [all …]
|
/external/oj-libjdwp/src/solaris/back/ |
D | proc_md.h | 44 struct timeval tval; \ 45 (void)gettimeofday(&tval,NULL); \ 46 millisecs = ((int)(tval.tv_usec/1000)); \
|
/external/eigen/Eigen/src/SparseQR/ |
D | SparseQR.h | 359 …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/ltp/testcases/kernel/sched/process_stress/ |
D | process.c | 171 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/toybox/toys/pending/ |
D | arping.c | 121 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/libaom/libaom/av1/common/ |
D | scale.c | 23 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/u-boot/drivers/usb/ulpi/ |
D | ulpi.c | 33 u32 val, tval = ULPI_TEST_VALUE; in ulpi_integrity_check() local 37 for (i = 0; i < 2; i++, tval <<= 1) { in ulpi_integrity_check() 38 err = ulpi_write(ulpi_vp, &ulpi->scratch, tval); in ulpi_integrity_check() 43 if (val != tval) { in ulpi_integrity_check()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_delete/speculative/ |
D | 5-1.c | 23 int tval = BOGUSTIMERID; in main() local 24 tid = (timer_t) & tval; in main()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_getoverrun/speculative/ |
D | 6-1.c | 23 int tval = BOGUSTID; in main() local 24 tid = (timer_t) & tval; in main()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_gettime/speculative/ |
D | 6-1.c | 24 int tval = BOGUSTID; in main() local 25 tid = (timer_t) & tval; in main()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_settime/speculative/ |
D | 12-1.c | 23 int tval = BOGUSTID; in main() local 24 tid = (timer_t) & tval; in main()
|