| /src/contrib/llvm-project/llvm/include/llvm/Demangle/ |
| H A D | MicrosoftDemangle.h | 31 size_t Used = 0; member 42 NewHead->Used = 0; in addNode() 65 uint8_t *P = Head->Buf + Head->Used; in allocUnalignedBuffer() 67 Head->Used += Size; in allocUnalignedBuffer() 68 if (Head->Used <= Head->Capacity) in allocUnalignedBuffer() 72 Head->Used = Size; in allocUnalignedBuffer() 80 size_t P = (size_t)Head->Buf + Head->Used; in allocArray() 86 Head->Used += Size + Adjustment; in allocArray() 87 if (Head->Used <= Head->Capacity) in allocArray() 91 Head->Used = Size; in allocArray() [all …]
|
| /src/contrib/llvm-project/llvm/lib/MCA/Stages/ |
| H A D | ExecuteStage.cpp | 54 SmallVector<ResourceUse, 4> Used; in issueInstruction() local 58 HWS.issueInstruction(IR, Used, Pending, Ready); in issueInstruction() 64 notifyInstructionIssued(IR, Used); in issueInstruction() 253 const InstRef &IR, MutableArrayRef<ResourceUse> Used) const { in notifyInstructionIssued() 256 for (const ResourceUse &Use : Used) { in notifyInstructionIssued() 265 for (ResourceUse &Use : Used) in notifyInstructionIssued() 268 notifyEvent<HWInstructionEvent>(HWInstructionIssuedEvent(IR, Used)); in notifyInstructionIssued()
|
| /src/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVInsertVSETVLI.cpp | 335 const DemandedFields &Used) { in areCompatibleVTYPEs() argument 336 switch (Used.SEW) { in areCompatibleVTYPEs() 354 switch (Used.LMUL) { in areCompatibleVTYPEs() 367 if (Used.SEWLMULRatio) { in areCompatibleVTYPEs() 376 if (Used.TailPolicy && RISCVVType::isTailAgnostic(CurVType) != in areCompatibleVTYPEs() 379 if (Used.MaskPolicy && RISCVVType::isMaskAgnostic(CurVType) != in areCompatibleVTYPEs() 725 bool hasCompatibleVTYPE(const DemandedFields &Used, in hasCompatibleVTYPE() argument 727 return areCompatibleVTYPEs(Require.encodeVTYPE(), encodeVTYPE(), Used); in hasCompatibleVTYPE() 733 bool isCompatible(const DemandedFields &Used, const VSETVLIInfo &Require, in isCompatible() argument 745 if (Used.VLAny && !(hasSameAVL(Require) && hasSameVLMAX(Require))) in isCompatible() [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/ |
| H A D | PassAnalysisSupport.h | 59 SmallVector<AnalysisID, 0> Used; variable 108 pushUnique(Used, ID); in addUsedIfAvailableID() 112 pushUnique(Used, &ID); in addUsedIfAvailableID() 118 pushUnique(Used, &PassClass::ID); in addUsedIfAvailable() 149 const VectorType &getUsedSet() const { return Used; } in getUsedSet()
|
| /src/contrib/llvm-project/llvm/lib/Object/ |
| H A D | RecordStreamer.cpp | 26 case Used: in markDefined() 47 case Used: in markGlobal() 67 case Used: in markUsed() 68 S = Used; in markUsed() 178 case RecordStreamer::Used: in flushSymverDirectives()
|
| /src/crypto/openssl/doc/man1/ |
| H A D | openssl-mac.pod.in | 50 Used by CMAC and GMAC to specify the cipher algorithm. 56 Used by HMAC as an alphanumeric string (use if the key contains printable 85 Used by GMAC to specify an IV as an alphanumeric string (use if the IV contains 90 Used by GMAC to specify an IV in hexadecimal form (two hex digits per byte). 94 Used by KMAC128 or KMAC256 to specify an output length. 99 Used by KMAC128 or KMAC256 to specify a customization string.
|
| /src/sys/contrib/device-tree/src/arm/gemini/ |
| H A D | gemini-dlink-dns-313.dts | 207 /* Used by LEDs conflicts ICE */ 209 /* Used by ? conflicts ICE */ 212 * Used by fan & G751, conflicts LPC, 216 /* Used by G751 */ 218 /* Used by MDIO */ 225 /* Used by "reset" button */
|
| /src/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SampleProfileLoaderBaseUtil.cpp | 163 unsigned SampleCoverageTracker::computeCoverage(unsigned Used, in computeCoverage() argument 165 assert(Used <= Total && in computeCoverage() 167 return Total > 0 ? Used * 100 / Total : 100; in computeCoverage()
|
| /src/sys/contrib/device-tree/src/arm/broadcom/ |
| H A D | bcm2835-rpi-zero-w.dts | 72 /* Used by BT module */ 77 /* Used by Wifi */ 92 /* Used by SD Card */
|
| H A D | bcm2837-rpi-3-b.dts | 86 /* Used by BT module */ 91 /* Used by Wifi */ 106 /* Used by SD Card */
|
| H A D | bcm2837-rpi-3-b-plus.dts | 86 /* Used by BT module */ 91 /* Used by Wifi */ 106 /* Used by SD Card */
|
| H A D | bcm2837-rpi-3-a-plus.dts | 80 /* Used by BT module */ 85 /* Used by Wifi */ 100 /* Used by SD Card */
|
| /src/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateDeduction.cpp | 155 llvm::SmallBitVector &Used); 6244 llvm::SmallBitVector &Used; member 6247 MarkUsedTemplateParameterVisitor(llvm::SmallBitVector &Used, in MarkUsedTemplateParameterVisitor() 6249 : Used(Used), Depth(Depth) { } in MarkUsedTemplateParameterVisitor() 6253 Used[T->getIndex()] = true; in VisitTemplateTypeParmType() 6261 Used[TTP->getIndex()] = true; in TraverseTemplateName() 6270 Used[NTTP->getIndex()] = true; in VisitDeclRefExpr() 6283 llvm::SmallBitVector &Used) { in MarkUsedTemplateParameters() argument 6285 MarkUsedTemplateParameterVisitor(Used, Depth) in MarkUsedTemplateParameters() 6299 Used[NTTP->getIndex()] = true; in MarkUsedTemplateParameters() [all …]
|
| /src/crypto/openssl/doc/man3/ |
| H A D | SSL_CTX_set_msg_callback.pod | 121 Used when a TLS record is sent or received. The B<buf> contains the record header 126 Used when an encrypted TLSv1.3 record is sent or received. In encrypted TLSv1.3 133 Used when a QUIC datagram is sent or received. 137 Used when a QUIC packet is sent or received. 141 Used when a QUIC frame is sent or received. This is only used for non-crypto 146 Used when a QUIC stream data or crypto frame is sent or received. Only the QUIC 151 Used when a sequence of one or more QUIC padding frames is sent or received.
|
| /src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ObjCUnusedIVarsChecker.cpp | 30 enum IVarState { Unused, Used }; enumerator 41 I->second = Used; in Scan() 73 I->second = Used; in Scan()
|
| /src/sys/contrib/device-tree/Bindings/power/supply/ |
| H A D | ti,bq24735.txt | 15 - ti,charge-current : Used to control and set the charging current. This value 19 - ti,charge-voltage : Used to control and set the charging voltage. This value 23 - ti,input-current : Used to control and set the charger input current. This
|
| /src/contrib/llvm-project/compiler-rt/lib/xray/ |
| H A D | xray_buffer_queue.h | 73 bool Used = false; member 90 } while (Offset != Max && !Buffers[Offset].Used); 110 while (Offset != Max && !Buffers[Offset].Used) { in Iterator()
|
| H A D | xray_buffer_queue.cpp | 134 T.Used = false; in init() 180 B->Used = true; in getBuffer() 209 B->Used = true; in releaseBuffer()
|
| /src/sys/contrib/device-tree/Bindings/dma/ |
| H A D | mmp-dma.txt | 4 Used platforms: pxa688, pxa910, pxa3xx, etc 21 Used platforms: pxa25x, pxa27x, pxa3xx, pxa93x, pxa168, pxa910, pxa688. 55 Used platforms: pxa688, pxa910
|
| /src/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | FunctionImportUtils.h | 57 SmallPtrSet<GlobalValue *, 4> Used; variable 119 Used = {Vec.begin(), Vec.end()}; in FunctionImportGlobalProcessing()
|
| /src/sys/contrib/device-tree/Bindings/crypto/ |
| H A D | img-hash.txt | 14 - clock-names : "sys" Used to clock the hash block registers 15 "hash" Used to clock data through the accelerator
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | RegisterScavenging.cpp | 139 LiveRegUnits Used(TRI); in findSurvivorBackwards() local 148 Used.accumulate(MI); in findSurvivorBackwards() 153 if (!MRI.isReserved(Reg) && Used.available(Reg) && in findSurvivorBackwards() 165 Used.accumulate(*std::next(From)); in findSurvivorBackwards() 175 if (Survivor == 0 || !Used.available(Survivor)) { in findSurvivorBackwards() 178 if (!MRI.isReserved(Reg) && Used.available(Reg)) { in findSurvivorBackwards()
|
| /src/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | Internalize.cpp | 188 SmallVector<GlobalValue *, 4> Used; in internalizeModule() local 189 collectUsedGlobalVariables(M, Used, false); in internalizeModule() 211 for (GlobalValue *V : Used) { in internalizeModule()
|
| /src/sys/contrib/device-tree/Bindings/sound/ |
| H A D | omap-twl4030.txt | 52 * Mic Bias 1 /* Used for Main Mic or Digimic0 */ 53 * Mic Bias 2 /* Used for Sub Mic or Digimic1 */
|
| /src/sys/contrib/device-tree/Bindings/pci/ |
| H A D | layerscape-pci.txt | 35 "aer": Used for interrupt line which reports AER events when 37 "pme": Used for interrupt line which reports PME events when 39 "intr": Used for SoCs(like ls2080a, lx2160a, ls2080a, ls2088a, ls1088a)
|