OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputSize
(Results
1 - 7
of
7
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Interpreter/
IncrementalParser.cpp
202
size_t
InputSize
= input.size(); // don't include trailing 0
205
llvm::WritableMemoryBuffer::getNewUninitMemBuffer(
InputSize
+ 1,
208
memcpy(MBStart, input.data(),
InputSize
);
209
MBStart[
InputSize
] = '\n';
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APFloat.h
672
unsigned int
InputSize
, bool IsSigned,
675
unsigned int
InputSize
, bool IsSigned,
1120
unsigned int
InputSize
, bool IsSigned,
1123
convertFromSignExtendedInteger(Input,
InputSize
, IsSigned, RM));
1126
unsigned int
InputSize
, bool IsSigned,
1129
convertFromZeroExtendedInteger(Input,
InputSize
, IsSigned, RM));
/src/external/apache2/llvm/dist/llvm/lib/Support/
APFloat.cpp
4694
unsigned int
InputSize
,
4698
auto Ret = Tmp.convertFromSignExtendedInteger(Input,
InputSize
, IsSigned, RM);
4705
unsigned int
InputSize
,
4709
auto Ret = Tmp.convertFromZeroExtendedInteger(Input,
InputSize
, IsSigned, RM);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp
2317
uint64_t
InputSize
= getContext().getTypeSize(InputTy);
2318
if (getContext().getTypeSize(OutputType) <
InputSize
) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp
5851
unsigned
InputSize
= IntTy->getScalarSizeInBits();
5853
// Following test does NOT adjust
InputSize
downwards for signed inputs,
5856
if ((int)
InputSize
> MantissaWidth) {
5861
if (MaxExponent < (int)
InputSize
- !LHSUnsigned)
5867
if (MantissaWidth <= Exp && Exp <= (int)
InputSize
- !LHSUnsigned)
/src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp
13882
int
InputSize
= Input.getValueType().getScalarSizeInBits();
13884
if (
InputSize
+ OutputSize == 40)
13886
else if (
InputSize
+ OutputSize == 72)
13888
else if (
InputSize
+ OutputSize == 48)
13890
else if (
InputSize
+ OutputSize == 80)
13892
else if (
InputSize
+ OutputSize == 96)
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp
14540
unsigned
InputSize
= (int)SrcVT.getScalarSizeInBits() - IsInputSigned;
14542
unsigned ActualSize = std::min(
InputSize
, OutputSize);
Completed in 101 milliseconds
Indexes created Wed Jun 17 00:25:26 UTC 2026