Home
last modified time | relevance | path

Searched refs:kAdd (Results 1 - 25 of 54) sorted by relevance

123

/third_party/skia/third_party/externals/tint/src/ast/
H A Dbinary_expression.h39 kAdd, member in tint::ast::BinaryOp
91 bool IsAdd() const { return op == BinaryOp::kAdd; } in IsAdd()
125 case ast::BinaryOp::kAdd: in IsArithmetic()
203 case BinaryOp::kAdd: in FriendlyName()
/third_party/vk-gl-cts/external/amber/src/src/amberscript/
H A Dparser_blend_test.cc61 ASSERT_EQ(BlendOp::kAdd, in TEST_F()
104 ASSERT_EQ(BlendOp::kAdd, in TEST_F()
111 ASSERT_EQ(BlendOp::kAdd, in TEST_F()
/third_party/skia/third_party/externals/tint/src/writer/msl/
H A Dgenerator_impl_binary_test.cc71 BinaryData{"(left + right)", ast::BinaryOp::kAdd},
104 {"as_type<int>((as_type<uint>(a) + as_type<uint>(b)))", Op::kAdd},
144 Op::kAdd},
/third_party/skia/include/utils/
H A DSkRandom.h141 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG()
157 kAdd = 1013904223 enumerator
/third_party/skia/src/effects/
H A DSkDiscretePathEffect.cpp40 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU()
54 kAdd = 1013904223 enumerator
/third_party/skia/modules/skottie/src/text/
H A DRangeSelector.h40 kAdd, member in skottie::internal::final::Mode
H A DRangeSelector.cpp82 SkASSERT(mode == RangeSelector::Mode::kAdd); in CoverageProcessor()
116 // mode: kAdd
269 Mode::kAdd, // 'm': 1 in Make()
/third_party/skia/third_party/externals/tint/src/writer/spirv/
H A Dbuilder_binary_expression_test.cc121 testing::Values(BinaryData{ast::BinaryOp::kAdd, "OpIAdd"},
185 testing::Values(BinaryData{ast::BinaryOp::kAdd, "OpIAdd"},
247 testing::Values(BinaryData{ast::BinaryOp::kAdd, "OpFAdd"},
1048 testing::Values(Param{Type::f32, ast::BinaryOp::kAdd, "OpFAdd"},
1057 Param{Type::i32, ast::BinaryOp::kAdd, "OpIAdd"},
1063 Param{Type::u32, ast::BinaryOp::kAdd, "OpIAdd"},
1198 testing::Values(Param{ast::BinaryOp::kAdd, "OpFAdd"},
/third_party/lzma/CPP/7zip/UI/Console/
H A DUpdateCallbackConsole.cpp579 if (mode == NUpdateNotifyOp::kAdd || in GetStream()
584 else if (mode == NUpdateNotifyOp::kAdd) in GetStream()
666 case NUpdateNotifyOp::kAdd: s = "+"; break; in ReportUpdateOperation()
/third_party/skia/third_party/externals/tint/src/resolver/
H A Dresolver_test.cc1266 ast::BinaryOp::kAdd,
1306 ParamsFor<i32, i32, i32>(Op::kAdd),
1312 ParamsFor<u32, u32, u32>(Op::kAdd),
1318 ParamsFor<f32, f32, f32>(Op::kAdd),
1325 ParamsFor<vec3<i32>, vec3<i32>, vec3<i32>>(Op::kAdd),
1331 ParamsFor<vec3<u32>, vec3<u32>, vec3<u32>>(Op::kAdd),
1337 ParamsFor<vec3<f32>, vec3<f32>, vec3<f32>>(Op::kAdd),
1344 ParamsFor<vec3<i32>, i32, vec3<i32>>(Op::kAdd),
1350 ParamsFor<i32, vec3<i32>, vec3<i32>>(Op::kAdd),
1356 ParamsFor<vec3<u32>, u32, vec3<u32>>(Op::kAdd),
[all...]
/third_party/lzma/CPP/7zip/UI/Common/
H A DArchiveCommandLine.h19 kAdd = 0, enumerator
H A DUpdateCallback.cpp593 if (mode != NUpdateNotifyOp::kAdd && in GetStream2()
764 NUpdateNotifyOp::kAdd : in GetStream()
/third_party/skia/third_party/externals/tint/src/writer/wgsl/
H A Dgenerator_impl_binary_test.cc74 BinaryData{"(left + right)", ast::BinaryOp::kAdd},
/third_party/vk-gl-cts/external/amber/src/src/
H A Dpipeline_data.h207 BlendOp color_blend_op_ = BlendOp::kAdd;
208 BlendOp alpha_blend_op_ = BlendOp::kAdd;
H A Dcommand_data.h108 kAdd, member in amber::BlendOp
H A Dcommand_data.cc102 return BlendOp::kAdd; in NameToBlendOp()
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-graph-builder.cc192 if (kOperation == Operation::kAdd) { in VisitBinaryOperation()
216 if (kOperation == Operation::kAdd) { in VisitBinarySmiOperation()
503 void MaglevGraphBuilder::VisitAdd() { VisitBinaryOperation<Operation::kAdd>(); } in VisitAdd()
539 VisitBinarySmiOperation<Operation::kAdd>(); in VisitAddSmi()
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dparser_impl_additive_expression_test.cc32 EXPECT_EQ(ast::BinaryOp::kAdd, rel->op); in TEST_F()
/third_party/vixl/src/aarch32/
H A Dconstants-aarch32.cc41 case kAdd: in ToCString()
H A Dmacro-assembler-aarch32.cc1020 (type == kAdc) || (type == kAdcs) || (type == kAdd) || (type == kAdds) || in Delegate()
1089 case kAdd: in Delegate()
1137 if ((((type == kAdd) && !rn.IsPC()) || (type == kSub)) && in Delegate()
1152 case kAdd: in Delegate()
1180 case kAdd: in Delegate()
H A Dconstants-aarch32.h125 kAdd, enumerator
/third_party/node/deps/v8/src/interpreter/
H A Dbytecodes.cc292 case Bytecode::kAdd: in IsStarLookahead()
/third_party/node/deps/v8/src/runtime/
H A Druntime-bigint.cc115 case Operation::kAdd: in RUNTIME_FUNCTION()
/third_party/vk-gl-cts/external/amber/src/src/vkscript/
H A Dcommand_parser.cc1584 *op = BlendOp::kAdd; in ParseBlendOpName()
1586 *op = BlendOp::kAdd; in ParseBlendOpName()
1714 BlendOp op = BlendOp::kAdd; in ProcessColorBlendOp()
1724 BlendOp op = BlendOp::kAdd; in ProcessAlphaBlendOp()
/third_party/lzma/CPP/7zip/Archive/
H A DIArchive.h464 kAdd = 0, enumerator

Completed in 25 milliseconds

123