Home
last modified time | relevance | path

Searched refs:ABIType (Results 1 – 25 of 89) sorted by relevance

1234

/dports/lang/solidity/solidity_0.8.11/test/libsolidity/util/
H A DContractABIUtils.cpp135 ABIType abiType(ABIType::SignedFixedPoint); in isFixedPoint()
227 _inplaceTypes.push_back(ABIType{ABIType::Hex}); in appendTypesFromName()
230 _inplaceTypes.push_back(ABIType{ABIType::Hex}); in appendTypesFromName()
233 _dynamicTypes.push_back(ABIType{ABIType::Hex}); in appendTypesFromName()
236 _dynamicTypes.push_back(ABIType{ABIType::String, ABIType::AlignLeft}); in appendTypesFromName()
248 _inplaceTypes += vector<ABIType>(arraySize(type), ABIType{ABIType::Boolean}); in appendTypesFromName()
250 _inplaceTypes += vector<ABIType>(arraySize(type), ABIType{ABIType::UnsignedDec}); in appendTypesFromName()
252 _inplaceTypes += vector<ABIType>(arraySize(type), ABIType{ABIType::SignedDec}); in appendTypesFromName()
255 _inplaceTypes.push_back(ABIType{ABIType::Hex}); in appendTypesFromName()
257 _dynamicTypes += vector<ABIType>(arraySize(type), ABIType{ABIType::Hex}); in appendTypesFromName()
[all …]
H A DTestFunctionCallTests.cpp40 ABIType abiType{ABIType::UnsignedDec, ABIType::AlignRight, 32}; in BOOST_AUTO_TEST_CASE()
60 ABIType abiType{ABIType::UnsignedDec, ABIType::AlignRight, 32}; in BOOST_AUTO_TEST_CASE()
80 ABIType abiType{ABIType::UnsignedDec, ABIType::AlignRight, 32}; in BOOST_AUTO_TEST_CASE()
95 ABIType abiType{ABIType::UnsignedDec, ABIType::AlignRight, 32}; in BOOST_AUTO_TEST_CASE()
129 ABIType abiType{ABIType::Hex, ABIType::AlignRight, 32}; in BOOST_AUTO_TEST_CASE()
151 ABIType abiType{ABIType::HexString, ABIType::AlignLeft, 3}; in BOOST_AUTO_TEST_CASE()
165 ABIType abiType{ABIType::Boolean, ABIType::AlignRight, 32}; in BOOST_AUTO_TEST_CASE()
186 ABIType abiType{ABIType::Boolean, ABIType::AlignRight, 32}; in BOOST_AUTO_TEST_CASE()
200 ABIType abiType{ABIType::Boolean, ABIType::AlignLeft, 32}; in BOOST_AUTO_TEST_CASE()
215 ABIType abiType{ABIType::Hex, ABIType::AlignRight, 32}; in BOOST_AUTO_TEST_CASE()
[all …]
H A DTestFileParser.cpp298 if (param.abiType.type == ABIType::None) in parseFunctionCallArguments()
337 parameter.abiType = ABIType{ABIType::None, ABIType::AlignNone, 0}; in parseParameter()
365 parameter.abiType = ABIType{ABIType::Boolean, ABIType::AlignRight, 32}; in parseParameter()
379 parameter.abiType = ABIType{ABIType::Hex, ABIType::AlignRight, 32}; in parseParameter()
398 parameter.abiType = ABIType{ in parseParameter()
399 ABIType::HexString, ABIType::AlignNone, parameter.rawBytes.size() in parseParameter()
410 parameter.abiType = ABIType{ABIType::String, ABIType::AlignLeft, parsed.size()}; in parseParameter()
420 auto type = isSigned ? ABIType::SignedDec : ABIType::UnsignedDec; in parseParameter()
422 parameter.abiType = ABIType{type, ABIType::AlignRight, 32}; in parseParameter()
436 parameter.abiType.type = isSigned ? ABIType::SignedFixedPoint : ABIType::UnsignedFixedPoint; in parseParameter()
[all …]
H A DBytesUtils.cpp54 ABIType& _abiType, in applyAlign()
282 ABIType const& _abiType in formatBytes()
289 case ABIType::UnsignedDec: in formatBytes()
327 case ABIType::SignedDec: in formatBytes()
330 case ABIType::Boolean: in formatBytes()
333 case ABIType::Hex: in formatBytes()
336 case ABIType::HexString: in formatBytes()
339 case ABIType::String: in formatBytes()
343 case ABIType::SignedFixedPoint: in formatBytes()
346 case ABIType::Failure: in formatBytes()
[all …]
H A DSoltestTypes.h99 struct ABIType struct
121 explicit ABIType( argument
123 Align _align = ABIType::AlignRight,
127 Type type = ABIType::None; argument
128 Align align = ABIType::AlignRight; argument
173 ABIType abiType = ABIType{ABIType::UnsignedDec, ABIType::AlignRight, 32};
H A DBytesUtils.h45 ABIType& _abiType,
119 static std::string formatBytes(bytes const& _bytes, ABIType const& _abiType);
/dports/graphics/jogamp-jogl/gluegen/src/java/jogamp/common/os/elf/
H A DElfHeaderPart1.java38 import com.jogamp.common.os.Platform.ABIType;
329 public final ABIType abiType;
368 abiType = ABIType.GENERIC_ABI; in ElfHeaderPart1()
376 abiType = ABIType.GENERIC_ABI; in ElfHeaderPart1()
380 abiType = ABIType.GENERIC_ABI; in ElfHeaderPart1()
384 abiType = ABIType.GENERIC_ABI; in ElfHeaderPart1()
388 abiType = ABIType.GENERIC_ABI; in ElfHeaderPart1()
397 abiType = ABIType.GENERIC_ABI; in ElfHeaderPart1()
401 abiType = ABIType.GENERIC_ABI; in ElfHeaderPart1()
405 abiType = ABIType.GENERIC_ABI; in ElfHeaderPart1()
[all …]
H A DElfHeaderPart2.java34 import com.jogamp.common.os.Platform.ABIType;
130 public final ABIType abiType;
224 … abiType = abiVFPArgsAcceptsVFPVariant ? ABIType.EABI_GNU_ARMHF : ABIType.EABI_GNU_ARMEL; in ElfHeaderPart2()
/dports/devel/binaryen/binaryen-version_98/src/passes/
H A DFuncCastEmulation.cpp137 Pass* create() override { return new ParallelFuncCastEmulation(ABIType); } in create()
139 ParallelFuncCastEmulation(Signature ABIType) : ABIType(ABIType) {} in ParallelFuncCastEmulation()
154 curr->sig = ABIType; in visitCallIndirect()
164 Signature ABIType; member
170 Signature ABIType(Type(std::vector<Type>(NUM_PARAMS, Type::i64)), in run() local
187 ParallelFuncCastEmulation(ABIType).run(runner, module); in run()
/dports/graphics/jogamp-jogl/gluegen/src/java/com/jogamp/common/os/
H A DAndroidVersion.java32 import com.jogamp.common.os.Platform.ABIType;
43 public static final ABIType ABI_TYPE;
48 public static final ABIType ABI_TYPE2;
115 ABI_TYPE = Platform.ABIType.query(CPU_TYPE, CPU_ABI);
118 ABI_TYPE2 = Platform.ABIType.query(CPU_TYPE2, CPU_ABI2);
H A DPlatform.java210 public enum ABIType { enum in Platform
221 ABIType(final int id){ in ABIType() method in Platform.ABIType
229 public final boolean isCompatible(final ABIType other) { in isCompatible()
237 public static final ABIType query(final CPUType cpuType, final String cpuABILower) { in query()
440 public static ABIType getABIType() { in getABIType()
/dports/graphics/jogamp-jogl/gluegen/src/java/jogamp/common/os/
H A DPlatformPropsImpl.java22 import com.jogamp.common.os.Platform.ABIType;
54 …final boolean isCompatible(final CPUType cpu1, final ABIType abi1, final CPUType cpu2, final ABITy… in isCompatible()
101 public static final ABIType ABI_TYPE;
151 final ABIType elfABIType;
157 final ABIType[] _elfAbiType = { null };
241 final ABIType propABIType = ABIType.query(propCpuType, propARCH_lower);
545 …al String getOSAndArch(final OSType osType, final CPUType cpuType, final ABIType abiType, final bo…
554 if( ABIType.EABI_GNU_ARMHF == abiType ) {
/dports/security/clamav-lts/clamav-0.103.5/libclamav/c++/llvm/include/llvm/Target/
H A DTargetOptions.h23 enum ABIType { enum
108 extern FloatABI::ABIType FloatABIType;
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/include/glow/LLVMIRCodeGen/
H A DLLVMBackend.h46 llvm::Optional<llvm::FloatABI::ABIType> floatABI_;
77 llvm::Optional<llvm::FloatABI::ABIType> getFloatABI() const { in getFloatABI()
81 void setFloatABI(llvm::Optional<llvm::FloatABI::ABIType> floatABI) { in setFloatABI()
/dports/devel/llvm10/llvm-10.0.1.src/include/llvm/Target/
H A DTargetOptions.h24 enum ABIType { enum
271 FloatABI::ABIType FloatABIType = FloatABI::Default;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/
H A DTargetOptions.h24 enum ABIType { enum
271 FloatABI::ABIType FloatABIType = FloatABI::Default;
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/include/llvm/Target/
H A DTargetOptions.h24 enum ABIType { enum
271 FloatABI::ABIType FloatABIType = FloatABI::Default;
/dports/devel/llvm90/llvm-9.0.1.src/include/llvm/Target/
H A DTargetOptions.h24 enum ABIType { enum
265 FloatABI::ABIType FloatABIType = FloatABI::Default;
/dports/devel/llvm80/llvm-8.0.1.src/include/llvm/Target/
H A DTargetOptions.h25 enum ABIType { enum
262 FloatABI::ABIType FloatABIType = FloatABI::Default;
/dports/devel/llvm70/llvm-7.0.1.src/include/llvm/Target/
H A DTargetOptions.h25 enum ABIType {
250 FloatABI::ABIType FloatABIType = FloatABI::Default;
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/include/llvm/Target/
H A DTargetOptions.h28 enum ABIType { enum
306 FloatABI::ABIType FloatABIType = FloatABI::Default;
/dports/devel/llvm11/llvm-11.0.1.src/include/llvm/Target/
H A DTargetOptions.h28 enum ABIType { enum
306 FloatABI::ABIType FloatABIType = FloatABI::Default;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/include/llvm/Target/
H A DTargetOptions.h28 enum ABIType { enum
332 FloatABI::ABIType FloatABIType = FloatABI::Default;
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/include/llvm/Target/
H A DTargetOptions.h28 enum ABIType { enum
337 FloatABI::ABIType FloatABIType = FloatABI::Default;
/dports/graphics/llvm-mesa/llvm-13.0.1.src/include/llvm/Target/
H A DTargetOptions.h28 enum ABIType { enum
337 FloatABI::ABIType FloatABIType = FloatABI::Default;

1234