Home
last modified time | relevance | path

Searched refs:CSize (Results 1 – 14 of 14) sorted by relevance

/aosp_15_r20/external/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp56 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) in EmitTargetCodeForMemcpy() local
58 Chain, Dst, Src, CSize->getZExtValue()); in EmitTargetCodeForMemcpy()
86 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemset() local
87 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemset()
187 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemcmp() local
188 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemcmp()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp55 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) in EmitTargetCodeForMemcpy() local
57 Chain, Dst, Src, CSize->getZExtValue()); in EmitTargetCodeForMemcpy()
84 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemset() local
85 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemset()
183 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemcmp() local
184 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemcmp()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp67 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) in EmitTargetCodeForMemcpy() local
69 CSize->getZExtValue()); in EmitTargetCodeForMemcpy()
98 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemset() local
99 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemset()
178 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemcmp() local
179 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemcmp()
/aosp_15_r20/external/coreboot/util/cbfstool/lz4/
H A Dlz4_Frame_format.md322 | MagicNb | B.CSize | CData | B.CSize | CData | (...) | EndMark |
324 | 4 bytes | 4 bytes | CSize | 4 bytes | CSize | x times | EOF |
/aosp_15_r20/external/lz4/doc/
H A Dlz4_Frame_format.md365 | MagicNb | B.CSize | CData | B.CSize | CData | (...) | EndMark |
367 | 4 bytes | 4 bytes | CSize | 4 bytes | CSize | x times | EOF |
/aosp_15_r20/external/clang/test/CodeGen/
H A D2008-03-24-BitField-And-Alloca.c51 unsigned int CSize : 2; member
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/IR/
H A DConstantFold.cpp218 unsigned CSize = cast<IntegerType>(C->getType())->getBitWidth()/8; in ExtractConstantBytes() local
220 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input"); in ExtractConstantBytes()
221 assert(ByteSize != CSize && "Should not extract everything"); in ExtractConstantBytes()
279 if (ShAmt.uge(CSize - ByteStart)) in ExtractConstantBytes()
283 if (ShAmt.ule(CSize - (ByteStart + ByteSize))) in ExtractConstantBytes()
/aosp_15_r20/external/llvm/lib/IR/
H A DConstantFold.cpp217 unsigned CSize = cast<IntegerType>(C->getType())->getBitWidth()/8; in ExtractConstantBytes() local
219 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input"); in ExtractConstantBytes()
220 assert(ByteSize != CSize && "Should not extract everything"); in ExtractConstantBytes()
278 if (ByteStart >= CSize-ShAmt) in ExtractConstantBytes()
282 if (ByteStart+ByteSize+ShAmt <= CSize) in ExtractConstantBytes()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DConstantFold.cpp217 unsigned CSize = cast<IntegerType>(C->getType())->getBitWidth()/8; in ExtractConstantBytes() local
219 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input"); in ExtractConstantBytes()
220 assert(ByteSize != CSize && "Should not extract everything"); in ExtractConstantBytes()
278 if (ShAmt.uge(CSize - ByteStart)) in ExtractConstantBytes()
282 if (ShAmt.ule(CSize - (ByteStart + ByteSize))) in ExtractConstantBytes()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp1350 if (auto *CSize = dyn_cast<ConstantInt>(Size)) { in hasUndefContents() local
1352 LTSize->getZExtValue() >= CSize->getZExtValue()) in hasUndefContents()
/aosp_15_r20/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp5922 const ConstantInt *CSize = dyn_cast<ConstantInt>(Size); in visitMemCmpCall() local
5923 if (CSize && CSize->getZExtValue() == 0) { in visitMemCmpCall()
5944 if (CSize && IsOnlyUsedInZeroEqualityComparison(&I)) { in visitMemCmpCall()
5948 switch (CSize->getZExtValue()) { in visitMemCmpCall()
5956 LoadTy = Type::getInt16Ty(CSize->getContext()); in visitMemCmpCall()
5960 LoadTy = Type::getInt32Ty(CSize->getContext()); in visitMemCmpCall()
5964 LoadTy = Type::getInt64Ty(CSize->getContext()); in visitMemCmpCall()
5983 if (ActuallyDoIt && CSize->getZExtValue() > 4) { in visitMemCmpCall()
/aosp_15_r20/external/trusty/arm-trusted-firmware/docs/components/
Drmm-el3-comms-spec.rst486 ``E_RMM_INVAL``,``CSize`` does not represent the size of a supported SHA algorithm
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp7324 const ConstantInt *CSize = dyn_cast<ConstantInt>(Size); in visitMemCmpCall() local
7325 if (CSize && CSize->getZExtValue() == 0) { in visitMemCmpCall()
7344 if (!CSize || !isOnlyUsedInZeroEqualityComparison(&I)) in visitMemCmpCall()
7373 unsigned NumBitsToCompare = CSize->getZExtValue() * 8; in visitMemCmpCall()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp8086 const ConstantSDNode *CSize = dyn_cast<ConstantSDNode>(getValue(Size)); in visitMemCmpBCmpCall() local
8087 if (CSize && CSize->getZExtValue() == 0) { in visitMemCmpBCmpCall()
8106 if (!CSize || !isOnlyUsedInZeroEqualityComparison(&I)) in visitMemCmpBCmpCall()
8135 unsigned NumBitsToCompare = CSize->getZExtValue() * 8; in visitMemCmpBCmpCall()