Home
last modified time | relevance | path

Searched refs:Projection (Results 1 - 22 of 22) sorted by relevance

/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-sharedarraybuffer-gen.cc150 TNode<IntPtrT> low = Projection<0>(signed64);
151 TNode<IntPtrT> high = Projection<1>(signed64);
161 TNode<UintPtrT> low = Projection<0>(unsigned64);
162 TNode<UintPtrT> high = Projection<1>(unsigned64);
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DGLES1State.cpp288 case MatrixType::Projection: in currentMatrixStack()
309 case MatrixType::Projection: in getMatrixStack()
H A DvalidationES1.cpp1205 case MatrixType::Projection: in ValidateMatrixMode()
/third_party/skia/third_party/externals/angle2/src/common/
H A DPackedGLEnums_autogen.cpp1160 return MatrixType::Projection; in FromGLenum()
1174 case MatrixType::Projection: in ToGLenum()
1191 case MatrixType::Projection: in operator <<()
H A DPackedGLEnums_autogen.h297 Projection = 1, member in gl::MatrixType
/third_party/node/deps/v8/src/compiler/
H A Dgraph-assembler.cc210 Node* GraphAssembler::Projection(int index, Node* value) { in Projection() function in v8::internal::compiler::GraphAssembler
212 graph()->NewNode(common()->Projection(index), value, control())); in Projection()
H A Dint64-lowering.cc404 use_node, common()->Projection(new_index)); in LowerNode()
409 common()->Projection(new_index + 1), node, graph()->start()); in LowerNode()
1162 graph()->NewNode(common()->Projection(0), node, graph()->start()); in ReplaceNodeWithProjections()
1164 graph()->NewNode(common()->Projection(1), node, graph()->start()); in ReplaceNodeWithProjections()
H A Dcommon-operator.h548 const Operator* Projection(size_t index);
H A Dwasm-inlining.cc397 graph()->NewNode(common()->Projection(i), input, input)); in InlineCall()
H A Dcode-assembler.h1140 Projection(TNode<PairT<T1, T2>> value) { in Projection() function in v8::internal::compiler::CodeAssembler
1143 Projection(index, value)); in Projection()
1387 Node* Projection(int index, Node* value);
H A Deffect-control-linearizer.cc2097 Node* check = __ Projection(1, value); in LowerCheckedInt32Add()
2100 return __ Projection(0, value); in LowerCheckedInt32Add()
2109 Node* check = __ Projection(1, value); in LowerCheckedInt32Sub()
2112 return __ Projection(0, value); in LowerCheckedInt32Sub()
2209 Node* ovf = __ Projection(1, add); in SmiTagOrOverflow()
2211 Node* value_smi = __ Projection(0, add); in SmiTagOrOverflow()
2223 Node* check = __ Projection(1, add); in SmiTagOrDeopt()
2226 Node* result = __ Projection(0, add); in SmiTagOrDeopt()
2398 Node* check = __ Projection(1, projection); in LowerCheckedInt32Mul()
2402 Node* value = __ Projection( in LowerCheckedInt32Mul()
[all...]
H A Dcode-assembler.cc959 Node* CodeAssembler::Projection(int index, Node* value) { in Projection() function in v8::internal::compiler::CodeAssembler
961 return raw_assembler()->Projection(index, value); in Projection()
H A Draw-machine-assembler.h127 Node* Projection(int index, Node* a) { in Projection() function in v8::internal::compiler::RawMachineAssembler
128 return AddNode(common()->Projection(index), a); in Projection()
H A Dgraph-assembler.h250 Node* Projection(int index, Node* value);
H A Dopcodes.h73 V(Projection) \
H A Dwasm-compiler.cc821 // to use {effect} instead. We exclude Projection nodes: Projections pointing in PatchInStackCheckIfNeeded()
2135 return builder->graph()->NewNode(builder->mcgraph()->common()->Projection(1), in ConvertTrapTest()
2168 converted_value = graph()->NewNode(mcgraph()->common()->Projection(0), in BuildIntConvertFloat()
3050 rets[i] = graph()->NewNode(mcgraph()->common()->Projection(i), call, in BuildWasmCall()
6263 Node* ovf = gasm_->Projection(1, add);
6267 Node* smi_tagged = BuildChangeInt32ToIntPtr(gasm_->Projection(0, add));
7600 : graph()->NewNode(mcgraph()->common()->Projection(pos),
H A Dcommon-operator.cc842 "Projection", // name in ProjectionOperator()
1523 const Operator* CommonOperatorBuilder::Projection(size_t index) { in Projection() function in v8::internal::compiler::CommonOperatorBuilder
1537 "Projection", // name in Projection()
H A Dbytecode-graph-builder.cc772 builder()->NewNode(common()->Projection(i), node); in BindRegistersToProjections()
/third_party/node/deps/v8/src/interpreter/
H A Dinterpreter-generator.cc1521 TNode<Object> result0 = Projection<0>(result_pair); in IGNITION_HANDLER()
1522 TNode<Object> result1 = Projection<1>(result_pair); in IGNITION_HANDLER()
2801 TNode<Object> return_value = Projection<0>(result_pair); \
2802 TNode<IntPtrT> original_bytecode = SmiUntag(Projection<1>(result_pair)); \
/third_party/node/deps/v8/src/codegen/
H A Dcode-stub-assembler.cc829 TNode<BoolT> overflow = Projection<1>(pair); in TryIntPtrAdd()
831 return Projection<0>(pair); in TryIntPtrAdd()
838 TNode<BoolT> overflow = Projection<1>(pair); in TryIntPtrSub()
840 return Projection<0>(pair); in TryIntPtrSub()
846 TNode<BoolT> overflow = Projection<1>(pair); in TryInt32Mul()
848 return Projection<0>(pair); in TryInt32Mul()
862 TNode<BoolT> overflow = Projection<1>(pair); in TrySmiAdd()
864 TNode<Int32T> result = Projection<0>(pair); in TrySmiAdd()
875 TNode<BoolT> overflow = Projection<1>(pair); in TrySmiSub()
877 TNode<IntPtrT> result = Projection< in TrySmiSub()
[all...]
/third_party/rust/crates/libc/src/
H A Dpsp.rs184 Projection,
711 Projection = 0,
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A DFrameCapture.cpp3619 cap(CaptureMatrixMode(replayState, true, gl::MatrixType::Projection)); in CaptureMidExecutionSetup()
3621 apiState.gles1().getMatrixStack(gl::MatrixType::Projection)) in CaptureMidExecutionSetup()

Completed in 96 milliseconds