Home
last modified time | relevance | path

Searched refs:Neg (Results 1 - 25 of 112) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DAPFloat.h467 void makeLargest(bool Neg = false);
468 void makeSmallest(bool Neg = false);
469 void makeNaN(bool SNaN = false, bool Neg = false,
471 void makeInf(bool Neg = false);
472 void makeZero(bool Neg = false);
645 void makeInf(bool Neg);
646 void makeNaN(bool SNaN, bool Neg, const APInt *fill);
773 void makeZero(bool Neg) { getIEEE().makeZero(Neg); } in makeZero() argument
775 void makeInf(bool Neg) { in makeInf() argument
783 makeNaN(bool SNaN, bool Neg, const APInt *fill) makeNaN() argument
787 makeLargest(bool Neg) makeLargest() argument
789 makeSmallest(bool Neg) makeSmallest() argument
791 makeSmallestNormalized(bool Neg) makeSmallestNormalized() argument
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Denum-undefault.rs14 pub const Neg_MinusOne: Neg = -1;
15 pub const Neg_One: Neg = 1;
16 pub type Neg = ::std::os::raw::c_int; types
H A Denum_explicit_type_constants.rs12 pub const Neg_MinusOne: Neg = -1;
13 pub const Neg_One: Neg = 1;
14 pub type Neg = ::std::os::raw::c_schar; types
H A Denum.rs54 pub const Neg_MinusOne: Neg = -1;
55 pub const Neg_One: Neg = 1;
56 pub type Neg = ::std::os::raw::c_int; types
H A Denum_packed.rs16 pub enum Neg { enum
H A Denum_explicit_type.rs16 pub enum Neg { enum
H A Denum-default-consts.rs54 pub mod Neg { modules
H A Denum-default-module.rs58 pub mod Neg { modules
H A Denum-no-debug-rust.rs62 pub mod Neg { modules
H A Denum-default-rust.rs62 pub mod Neg { modules
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DAPFloat.h456 void makeLargest(bool Neg = false);
457 void makeSmallest(bool Neg = false);
458 void makeNaN(bool SNaN = false, bool Neg = false,
460 void makeInf(bool Neg = false);
461 void makeZero(bool Neg = false);
643 void makeInf(bool Neg);
644 void makeZero(bool Neg);
645 void makeLargest(bool Neg);
646 void makeSmallest(bool Neg);
647 void makeSmallestNormalized(bool Neg);
811 makeZero(bool Neg) makeZero() argument
813 makeInf(bool Neg) makeInf() argument
815 makeNaN(bool SNaN, bool Neg, const APInt *fill) makeNaN() argument
819 makeLargest(bool Neg) makeLargest() argument
823 makeSmallest(bool Neg) makeSmallest() argument
827 makeSmallestNormalized(bool Neg) makeSmallestNormalized() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Option/
H A DArgList.cpp73 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default) const { in hasFlag() argument
74 if (Arg *A = getLastArg(Pos, Neg)) in hasFlag()
79 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier PosAlias, OptSpecifier Neg, in hasFlag() argument
81 if (Arg *A = getLastArg(Pos, PosAlias, Neg)) in hasFlag()
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
H A Denum-undefault.h1 // bindgen-flags: --default-enum-style=rust --constified-enum=Neg
8 enum Neg { enum
H A Denum_packed.h8 enum __attribute__((packed)) Neg { enum
H A Denum.h16 enum Neg { enum
H A Denum_explicit_type.hpp8 enum Neg: signed char {
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
H A DSampleMessages.cs88 RepeatedNestedEnum = { TestProtos.TestAllTypes.Types.NestedEnum.Foo, TestProtos.TestAllTypes.Types.NestedEnum.Neg }, in CreateFullTestAllTypes()
141 RepeatedNestedEnum = { Proto2.TestAllTypes.Types.NestedEnum.Foo, Proto2.TestAllTypes.Types.NestedEnum.Neg }, in CreateFullTestAllTypesProto2()
193 message.GetOrInitializeExtension(RepeatedNestedEnumExtension).AddRange(new[] { Proto2.TestAllTypes.Types.NestedEnum.Foo, Proto2.TestAllTypes.Types.NestedEnum.Neg }); in CreateFullTestAllExtensions()
/third_party/rust/crates/syn/src/
H A Dop.rs75 Neg(Token![-]),
158 input.parse().map(UnOp::Neg) in parse()
214 UnOp::Neg(t) => t.to_tokens(tokens), in to_tokens()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp295 bool Neg = false; member
298 ExtExpr(Register RS, bool NG, unsigned SH) : Rs(RS), S(SH), Neg(NG) {} in ExtExpr()
304 return Rs == Ex.Rs && S == Ex.S && Neg == Ex.Neg; in operator ==()
314 return !Neg && Ex.Neg; in operator <()
468 OS << "## " << (P.Ex.Neg ? "- " : "+ "); in operator <<()
1207 ED.Expr.Neg = true; in recordExtender()
1211 ED.Expr.Neg = true; in recordExtender()
1541 assert(!Ex.Neg in insertInitializer()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp269 static BinaryOperator *LowerNegateToMultiply(Instruction *Neg) { in LowerNegateToMultiply() argument
270 assert((isa<UnaryOperator>(Neg) || isa<BinaryOperator>(Neg)) && in LowerNegateToMultiply()
273 unsigned OpNo = isa<BinaryOperator>(Neg) ? 1 : 0; in LowerNegateToMultiply()
274 Type *Ty = Neg->getType(); in LowerNegateToMultiply()
278 BinaryOperator *Res = CreateMul(Neg->getOperand(OpNo), NegOne, "", Neg, Neg); in LowerNegateToMultiply()
279 Neg->setOperand(OpNo, Constant::getNullValue(Ty)); // Drop use of op. in LowerNegateToMultiply()
280 Res->takeName(Neg); in LowerNegateToMultiply()
[all...]
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
H A DSampleMessages.cs85 RepeatedNestedEnum = { TestAllTypes.Types.NestedEnum.Foo, TestAllTypes.Types.NestedEnum.Neg }, in CreateFullTestAllTypes()
/third_party/node/deps/v8/tools/
H A Dbigint-tester.py181 class Neg(UnaryOp): class
283 "neg": Neg,
/third_party/rust/crates/codespan/codespan/src/
H A Dindex.rs6 use std::ops::{Add, AddAssign, Neg, Sub, SubAssign};
296 Self: Neg<Output = Self>, in fmt()
387 impl Neg for $Offset { impls
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DSIPeepholeSDWA.cpp144 bool Neg; member in __anon24496::SDWASrcOperand
152 SrcSel(SrcSel_), Abs(Abs_), Neg(Neg_), Sext(Sext_) {} in SDWASrcOperand()
159 bool getNeg() const { return Neg; } in getNeg()
343 if (Abs || Neg) { in getSrcMods()
347 Mods ^= Neg ? SISrcMods::NEG : 0u; in getSrcMods()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DAPFloat.cpp3997 Floats[1].makeZero(/* Neg = */ false);
4015 Floats[1].makeZero(/* Neg = */ false);
4051 Floats[1].makeZero(/* Neg = */ false);
4057 Floats[1].makeZero(/* Neg = */ false);
4176 Floats[1].makeZero(/* Neg = */ false);
4202 Floats[1].makeZero(/* Neg = */ false);
4292 void DoubleAPFloat::makeInf(bool Neg) {
4293 Floats[0].makeInf(Neg);
4294 Floats[1].makeZero(/* Neg = */ false);
4297 void DoubleAPFloat::makeZero(bool Neg) {
[all...]

Completed in 20 milliseconds

12345