Home
last modified time | relevance | path

Searched refs:Projection (Results 1 – 25 of 27) sorted by relevance

12

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowMapView.java11 import com.google.android.maps.Projection;
38 private Projection projection;
103 public com.google.android.maps.Projection getProjection() { in getProjection()
105 projection = new Projection() { in getProjection()
/external/v8/src/compiler/
Dint64-lowering.cc299 graph()->NewNode(common()->Projection(0), node, graph()->start()); in LowerNode()
301 graph()->NewNode(common()->Projection(1), node, graph()->start()); in LowerNode()
341 graph()->NewNode(common()->Projection(0), node, graph()->start()); in LowerNode()
343 graph()->NewNode(common()->Projection(1), node, graph()->start()); in LowerNode()
361 graph()->NewNode(common()->Projection(0), node, graph()->start()); in LowerNode()
363 graph()->NewNode(common()->Projection(1), node, graph()->start()); in LowerNode()
381 graph()->NewNode(common()->Projection(0), node, graph()->start()); in LowerNode()
383 graph()->NewNode(common()->Projection(1), node, graph()->start()); in LowerNode()
433 graph()->NewNode(common()->Projection(0), node, graph()->start()); in LowerNode()
435 graph()->NewNode(common()->Projection(1), node, graph()->start()); in LowerNode()
[all …]
Dwasm-compiler.cc1622 Node* result = graph()->NewNode(jsgraph()->common()->Projection(0), trunc, in BuildI64SConvertF32()
1624 Node* overflow = graph()->NewNode(jsgraph()->common()->Projection(1), trunc, in BuildI64SConvertF32()
1640 Node* result = graph()->NewNode(jsgraph()->common()->Projection(0), trunc, in BuildI64UConvertF32()
1642 Node* overflow = graph()->NewNode(jsgraph()->common()->Projection(1), trunc, in BuildI64UConvertF32()
1658 Node* result = graph()->NewNode(jsgraph()->common()->Projection(0), trunc, in BuildI64SConvertF64()
1660 Node* overflow = graph()->NewNode(jsgraph()->common()->Projection(1), trunc, in BuildI64SConvertF64()
1676 Node* result = graph()->NewNode(jsgraph()->common()->Projection(0), trunc, in BuildI64UConvertF64()
1678 Node* overflow = graph()->NewNode(jsgraph()->common()->Projection(1), trunc, in BuildI64UConvertF64()
2141 (*rets)[i] = graph()->NewNode(jsgraph()->common()->Projection(i), call, in BuildWasmCall()
2260 Node* ovf = graph()->NewNode(common->Projection(1), add, graph()->start()); in BuildChangeInt32ToTagged()
[all …]
Dcommon-operator.h255 const Operator* Projection(size_t index); in NON_EXPORTED_BASE()
Deffect-control-linearizer.cc864 Node* ovf = graph()->NewNode(common()->Projection(1), add, control); in LowerChangeInt32ToTagged()
873 Node* vfalse = graph()->NewNode(common()->Projection(0), add, if_false); in LowerChangeInt32ToTagged()
1304 Node* check = graph()->NewNode(common()->Projection(1), value, control); in LowerCheckedInt32Add()
1309 value = graph()->NewNode(common()->Projection(0), value, control); in LowerCheckedInt32Add()
1323 Node* check = graph()->NewNode(common()->Projection(1), value, control); in LowerCheckedInt32Sub()
1328 value = graph()->NewNode(common()->Projection(0), value, control); in LowerCheckedInt32Sub()
1585 Node* check = graph()->NewNode(common()->Projection(1), projection, control); in LowerCheckedInt32Mul()
1590 Node* value = graph()->NewNode(common()->Projection(0), projection, control); in LowerCheckedInt32Mul()
1631 Node* check = graph()->NewNode(common()->Projection(1), add, control); in LowerCheckedInt32ToTaggedSigned()
1636 value = graph()->NewNode(common()->Projection(0), add, control); in LowerCheckedInt32ToTaggedSigned()
Dsimd-scalar-lowering.cc205 graph()->NewNode(common()->Projection(i), node, graph()->start()); in LowerNode()
Dast-graph-builder.cc1379 Node* cache_type = NewNode(common()->Projection(0), prepare); in VisitForInStatement()
1380 Node* cache_array = NewNode(common()->Projection(1), prepare); in VisitForInStatement()
1381 Node* cache_length = NewNode(common()->Projection(2), prepare); in VisitForInStatement()
2288 callee_value = NewNode(common()->Projection(0), pair); in VisitCall()
2289 receiver_value = NewNode(common()->Projection(1), pair); in VisitCall()
2317 callee_value = NewNode(common()->Projection(0), pair); in VisitCall()
2318 receiver_value = NewNode(common()->Projection(1), pair); in VisitCall()
Draw-machine-assembler.h119 Node* Projection(int index, Node* a) { in Projection() function
120 return AddNode(common()->Projection(index), a); in Projection()
Dcode-assembler.cc342 Node* CodeAssembler::Projection(int index, Node* value) { in Projection() function in v8::internal::compiler::CodeAssembler
343 return raw_assembler_->Projection(index, value); in Projection()
Dopcodes.h69 V(Projection) \
Dcode-assembler.h316 Node* Projection(int index, Node* value);
Dcommon-operator.cc1098 const Operator* CommonOperatorBuilder::Projection(size_t index) { in Projection() function in v8::internal::compiler::CommonOperatorBuilder
Dbytecode-graph-builder.cc270 builder()->NewNode(common()->Projection(i), node); in BindRegistersToProjections()
/external/vulkan-validation-layers/libs/glm/detail/
Ddummy.cpp91 glm::mat4 Projection = glm::perspective(45.0f, 4.0f / 3.0f, 0.1f, 100.f); in func()
96 glm::mat4 MVP = Projection * View * Model; in func()
/external/libvpx/libvpx/third_party/libwebm/mkvparser/
Dmkvparser.h476 struct Projection { struct
485 Projection() in Projection() argument
492 ~Projection() { delete[] private_data; } in ~Projection() argument
494 long long element_size, Projection** projection);
528 Projection* GetProjection() const;
541 Projection* m_projection;
Dmkvparser.cc28 const float Projection::kValueNotPresent = FLT_MAX;
5183 bool Projection::Parse(IMkvReader* reader, long long start, long long size, in Parse()
5184 Projection** projection) { in Parse()
5188 std::auto_ptr<Projection> projection_ptr(new Projection()); in Parse()
5300 Projection* projection = NULL; in Parse()
5352 if (!Projection::Parse(pReader, pos, size, &projection)) in Parse()
5486 Projection* VideoTrack::GetProjection() const { return m_projection; } in GetProjection()
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h605 class Projection {
615 Projection() in Projection() function
622 ~Projection() { delete[] private_data_; } in ~Projection()
804 Projection* projection() { return projection_; } in projection()
807 bool SetProjection(const Projection& projection);
829 Projection* projection_;
Dmkvmuxer.cc1318 uint64_t Projection::ProjectionSize() const { in ProjectionSize()
1327 bool Projection::Write(IMkvWriter* writer) const { in Write()
1363 bool Projection::SetProjectionPrivate(const uint8_t* data, in SetProjectionPrivate()
1387 uint64_t Projection::PayloadSize() const { in PayloadSize()
1571 bool VideoTrack::SetProjection(const Projection& projection) { in SetProjection()
1572 std::auto_ptr<Projection> projection_ptr(new Projection()); in SetProjection()
/external/robolectric/v1/lib/main/
Dmaps_v16.jarcom/google/android/maps/GeoPoint.class <Unknown> package com.google. ...
/external/v8/src/builtins/
Dbuiltins-math.cc57 Node* overflow = assembler->Projection(1, pair); in Generate_MathAbs()
65 Node* result = assembler->Projection(0, pair); in Generate_MathAbs()
Dbuiltins-number.cc629 Node* overflow = assembler->Projection(1, pair); in Generate_Add()
644 assembler->Projection(0, pair))); in Generate_Add()
994 Node* overflow = assembler->Projection(1, pair); in Generate_Subtract()
1010 assembler->Projection(0, pair))); in Generate_Subtract()
/external/v8/src/interpreter/
Dinterpreter.cc1267 Node* overflow = __ Projection(1, pair); in DoAddSmi()
1276 var_result.Bind(__ BitcastWordToTaggedSigned(__ Projection(0, pair))); in DoAddSmi()
1321 Node* overflow = __ Projection(1, pair); in DoSubSmi()
1330 var_result.Bind(__ BitcastWordToTaggedSigned(__ Projection(0, pair))); in DoSubSmi()
1728 Node* result0 = __ Projection(0, result_pair); in DoCallRuntimeForPair()
1729 Node* result1 = __ Projection(1, result_pair); in DoCallRuntimeForPair()
2495 Node* cache_type = __ Projection(0, result_triple); in DoForInPrepare()
2496 Node* cache_array = __ Projection(1, result_triple); in DoForInPrepare()
2497 Node* cache_length = __ Projection(2, result_triple); in DoForInPrepare()
/external/v8/src/
Dcode-stubs.cc755 Node* overflow = assembler->Projection(1, pair); in Generate()
773 assembler->Projection(0, pair))); in Generate()
961 Node* overflow = assembler->Projection(1, pair); in Generate()
981 assembler->BitcastWordToTaggedSigned(assembler->Projection(0, pair))); in Generate()
1707 Node* overflow = assembler->Projection(1, pair); in Generate()
1718 assembler->BitcastWordToTaggedSigned(assembler->Projection(0, pair))); in Generate()
1847 Node* overflow = assembler->Projection(1, pair); in Generate()
1858 assembler->BitcastWordToTaggedSigned(assembler->Projection(0, pair))); in Generate()
Dcode-stub-assembler.cc518 Node* overflow = Projection(1, pair); in SmiMul()
528 Node* answer = Projection(0, pair); in SmiMul()
2453 Node* overflow = Projection(1, pair); in ChangeFloat64ToTagged()
2460 Node* result = Projection(0, pair); in ChangeFloat64ToTagged()
2482 Node* overflow = Projection(1, pair); in ChangeInt32ToTagged()
2495 Node* result = Projection(0, pair); in ChangeInt32ToTagged()
2519 Node* overflow = Projection(1, pair); in ChangeUint32ToTagged()
2522 Node* result = Projection(0, pair); in ChangeUint32ToTagged()
9001 Node* overflow = Projection(1, pair); in NumberInc()
9008 var_result.Bind(Projection(0, pair)); in NumberInc()
/external/mesa3d/docs/
DRELNOTES-4.1299 Projection, Color and Texcoord matrix stacks.

12