/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-sharedarraybuffer-gen.cc | 150 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 D | GLES1State.cpp | 288 case MatrixType::Projection: in currentMatrixStack() 309 case MatrixType::Projection: in getMatrixStack()
|
H A D | validationES1.cpp | 1205 case MatrixType::Projection: in ValidateMatrixMode()
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | PackedGLEnums_autogen.cpp | 1160 return MatrixType::Projection; in FromGLenum() 1174 case MatrixType::Projection: in ToGLenum() 1191 case MatrixType::Projection: in operator <<()
|
H A D | PackedGLEnums_autogen.h | 297 Projection = 1, member in gl::MatrixType
|
/third_party/node/deps/v8/src/compiler/ |
H A D | graph-assembler.cc | 210 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 D | int64-lowering.cc | 404 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 D | common-operator.h | 548 const Operator* Projection(size_t index);
|
H A D | wasm-inlining.cc | 397 graph()->NewNode(common()->Projection(i), input, input)); in InlineCall()
|
H A D | code-assembler.h | 1140 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 D | effect-control-linearizer.cc | 2097 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 D | code-assembler.cc | 959 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 D | raw-machine-assembler.h | 127 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 D | graph-assembler.h | 250 Node* Projection(int index, Node* value);
|
H A D | opcodes.h | 73 V(Projection) \
|
H A D | wasm-compiler.cc | 821 // 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 D | common-operator.cc | 842 "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 D | bytecode-graph-builder.cc | 772 builder()->NewNode(common()->Projection(i), node); in BindRegistersToProjections()
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | interpreter-generator.cc | 1521 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 D | code-stub-assembler.cc | 829 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 D | psp.rs | 184 Projection, 711 Projection = 0,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
H A D | FrameCapture.cpp | 3619 cap(CaptureMatrixMode(replayState, true, gl::MatrixType::Projection)); in CaptureMidExecutionSetup() 3621 apiState.gles1().getMatrixStack(gl::MatrixType::Projection)) in CaptureMidExecutionSetup()
|