Home
last modified time | relevance | path

Searched refs:TV (Results 1 – 25 of 59) sorted by relevance

123

/freebsd/sys/contrib/device-tree/Bindings/display/connector/
H A Danalog-tv-connector.txt1 Analog TV Connector
9 - sdtv-standards: limit the supported TV standards on a connector to the given
10 ones. If not specified all TV standards are allowed.
11 Possible TV standards are defined in
15 - Video port for TV input
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/
H A DUnix.h81 inline std::chrono::microseconds toDuration(const struct timeval &TV) { in toDuration() argument
82 return std::chrono::seconds(TV.tv_sec) + in toDuration()
83 std::chrono::microseconds(TV.tv_usec); in toDuration()
/freebsd/contrib/file/magic/Magdir/
H A Datt3b15 #0 beshort 0551 3b20 COFF executable (TV)
33 0 beshort 0561 WE32000 COFF executable (TV)
H A Dintel20 0 leshort 0503 basic-16 executable (TV)
25 0 leshort 0511 x86 executable (TV)
/freebsd/sys/contrib/device-tree/Bindings/display/
H A Dzte,vou.txt6 for typical output devices, like HDMI, TV Encoder, VGA, and RGB LCD.
52 * TV Encoder output device
59 to control TV Encoder DAC power, and the second cell is the bit mask.
H A Dfaraday,tve200.txt1 * Faraday TV Encoder TVE200
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dtime_utils.h112 TimeVal TV = {};
113 TV.tv_sec = ts.tv_sec;
114 TV.tv_usec = Convert(ts.tv_nsec);
115 return TV;
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineNegator.cpp338 Value *TV = NewSelect->getTrueValue(); in visitImpl() local
340 if (match(TV, m_Neg(m_Specific(FV)))) in visitImpl()
341 cast<Instruction>(TV)->dropPoisonGeneratingFlags(); in visitImpl()
342 else if (match(FV, m_Neg(m_Specific(TV)))) in visitImpl()
345 cast<Instruction>(TV)->dropPoisonGeneratingFlags(); in visitImpl()
/freebsd/sys/contrib/device-tree/src/arm64/nvidia/
H A Dtegra210-p2894-0050-a08.dts7 model = "NVIDIA Shield TV";
/freebsd/crypto/openssl/test/certs/
H A Dbadalt8-cert.pem16 S2I6KV24gC+Hz4NHv4XhYv9mqZbivNSpf6+TV+77wcncfmkeAGqYMVXVt8DlJ7co
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DTrustNonnullChecker.cpp187 ConditionTruthVal TV = C.getState()->isNonNull(Receiver); in isNonNullPtr() local
188 if (TV.isConstrainedTrue()) in isNonNullPtr()
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYISelLowering.h145 SDValue TV = getTargetNode(N, DL, Ty, DAG, Flag); variable
146 SDValue Addr = DAG.getNode(CSKYISD::LOAD_ADDR, DL, Ty, {TV, TCPV});
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h448 TestVectors TV; member
455 MCDCRecord(const CounterMappingRegion &Region, TestVectors &&TV, in MCDCRecord()
458 : Region(Region), TV(std::move(TV)), in MCDCRecord()
467 unsigned getNumTestVectors() const { return TV.size(); } in getNumTestVectors()
477 return TV[TestVectorIndex].first[PosToID[Condition]]; in getTVCondition()
483 return TV[TestVectorIndex].second; in getTVResult()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp405 void buildTestVector(MCDCRecord::TestVector &TV, mcdc::ConditionID ID, in buildTestVector() argument
410 TV.set(ID, MCDCCond); in buildTestVector()
415 buildTestVector(TV, NextID, NextTVIdx); in buildTestVector()
423 ? DecisionParams.BitmapIdx * CHAR_BIT + TV.getIndex() in buildTestVector()
430 ExecVectorsByCond[MCDCCond].push_back({TV, MCDCCond}); in buildTestVector()
434 TV.set(ID, MCDCRecord::MCDC_DontCare); in buildTestVector()
444 MCDCRecord::TestVector TV(NumConditions); in findExecutedTestVectors() local
445 buildTestVector(TV, 0, 0); in findExecutedTestVectors()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp1504 int64_t TV; in checkForImmediate() local
1520 if (!checkForImmediate(DI->getOperand(1), TV)) in checkForImmediate()
1533 TV = V2 | (static_cast<uint64_t>(V1) << 32); in checkForImmediate()
1545 TV = V1 | (V3 << 32); in checkForImmediate()
1547 TV = V3 | (V1 << 32); in checkForImmediate()
1561 Val = TV & 0xFFFFFFFFULL; in checkForImmediate()
1564 Val = (TV >> 32) & 0xFFFFFFFFULL; in checkForImmediate()
1567 Val = TV; in checkForImmediate()
H A DHexagonBitTracker.cpp866 BT::BitValue TV = R1[W1-1]; in evaluate() local
867 if (TV.is(0) || TV.is(1)) in evaluate()
868 return rr0(eCLB(R1, TV, 32), Outputs); in evaluate()
956 bool TV = (Opc == S2_tstbit_i); in evaluate() local
957 BT::BitValue F = V.is(TV) ? BT::BitValue::One : BT::BitValue::Zero; in evaluate()
H A DHexagonLoopIdiomRecognition.cpp1198 Value *TV = UseI->getOperand(1), *FV = UseI->getOperand(2); in classifyInst() local
1199 if (Early.count(TV) || Early.count(FV)) { in classifyInst()
1200 if (Late.count(TV) || Late.count(FV)) in classifyInst()
1203 } else if (Late.count(TV) || Late.count(FV)) { in classifyInst()
1204 if (Early.count(TV) || Early.count(FV)) in classifyInst()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaARM.cpp751 unsigned TV = 0; in CheckNeonBuiltinFunctionCall() local
768 TV = Result.getLimitedValue(64); in CheckNeonBuiltinFunctionCall()
769 if ((TV > 63) || (mask & (1ULL << TV)) == 0) in CheckNeonBuiltinFunctionCall()
787 QualType EltTy = getNeonEltType(NeonTypeFlags(TV), getASTContext(), in CheckNeonBuiltinFunctionCall()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateBase.h165 struct TV {
178 struct TV TypeOrValue;
/freebsd/sys/contrib/device-tree/src/arm/st/
H A Dste-href-family-pinctrl.dtsi85 "lcdaclk_b_1"; /* Clock line for TV-out */
H A Dste-nomadik-nhk15.dts130 0x010100e3 // TV out
/freebsd/tools/regression/usr.bin/env/
H A Dregress-env.rgdata30 gblenv=TESTVAR=Global-TV-Value
44 stdout:A-Global-TV-Value-Z
245 stdout:WASTEST=Global-TV-Value
/freebsd/sys/contrib/device-tree/Bindings/devfreq/
H A Dexynos-bus.txt89 |--- TV
107 |--- TV
/freebsd/share/misc/
H A Dusb_vendors758 009b AVC-1410 GameBridge TV NTSC
1298 1310 WinFast TV - NTSC + FM
1299 1311 WinFast TV - NTSC + MTS + FM
1300 1312 WinFast TV - PAL BG + FM
1301 1313 WinFast TV - PAL BG+TXT + FM
1302 1314 WinFast TV Audio - PHP PAL I
1303 1315 WinFast TV Audio - PHP PAL I+TXT
1304 1316 WinFast TV Audio - PHP PAL DK
1305 1317 WinFast TV Audio - PHP PAL DK+TXT
1306 1318 WinFast TV - PAL I/DK + FM
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp410 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()
426 if (TV && Q.isUndefValue(TV)) in threadBinOpOverSelect()
429 return TV; in threadBinOpOverSelect()
433 if (TV == SI->getTrueValue() && FV == SI->getFalseValue()) in threadBinOpOverSelect()
439 if ((FV && !TV) || (TV && !FV)) { in threadBinOpOverSelect()
442 Instruction *Simplified = dyn_cast<Instruction>(FV ? FV : TV); in threadBinOpOverSelect()
[all …]

123