Home
last modified time | relevance | path

Searched refs:Signed (Results 1 - 25 of 128) sorted by relevance

123456

/third_party/skia/third_party/externals/dawn/src/tests/unittests/
H A DTypedIntegerTests.cpp23 using Signed = TypedInteger<struct SignedT, int32_t>;
28 Signed svalue(2); in TEST_F()
34 static_assert(static_cast<int32_t>(Signed(3)) == 3, ""); in TEST_F()
66 Signed value(0);
67 EXPECT_EQ(value++, Signed(0));
68 EXPECT_EQ(value, Signed(1));
73 Signed value(0);
74 EXPECT_EQ(++value, Signed(1));
75 EXPECT_EQ(value, Signed(1));
80 Signed valu
[all...]
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/
H A Dbase.js6 exports.Signed = exports.isMetadataKind = exports.MetadataKind = void 0;
26 * Objects with base class Signed are usually included in a ``Metadata`` object
30 class Signed {
47 if (!(other instanceof Signed)) {
80 exports.Signed = Signed;
H A Dtimestamp.js13 class Timestamp extends base_1.Signed {
36 const { unrecognizedFields, ...commonFields } = base_1.Signed.commonFieldsFromJSON(data);
H A Dsnapshot.js18 class Snapshot extends base_1.Signed {
41 const { unrecognizedFields, ...commonFields } = base_1.Signed.commonFieldsFromJSON(data);
H A Droot.js19 class Root extends base_1.Signed {
70 const { unrecognizedFields, ...commonFields } = base_1.Signed.commonFieldsFromJSON(data);
H A Dtargets.js16 class Targets extends base_1.Signed {
49 const { unrecognizedFields, ...commonFields } = base_1.Signed.commonFieldsFromJSON(data);
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-sharedarraybuffer-gen.cc101 *out_backing_store = RawPtrAdd(backing_store, Signed(byte_offset)); in ValidateIntegerTypedArray()
457 Return(SmiFromInt32(Signed(AtomicExchange(MachineType::Int8(), backing_store,
461 Return(SmiFromInt32(Signed(AtomicExchange(MachineType::Uint8(), backing_store,
465 Return(SmiFromInt32(Signed(
470 Return(SmiFromInt32(Signed(
475 Return(ChangeInt32ToTagged(Signed(
603 Return(SmiFromInt32(Signed(
608 Return(SmiFromInt32(Signed(
613 Return(SmiFromInt32(Signed(AtomicCompareExchange(
618 Return(SmiFromInt32(Signed(AtomicCompareExchang
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DCheckedArithmetic.h30 checkedOp(T LHS, T RHS, F Op, bool Signed = true) {
31 llvm::APInt ALHS(/*BitSize=*/sizeof(T) * 8, LHS, Signed);
32 llvm::APInt ARHS(/*BitSize=*/sizeof(T) * 8, RHS, Signed);
37 return Signed ? Out.getSExtValue() : Out.getZExtValue();
87 return checkedOp(LHS, RHS, &llvm::APInt::uadd_ov, /*Signed=*/false);
96 return checkedOp(LHS, RHS, &llvm::APInt::umul_ov, /*Signed=*/false);
/third_party/node/deps/v8/src/asmjs/
H A Dasm-parser.cc101 auto* s = AsmType::Signed(); in InitializeStdlibTypes()
168 } else if (return_type->IsA(AsmType::Signed())) { in ConvertSignature()
460 mutable_variable ? AsmType::Int() : AsmType::Signed(), in ValidateModuleVar()
476 mutable_variable ? AsmType::Int() : AsmType::Signed(), in ValidateModuleVar()
1131 } else if (ret->IsA(AsmType::Signed())) { in ReturnStatement()
1132 return_type_ = AsmType::Signed(); in ReturnStatement()
1317 if (!test->IsA(AsmType::Signed())) { in SwitchStatement()
1598 ret = AsmType::Signed(); in UnaryExpression()
1627 if (ret->IsA(AsmType::Signed())) { in UnaryExpression()
1657 ret = AsmType::Signed(); in UnaryExpression()
[all...]
/third_party/skia/third_party/externals/angle2/src/common/
H A Duniform_type_info_autogen.cpp87 {GL_INT_SAMPLER_2D, GL_INT, GL_TEXTURE_2D, GL_NONE, GL_NONE, SamplerFormat::Signed, 1, 1, 1,
89 {GL_INT_SAMPLER_2D_ARRAY, GL_INT, GL_TEXTURE_2D_ARRAY, GL_NONE, GL_NONE, SamplerFormat::Signed,
92 SamplerFormat::Signed, 1, 1, 1, sizeof(GLint), sizeof(GLint) * 4, sizeof(GLint) * 1, true,
95 GL_NONE, SamplerFormat::Signed, 1, 1, 1, sizeof(GLint), sizeof(GLint) * 4, sizeof(GLint) * 1,
97 {GL_INT_SAMPLER_3D, GL_INT, GL_TEXTURE_3D, GL_NONE, GL_NONE, SamplerFormat::Signed, 1, 1, 1,
99 {GL_INT_SAMPLER_CUBE, GL_INT, GL_TEXTURE_CUBE_MAP, GL_NONE, GL_NONE, SamplerFormat::Signed, 1,
102 SamplerFormat::Signed, 1, 1, 1, sizeof(GLint), sizeof(GLint) * 4, sizeof(GLint) * 1, true,
104 {GL_INT_SAMPLER_BUFFER, GL_INT, GL_TEXTURE_BUFFER, GL_NONE, GL_NONE, SamplerFormat::Signed, 1,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUHSAMetadataStreamer.cpp133 auto Signed = !TypeName.startswith("u"); in getValueType() local
136 return Signed ? ValueType::I8 : ValueType::U8; in getValueType()
138 return Signed ? ValueType::I16 : ValueType::U16; in getValueType()
140 return Signed ? ValueType::I32 : ValueType::U32; in getValueType()
142 return Signed ? ValueType::I64 : ValueType::U64; in getValueType()
162 std::string MetadataStreamerV2::getTypeName(Type *Ty, bool Signed) const { in getTypeName()
165 if (!Signed) in getTypeName()
192 return (Twine(getTypeName(ElTy, Signed)) + Twine(NumElements)).str(); in getTypeName()
579 auto Signed = !TypeName.startswith("u"); in getValueType() local
582 return Signed in getValueType()
[all...]
H A DAMDGPUHSAMetadataStreamer.h70 std::string getTypeName(Type *Ty, bool Signed) const;
138 std::string getTypeName(Type *Ty, bool Signed) const;
H A DSIISelLowering.h45 uint64_t Offset, unsigned Align, bool Signed,
87 SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG, bool Signed) const;
117 bool Signed, const ISD::InputArg *Arg = nullptr) const;
163 SDValue Op0, SDValue Op1, bool Signed) const;
H A DAMDGPUISelLowering.h65 SDValue LowerINT_TO_FP32(SDValue Op, SelectionDAG &DAG, bool Signed) const;
66 SDValue LowerINT_TO_FP64(SDValue Op, SelectionDAG &DAG, bool Signed) const;
70 SDValue LowerFP64_TO_INT(SDValue Op, SelectionDAG &DAG, bool Signed) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFExpression.cpp135 unsigned Signed = Size & Operation::SignBit; in extract() local
143 if (Signed) in extract()
148 if (Signed) in extract()
153 if (Signed) in extract()
180 if (Signed) in extract()
259 unsigned Signed = Size & Operation::SignBit; in print() local
279 if (Signed) in print()
/third_party/node/deps/v8/src/compiler/
H A Dcode-assembler.h580 TNode<Int32T> Signed(TNode<Word32T> x) { return UncheckedCast<Int32T>(x); } in Signed() function in v8::internal::compiler::CodeAssembler
581 TNode<Int64T> Signed(TNode<Word64T> x) { return UncheckedCast<Int64T>(x); } in Signed() function in v8::internal::compiler::CodeAssembler
582 TNode<IntPtrT> Signed(TNode<WordT> x) { return UncheckedCast<IntPtrT>(x); } in Signed() function in v8::internal::compiler::CodeAssembler
889 return Signed(WordSar(static_cast<TNode<WordT>>(left), right)); in WordSar()
892 return Signed(WordShl(static_cast<TNode<WordT>>(left), right)); in WordShl()
899 return Signed(Word32Shl(static_cast<TNode<Word32T>>(left), right)); in Word32Shl()
908 return Signed(Word32Sar(static_cast<TNode<Word32T>>(left), right)); in Word32Sar()
912 return Signed(Word64Shl(static_cast<TNode<Word64T>>(left), right)); in Word64Shl()
921 return Signed(Word64Sar(static_cast<TNode<Word64T>>(left), right)); in Word64Sar()
925 return Signed(Word64An in Word64And()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/Disassembler/
H A DWebAssemblyDisassembler.cpp85 bool Signed) { in nextLEB()
88 Val = Signed ? decodeSLEB128(Bytes.data() + Size, &N, in nextLEB()
100 ArrayRef<uint8_t> Bytes, bool Signed) { in parseLEBImmediate()
102 if (!nextLEB(Val, Bytes, Size, Signed)) in parseLEBImmediate()
84 nextLEB(int64_t &Val, ArrayRef<uint8_t> Bytes, uint64_t &Size, bool Signed) nextLEB() argument
99 parseLEBImmediate(MCInst &MI, uint64_t &Size, ArrayRef<uint8_t> Bytes, bool Signed) parseLEBImmediate() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h359 Attribute::AttrKind getExtAttrForI32Param(bool Signed = true) const { in getExtAttrForI32Param()
361 return Signed ? Attribute::SExt : Attribute::ZExt; in getExtAttrForI32Param()
370 Attribute::AttrKind getExtAttrForI32Return(bool Signed = true) const { in getExtAttrForI32Return()
372 return Signed ? Attribute::SExt : Attribute::ZExt; in getExtAttrForI32Return()
H A DIVDescriptors.h93 Instruction *UAI, Type *RT, bool Signed, in RecurrenceDescriptor()
97 IsSigned(Signed) { in RecurrenceDescriptor()
91 RecurrenceDescriptor(Value *Start, Instruction *Exit, RecurrenceKind K, FastMathFlags FMF, MinMaxRecurrenceKind MK, Instruction *UAI, Type *RT, bool Signed, SmallPtrSetImpl<Instruction *> &CI) RecurrenceDescriptor() argument
/third_party/node/deps/v8/src/interpreter/
H A Dinterpreter-generator.cc257 TNode<IntPtrT> slot_index = Signed(BytecodeOperandIdx(1)); in IGNITION_HANDLER()
271 TNode<IntPtrT> slot_index = Signed(BytecodeOperandIdx(1)); in IGNITION_HANDLER()
283 TNode<IntPtrT> slot_index = Signed(BytecodeOperandIdx(0)); in IGNITION_HANDLER()
294 TNode<IntPtrT> slot_index = Signed(BytecodeOperandIdx(0)); in IGNITION_HANDLER()
308 TNode<IntPtrT> slot_index = Signed(BytecodeOperandIdx(1)); in IGNITION_HANDLER()
321 TNode<IntPtrT> slot_index = Signed(BytecodeOperandIdx(0)); in IGNITION_HANDLER()
361 TNode<IntPtrT> slot_index = Signed(BytecodeOperandIdx(1)); in LookupContextSlot()
1532 TNode<IntPtrT> context_index = Signed(BytecodeOperandNativeContextIndex(0)); in IGNITION_HANDLER()
1898 TNode<IntPtrT> relative_jump = Signed(BytecodeOperandUImmWord(0)); in IGNITION_HANDLER()
1964 TNode<IntPtrT> relative_jump = Signed(BytecodeOperandUImmWor in IGNITION_HANDLER()
[all...]
/third_party/json/tests/thirdparty/Fuzzer/
H A DFuzzerTraceState.cpp118 int64_t Signed = static_cast<int64_t>(Data); in IsTwoByteData() local
119 Signed >>= 16; in IsTwoByteData()
120 return Signed == 0 || Signed == -1L; in IsTwoByteData()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp1025 bool Signed) { in cannotBeMinInLoop()
1027 APInt Min = Signed ? APInt::getSignedMinValue(BitWidth) : in cannotBeMinInLoop()
1029 auto Predicate = Signed ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; in cannotBeMinInLoop()
1036 bool Signed) { in cannotBeMaxInLoop()
1038 APInt Max = Signed ? APInt::getSignedMaxValue(BitWidth) : in cannotBeMaxInLoop()
1040 auto Predicate = Signed ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT; in cannotBeMaxInLoop()
1024 cannotBeMinInLoop(const SCEV *S, const Loop *L, ScalarEvolution &SE, bool Signed) cannotBeMinInLoop() argument
1035 cannotBeMaxInLoop(const SCEV *S, const Loop *L, ScalarEvolution &SE, bool Signed) cannotBeMaxInLoop() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h354 bool Signed);
358 bool Signed);
/third_party/rust/crates/bindgen/bindgen/ir/
H A Denum_ty.rs97 cursor.enum_val_signed().map(EnumVariantValue::Signed) in from_ty()
263 Signed(i64),
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonConstPropagation.cpp418 unsigned Offset, bool Signed, const CellMap &Inputs,
421 bool Signed, APInt &Result);
1230 // Signed comparison. in evaluateCMPii()
1276 // Signed comparisons are different. in evaluateCMPpi()
1341 // Signed comparison. The comparison is not NE. in evaluateCMPpp()
1734 unsigned Width, unsigned Bits, unsigned Offset, bool Signed, in evaluateEXTRACTr()
1756 evaluateEXTRACTi(A, Bits, Offset, Signed, CA); in evaluateEXTRACTr()
1766 unsigned Offset, bool Signed, APInt &Result) { in evaluateEXTRACTi()
1777 if (Signed) in evaluateEXTRACTi()
1781 Result = APInt(BW, V, Signed); in evaluateEXTRACTi()
1733 evaluateEXTRACTr(const RegisterSubReg &R1, unsigned Width, unsigned Bits, unsigned Offset, bool Signed, const CellMap &Inputs, LatticeCell &Result) evaluateEXTRACTr() argument
1765 evaluateEXTRACTi(const APInt &A1, unsigned Bits, unsigned Offset, bool Signed, APInt &Result) evaluateEXTRACTi() argument
2151 bool Signed = (Opc == Hexagon::S4_extract) || evaluate() local
2470 bool Signed = false; getCmpImm() local
2743 bool Signed = false; evaluateHexExt() local
[all...]

Completed in 31 milliseconds

123456