/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | APFloat.h | 467 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 D | enum-undefault.rs | 14 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 D | enum_explicit_type_constants.rs | 12 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 D | enum.rs | 54 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 D | enum_packed.rs | 16 pub enum Neg { enum
|
H A D | enum_explicit_type.rs | 16 pub enum Neg { enum
|
H A D | enum-default-consts.rs | 54 pub mod Neg { modules
|
H A D | enum-default-module.rs | 58 pub mod Neg { modules
|
H A D | enum-no-debug-rust.rs | 62 pub mod Neg { modules
|
H A D | enum-default-rust.rs | 62 pub mod Neg { modules
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | APFloat.h | 456 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 D | ArgList.cpp | 73 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 D | enum-undefault.h | 1 // bindgen-flags: --default-enum-style=rust --constified-enum=Neg 8 enum Neg { enum
|
H A D | enum_packed.h | 8 enum __attribute__((packed)) Neg { enum
|
H A D | enum.h | 16 enum Neg { enum
|
H A D | enum_explicit_type.hpp | 8 enum Neg: signed char {
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
H A D | SampleMessages.cs | 88 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 D | op.rs | 75 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 D | HexagonConstExtenders.cpp | 295 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 D | Reassociate.cpp | 269 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 D | SampleMessages.cs | 85 RepeatedNestedEnum = { TestAllTypes.Types.NestedEnum.Foo, TestAllTypes.Types.NestedEnum.Neg }, in CreateFullTestAllTypes()
|
/third_party/node/deps/v8/tools/ |
H A D | bigint-tester.py | 181 class Neg(UnaryOp): class 283 "neg": Neg,
|
/third_party/rust/crates/codespan/codespan/src/ |
H A D | index.rs | 6 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 D | SIPeepholeSDWA.cpp | 144 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 D | APFloat.cpp | 3997 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...] |