Home
last modified time | relevance | path

Searched refs:TV (Results 1 - 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
H A DUnix.h78 inline std::chrono::microseconds toDuration(const struct timeval &TV) { in toDuration() argument
79 return std::chrono::seconds(TV.tv_sec) + in toDuration()
80 std::chrono::microseconds(TV.tv_usec); in toDuration()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
H A DUnix.h86 inline std::chrono::microseconds toDuration(const struct timeval &TV) { in toDuration() argument
87 return std::chrono::seconds(TV.tv_sec) + in toDuration()
88 std::chrono::microseconds(TV.tv_usec); in toDuration()
/third_party/python/Modules/
H A Dresource.c16 #define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001)
H A Dposixmodule.c8390 #define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001) in wait_helper()
/third_party/typescript/tests/baselines/reference/
H A DrecursiveMappedTypes.js84 export type TV<T, K extends keyof T> = T[K] extends Record<infer E, any> ? E : never;
123 export type TV<T, K extends keyof T> = T[K] extends Record<infer E, any> ? E : never;
/third_party/mbedtls/library/
H A Dbignum.c1884 mbedtls_mpi G, TA, TU, U1, U2, TB, TV, V1, V2; in mbedtls_mpi_inv_mod() local
1891 mbedtls_mpi_init(&G); mbedtls_mpi_init(&TB); mbedtls_mpi_init(&TV); in mbedtls_mpi_inv_mod()
1904 MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&TV, N)); in mbedtls_mpi_inv_mod()
1924 while ((TV.p[0] & 1) == 0) { in mbedtls_mpi_inv_mod()
1925 MBEDTLS_MPI_CHK(mbedtls_mpi_shift_r(&TV, 1)); in mbedtls_mpi_inv_mod()
1936 if (mbedtls_mpi_cmp_mpi(&TU, &TV) >= 0) { in mbedtls_mpi_inv_mod()
1937 MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(&TU, &TU, &TV)); in mbedtls_mpi_inv_mod()
1941 MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(&TV, &TV, &TU)); in mbedtls_mpi_inv_mod()
1960 mbedtls_mpi_free(&G); mbedtls_mpi_free(&TB); mbedtls_mpi_free(&TV); in mbedtls_mpi_inv_mod()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp1508 // and if so, get the value of it in TV. That value will then need to be in checkForImmediate()
1510 int64_t TV; in checkForImmediate()
1526 if (!checkForImmediate(DI->getOperand(1), TV)) in checkForImmediate()
1539 TV = V2 | (static_cast<uint64_t>(V1) << 32); in checkForImmediate()
1551 TV = V1 | (V3 << 32); in checkForImmediate()
1553 TV = V3 | (V1 << 32); in checkForImmediate()
1567 Val = TV & 0xFFFFFFFFULL; in checkForImmediate()
1570 Val = (TV >> 32) & 0xFFFFFFFFULL; in checkForImmediate()
1573 Val = TV; in checkForImmediate()
H A DHexagonBitTracker.cpp863 BT::BitValue TV = R1[W1-1];
864 if (TV.is(0) || TV.is(1))
865 return rr0(eCLB(R1, TV, 32), Outputs);
953 bool TV = (Opc == S2_tstbit_i);
954 BT::BitValue F = V.is(TV) ? BT::BitValue::One : BT::BitValue::Zero;
H A DHexagonLoopIdiomRecognition.cpp1189 Value *TV = UseI->getOperand(1), *FV = UseI->getOperand(2); in classifyInst() local
1190 if (Early.count(TV) || Early.count(FV)) { in classifyInst()
1191 if (Late.count(TV) || Late.count(FV)) in classifyInst()
1194 } else if (Late.count(TV) || Late.count(FV)) { in classifyInst()
1195 if (Early.count(TV) || Early.count(FV)) in classifyInst()
H A DHexagonISelLoweringHVX.cpp1456 SDValue TV = DAG.getValueType(Ty); in SplitHvxPairOp()
1457 return std::make_pair(TV, TV); in SplitHvxPairOp()
/third_party/python/Lib/test/
H A Dtest_types.py784 TV = typing.TypeVar('T')
785 assert TV | str == typing.Union[TV, str]
786 assert str | TV == typing.Union[str, TV]
787 self.assertIs((int | TV)[int], int)
788 self.assertIs((TV | int)[int], int)
/third_party/rust/crates/serde/serde/src/de/
H A Dvalue.rs1234 fn next_entry_seed<TK, TV>( in next_entry_seed()
1237 vseed: TV, in next_entry_seed()
1238 ) -> Result<Option<(TK::Value, TV::Value)>, Self::Error> in next_entry_seed()
1241 TV: de::DeserializeSeed<'de>, in next_entry_seed()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DInstructionSimplify.cpp88 // %A = icmp eq %TV, %FV in foldSelectWithBinaryOp()
91 // %D = select %C, %TV, %FV in foldSelectWithBinaryOp()
95 // %A = icmp ne %TV, %FV in foldSelectWithBinaryOp()
98 // %D = select %C, %TV, %FV in foldSelectWithBinaryOp()
100 // %TV in foldSelectWithBinaryOp()
410 Value *TV; in ThreadBinOpOverSelect() local
413 TV = SimplifyBinOp(Opcode, SI->getTrueValue(), RHS, Q, MaxRecurse); in ThreadBinOpOverSelect()
416 TV = SimplifyBinOp(Opcode, LHS, SI->getTrueValue(), Q, MaxRecurse); in ThreadBinOpOverSelect()
422 if (TV == FV) in ThreadBinOpOverSelect()
423 return TV; in ThreadBinOpOverSelect()
487 Value *TV = SI->getTrueValue(); ThreadCmpOverSelect() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1354 Value *TV = SI->getTrueValue(); in visitAdd() local
1360 if (match(FV, m_Zero()) && match(TV, m_Sub(m_Value(N), m_Specific(A)))) in visitAdd()
1364 if (match(TV, m_Zero()) && match(FV, m_Sub(m_Value(N), m_Specific(A)))) in visitAdd()
H A DInstructionCombining.cpp894 Value *TV = SI->getTrueValue(); in FoldOpIntoSelect()
896 if (!(isa<Constant>(TV) || isa<Constant>(FV))) in FoldOpIntoSelect()
934 Value *NewTV = foldOperationIntoSelectOperand(Op, TV, Builder); in FoldOpIntoSelect()
/third_party/libphonenumber/javascript/i18n/phonenumbers/
H A Ddemo-compiled.js59 386:["SI"],387:["BA"],389:["MK"],420:["CZ"],421:["SK"],423:["LI"],500:["FK"],501:["BZ"],502:["GT"],503:["SV"],504:["HN"],505:["NI"],506:["CR"],507:["PA"],508:["PM"],509:["HT"],590:["GP","BL","MF"],591:["BO"],592:["GY"],593:["EC"],594:["GF"],595:["PY"],596:["MQ"],597:["SR"],598:["UY"],599:["CW","BQ"],670:["TL"],672:["NF"],673:["BN"],674:["NR"],675:["PG"],676:["TO"],677:["SB"],678:["VU"],679:["FJ"],680:["PW"],681:["WF"],682:["CK"],683:["NU"],685:["WS"],686:["KI"],687:["NC"],688:["TV"],689:["PF"],690:["TK"],
429 ,,,,,,,[-1]],,,[,,"868619\\d{4}",,,,"8686191234",,,,[7]]],TV:[,[,,"(?:2|7\\d\\d|90)\\d{4}",,,,,,,[5,6,7]],[,,"2[02-9]\\d{3}",,,,"20123",,,[5]],[,,"(?:7[01]\\d|90)\\d{4}",,,,"901234",,,[6,7]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],"TV",688,"00",,,,,,,,[[,"(\\d{2})(\\d{3})","$1 $2",["2"]],[,"(\\d{2})(\\d{4})","$1 $2",["90"]],[,"(\\d{2})(\\d{5})","$1 $2",["7"]]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],TW:[,[,,"[2-689]\\d{8}|7\\d{9,10}|[2-8]\\d{7}|2\\d{6}",
646 ,,,"988"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,[,,,,,,,,,[-1]]],TV:[,[,,"[19]\\d\\d",,,,,,,[3]],,,[,,"911",,,,"911"],[,,,,,,,,,[-1]],,,,"TV",,,,,,,,,,,,,,,,,,[,,"911",,,,"911"],,[,,"1\\d\\d|911",,,,"100"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,[,,,,,,,,,[-1]]],TW:[,[,,"1\\d{2,3}",,,,,,,[3,4]],,,[,,"11[0289]|1(?:81|92)\\d",,,,"110"],[,,"10[56]",,,,"105",,,[3]],,,,"TW",,,,,,,,,,,,,,,,,,[,,"11[029]",,,,"110",,,[3]],,[,,"1(?:0[04-6]|1[0237-9]|3[389]|6[05-8]|7[07]|8(?:0|11)|9(?:19|22|5[057]|68|8[05]|9[15689]))",
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp7581 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3); in LowerSELECT_CC() local
7584 if (Subtarget.hasP9Vector() && LHS == TV && RHS == FV) { in LowerSELECT_CC()
7612 std::swap(TV, FV); in LowerSELECT_CC()
7617 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV); in LowerSELECT_CC()
7624 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt in LowerSELECT_CC()
7630 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV); in LowerSELECT_CC()
7633 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt in LowerSELECT_CC()
7640 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV); in LowerSELECT_CC()
7647 std::swap(TV, FV); in LowerSELECT_CC()
7653 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, F in LowerSELECT_CC()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
H A DAsmParser.cpp1167 if (auto TV = dyn_cast<MCTargetExpr>(V)) in parsePrimaryExpr()
1168 DoInline = TV->inlineAssignedExpr(); in parsePrimaryExpr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1359 Value *TV = SI.getTrueValue();
1367 LoadInst *TL = IRB.CreateLoad(LI->getType(), TV,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp20312 auto *TV = dyn_cast<ConstantFPSDNode>(N2); in convertSelectOfFPConstantsToLoadOffset()
20315 if (!TV || !FV || !TLI.isTypeLegal(VT)) in convertSelectOfFPConstantsToLoadOffset()
20320 TLI.isFPImmLegal(TV->getValueAPF(), TV->getValueType(0), ForCodeSize) || in convertSelectOfFPConstantsToLoadOffset()
20326 if (!TV->hasOneUse() && !FV->hasOneUse()) in convertSelectOfFPConstantsToLoadOffset()
20330 const_cast<ConstantFP*>(TV->getConstantFPValue()) }; in convertSelectOfFPConstantsToLoadOffset()
20352 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx, in convertSelectOfFPConstantsToLoadOffset()

Completed in 116 milliseconds